@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import 'icons/icons.css';
@import url("https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-solid-rounded/css/uicons-solid-rounded.css");
:root {
  --primary: #0546AA;
  --primary-rgb: 5, 70, 170;
  --secondary: #02C4CA;
  --secondary-rgb: 2, 196, 202;
  --third: #FADF5B;
  --third-rgb: 250, 223, 91;
  --background: #f5f5f5;
  --background-rgb: 245, 245, 245;
  --text-dark: #000;
  --text-dark-rgb: 0, 0, 0;
  --text: #949494;
  --text-rgb: 148, 148, 148;
  --text-mid: #949494;
  --text-mid-rgb: 148, 148, 148;
  --light-grey: #f7f7f7;
  --light-grey-rgb: 247, 247, 247;
  --border: #eaeaea;
  --border-rgb: 234, 234, 234;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --font: "Montserrat", sans-serif;
  --gap: 2rem;
  --gap-large: 4rem;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: var(--font);
  overflow-x: hidden;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content.min {
  max-width: 1200px;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--primary);
}

.button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 16px 28px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 600ms ease;
}
.button .button-text {
  position: relative;
  z-index: 2;
  transition: all 300ms ease;
}
.button i {
  font-size: 16px;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(0);
  position: relative;
  z-index: 2;
}
.button:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--third) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
  border-color: rgba(var(--white-rgb), 0.3);
}
.button:hover::before {
  left: 100%;
}
.button:hover i {
  transform: translateX(8px) scale(1.1);
}
.button:hover .button-text {
  transform: translateX(-2px);
}
.button:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}
.button.alt {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
}
.button.alt:hover {
  background: linear-gradient(135deg, var(--third) 0%, var(--secondary) 100%);
  box-shadow: 0 15px 40px rgba(var(--secondary-rgb), 0.4);
}
.button.alt2 {
  background: linear-gradient(135deg, var(--third) 0%, var(--white) 100%);
  color: var(--primary);
  border-color: rgba(var(--third-rgb), 0.2);
}
.button.alt2:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--third) 100%);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(var(--third-rgb), 0.4);
}
.button.alt3 {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1);
}
.button.alt3:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.3);
}
.button.small {
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: 10px;
}
.button.small i {
  font-size: 14px;
}
.button.large {
  padding: 20px 36px;
  font-size: 1.1rem;
  border-radius: 14px;
}
.button.large i {
  font-size: 18px;
}

.button-alt {
  background: linear-gradient(135deg, rgba(var(--white-rgb), 0.9) 0%, var(--white) 100%);
  border: 2px solid var(--secondary);
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.15);
}
.button-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--secondary-rgb), 0.1), transparent);
  transition: left 600ms ease;
}
.button-alt i {
  font-size: 16px;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(0);
  position: relative;
  z-index: 2;
}
.button-alt:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--third) 100%);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--secondary-rgb), 0.4);
  border-color: rgba(var(--white-rgb), 0.3);
}
.button-alt:hover::before {
  left: 100%;
}
.button-alt:hover i {
  transform: translateX(8px) scale(1.1);
}
.button-alt:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.3);
}
.button-alt.small {
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: 10px;
}
.button-alt.small i {
  font-size: 14px;
}
.button-alt.large {
  padding: 20px 36px;
  font-size: 1.1rem;
  border-radius: 14px;
}
.button-alt.large i {
  font-size: 18px;
}

.button-outline {
  background: var(--white);
  border: 2px solid rgba(var(--border-rgb), 0.5);
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.button-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.1), transparent);
  transition: left 600ms ease;
}
.button-outline i {
  font-size: 16px;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(0);
  position: relative;
  z-index: 2;
  color: var(--primary);
}
.button-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.3);
  border-color: transparent;
}
.button-outline:hover::before {
  left: 100%;
}
.button-outline:hover i {
  transform: translateX(8px) scale(1.1);
  color: var(--white);
}
.button-outline:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.2);
}
.button-outline.small {
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: 10px;
}
.button-outline.small i {
  font-size: 14px;
}
.button-outline.large {
  padding: 20px 36px;
  font-size: 1.1rem;
  border-radius: 14px;
}
.button-outline.large i {
  font-size: 18px;
}

.loading-overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.loading-overlay.active {
  visibility: visible;
}
.loading-overlay svg {
  stroke: var(--secondary);
  transform: scale(1.4);
}

.form-state {
  margin-top: 20px;
}
.form-state .success {
  background: rgba(63, 207, 82, 0.05);
  border: 2px solid rgba(63, 207, 82, 0.1);
  color: #3fcf52;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  display: none;
}
.form-state .error {
  background: rgba(216, 63, 54, 0.05);
  border: 2px solid rgba(216, 63, 54, 0.1);
  color: #d83f36;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  display: none;
}
.form-state .loading {
  width: 100%;
  height: 40px;
  background: url(../images/loading.svg) center center no-repeat;
  display: none;
}

#whats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 101;
}
#whats a {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 2px solid var(--white);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  text-decoration: none;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  animation: float 3s ease-in-out infinite;
}
#whats a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 400ms ease;
}
#whats a::after {
  content: "WhatsApp";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  margin-right: 15px;
  transition: all 300ms ease;
  font-family: var(--font);
}
#whats a i {
  position: relative;
  z-index: 2;
  transition: all 300ms ease;
}
#whats a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}
#whats a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
#whats a:hover::after {
  opacity: 1;
  margin-right: 20px;
}
#whats a:hover i {
  transform: scale(1.1);
}
#whats a:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}
header {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 0;
  transition: all 300ms ease-in-out;
}
header .top {
  padding: 0.8rem;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
header .top::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSide 8s ease-in-out infinite;
}
header .top::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -25px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSide 10s ease-in-out infinite reverse;
}
header .top p {
  text-align: center;
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 999px) {
  header .top p {
    font-size: 0.85rem;
  }
}
header .mobile-menu {
  position: absolute;
  width: 70px;
  height: 70px;
  margin-top: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 110;
}
header .mobile-menu a {
  text-decoration: none;
  color: var(--secondary);
  width: 50px;
  height: 50px;
  background: rgba(var(--white-rgb), 0.95);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(var(--secondary-rgb), 0.3);
  transition: all 300ms ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
}
header .mobile-menu a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(var(--secondary-rgb), 0.4);
  background: var(--secondary);
  color: var(--white);
}
header .mobile-menu a i {
  font-size: 15px;
  transition: all 300ms ease;
}
@media all and (max-width: 999px) {
  header .mobile-menu {
    display: flex;
  }
}
header .content {
  display: flex;
  padding: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
header .content::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
header .content::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
@media all and (max-width: 999px) {
  header .content {
    justify-content: center;
    padding: 1rem;
  }
}
header .content .logo {
  margin-right: 4rem;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  header .content .logo {
    margin-right: 0;
  }
  header .content .logo img {
    height: 40px;
  }
}
header .content .logo a {
  display: inline-block;
  transition: all 300ms ease;
}
header .content .logo a:hover {
  transform: scale(1.05);
}
header .content .logo a img {
  transition: all 300ms ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
header .content nav {
  flex: 1;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  header .content nav {
    display: none;
  }
}
header .content nav a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  margin-right: 2rem;
  font-size: 1rem;
  position: relative;
  transition: all 300ms ease;
  padding: 8px 16px;
  border-radius: 10px;
}
header .content nav a:before {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0%;
  height: 3px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  content: "";
  transition: all 400ms ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
header .content nav a:hover {
  color: var(--primary);
  background: rgba(var(--secondary-rgb), 0.08);
}
header .content nav a:hover:before {
  width: 80%;
}
header .content nav a:active {
  transform: translateY(1px);
}
header .content .social {
  display: flex;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  header .content .social {
    display: none;
  }
}
header .content .social a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0px 0.7rem;
  width: 40px;
  height: 40px;
  background: rgba(var(--secondary-rgb), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
}
header .content .social a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--secondary-rgb), 0.3);
}
header .content .social a i {
  transition: all 300ms ease;
}
header .content .login {
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  header .content .login {
    display: none;
  }
}
@keyframes floatSide {
  0%, 100% {
    transform: translateX(0px) translateY(0px);
  }
  25% {
    transform: translateX(10px) translateY(-5px);
  }
  50% {
    transform: translateX(15px) translateY(0px);
  }
  75% {
    transform: translateX(5px) translateY(5px);
  }
}

#main-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 200;
}
#main-nav:target .inset {
  margin-left: 0;
}
#main-nav .inset {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  backdrop-filter: opacity(0.6);
  position: absolute;
  left: 0;
  bottom: 0;
  top: 10rem;
  width: 280px;
  margin-left: -280px;
  transition: all 300ms ease-in;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
#main-nav .inset::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
#main-nav .inset::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
#main-nav .inset a {
  color: white;
  position: relative;
  z-index: 2;
}
#main-nav .inset .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
  background: rgba(var(--white-rgb), 0.1);
  border-radius: 0 0 0 15px;
  transition: all 300ms ease;
  backdrop-filter: blur(10px);
}
#main-nav .inset .close:hover {
  background: rgba(var(--white-rgb), 0.2);
  transform: scale(1.1);
}
#main-nav .inset .close i {
  font-size: 18px;
  transition: all 300ms ease;
}
#main-nav .inset nav {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  position: relative;
  z-index: 2;
}
#main-nav .inset nav a {
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 300ms ease;
  border: 1px solid transparent;
}
#main-nav .inset nav a:hover {
  background: rgba(var(--white-rgb), 0.15);
  border-color: rgba(var(--white-rgb), 0.3);
  transform: translateX(5px);
}
#main-nav .inset nav a.button-alt {
  background: rgba(var(--white-rgb), 0.1);
  border: 2px solid rgba(var(--white-rgb), 0.3);
  text-align: center;
  margin-top: 1rem;
  backdrop-filter: blur(10px);
}
#main-nav .inset nav a.button-alt:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
  transform: translateX(0) scale(1.05);
}
#main-nav .inset nav a.button-alt i {
  margin-left: 8px;
  font-size: 14px;
}
#main-nav .inset .social {
  margin-left: 30px;
  display: flex;
  position: relative;
  z-index: 2;
  gap: 10px;
}
#main-nav .inset .social a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: rgba(var(--white-rgb), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  border: 1px solid rgba(var(--white-rgb), 0.2);
  backdrop-filter: blur(10px);
}
#main-nav .inset .social a:hover {
  background: var(--white);
  color: var(--secondary);
  transform: scale(1.1);
  border-color: var(--white);
}
#main-nav .inset .social a i {
  font-size: 16px;
  transition: all 300ms ease;
}

footer {
  background: linear-gradient(135deg, rgba(var(--text-dark-rgb), 0.9) 0%, rgba(var(--text-mid-rgb), 0.95) 100%);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatUp 10s ease-in-out infinite;
}
footer::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatDown 12s ease-in-out infinite;
}
footer .content {
  position: relative;
  z-index: 2;
  padding: 3rem 4rem 1rem;
}
@media all and (max-width: 799px) {
  footer .content {
    padding: 2rem 1rem 1rem;
  }
}
footer .content .grid-separe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(var(--white-rgb), 0.1);
  margin-bottom: 1.5rem;
  color: var(--white);
}
@media all and (max-width: 799px) {
  footer .content .grid-separe {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
footer .content .grid-separe .logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .content .grid-separe .logo img {
  max-width: 160px;
  height: auto;
  filter: brightness(1.1);
  transition: all 300ms ease;
}
footer .content .grid-separe .logo img:hover {
  filter: brightness(1.3);
  transform: scale(1.02);
}
footer .content .grid-separe .logo p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(var(--white-rgb), 0.9);
  margin: 0;
  max-width: 280px;
}
@media all and (max-width: 799px) {
  footer .content .grid-separe .logo p {
    font-size: 0.9rem;
    max-width: none;
  }
}
footer .content .grid-separe h4 {
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
}
footer .content .grid-separe h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 2px;
}
@media all and (max-width: 799px) {
  footer .content .grid-separe h4 {
    font-size: 1.3rem;
  }
}
footer .content .grid-separe .summary {
  display: flex;
  flex-direction: column;
  color: var(--white);
  gap: 12px;
  margin-left: 2rem;
}
@media all and (max-width: 799px) {
  footer .content .grid-separe .summary {
    margin-left: 0;
  }
}
footer .content .grid-separe .summary a {
  color: rgba(var(--white-rgb), 0.9);
  text-decoration: none;
  transition: all 400ms ease;
  font-size: 1rem;
  padding: 8px 0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
footer .content .grid-separe .summary a::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transition: width 400ms ease;
  border-radius: 6px;
  z-index: -1;
}
footer .content .grid-separe .summary a:hover {
  color: var(--white);
  font-weight: 600;
  padding-left: 15px;
}
footer .content .grid-separe .summary a:hover::before {
  width: calc(100% + 10px);
}
footer .content .grid-separe .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .content .grid-separe .info iframe {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  border: 2px solid rgba(var(--white-rgb), 0.1);
  transition: all 400ms ease;
}
footer .content .grid-separe .info iframe:hover {
  border-color: rgba(var(--secondary-rgb), 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
footer .content .grid-separe .info .map-overlay {
  position: relative;
}
footer .content .grid-separe .info .map-overlay::after {
  content: "📍 Encontre-nos";
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(var(--primary-rgb), 0.9);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--white-rgb), 0.2);
}
footer .content .end {
  padding: 1.5rem 0;
  text-align: center;
  position: relative;
}
footer .content .end::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 1px;
}
footer .content .end p {
  color: rgba(var(--white-rgb), 0.8);
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
footer .content .end p::before {
  content: "© ";
  color: var(--secondary);
  font-weight: 700;
}
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes floatDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
}

main.home .testimonials {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(var(--background-rgb), 0.3) 0%, rgba(var(--white-rgb), 1) 50%, rgba(var(--light-grey-rgb), 0.8) 100%);
  position: relative;
  overflow: hidden;
}
main.home .testimonials::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatUp 10s ease-in-out infinite;
}
main.home .testimonials::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatDown 12s ease-in-out infinite;
}
main.home .testimonials .swiper-pagination {
  position: static;
  margin-top: 2rem;
}
main.home .testimonials .swiper-pagination .swiper-pagination-bullet {
  background: var(--secondary);
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 300ms ease;
}
main.home .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
  transform: scale(1.2);
}
main.home .testimonials .content {
  position: relative;
  z-index: 2;
}
main.home .testimonials .title {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
main.home .testimonials .title .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 auto 1rem;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3);
}
main.home .testimonials .title .badge i {
  font-size: 18px;
}
main.home .testimonials .title h2 {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 2.4rem;
  margin: 0;
  line-height: 1.3;
}
main.home .testimonials .title h2 strong {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-top: 0.5rem;
}
@media all and (max-width: 999px) {
  main.home .testimonials .title h2 {
    font-size: 1.8rem;
  }
  main.home .testimonials .title h2 strong {
    font-size: 2.2rem;
  }
}
main.home .testimonials .title p {
  font-size: 1.2rem;
  color: var(--text);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
@media all and (max-width: 999px) {
  main.home .testimonials .title p {
    font-size: 1rem;
  }
}
main.home .testimonials .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  background: var(--white);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(var(--border-rgb), 0.2);
  transition: all 400ms ease;
}
main.home .testimonials .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  z-index: 1;
}
main.home .testimonials .swiper-slide::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
main.home .testimonials .swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
}
main.home .testimonials .swiper-slide .quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.5rem;
  color: rgba(var(--secondary-rgb), 0.1);
  z-index: 1;
}
main.home .testimonials .swiper-slide h4 {
  color: var(--primary);
  font-weight: 800;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}
main.home .testimonials .swiper-slide blockquote {
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: auto;
  text-align: left;
  position: relative;
  z-index: 2;
  font-style: italic;
  flex: 1;
  display: flex;
  align-items: center;
}
main.home .testimonials .swiper-slide blockquote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(var(--secondary-rgb), 0.2);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  line-height: 1;
}
main.home .testimonials .swiper-slide blockquote::after {
  content: '"';
  font-size: 4rem;
  color: rgba(var(--secondary-rgb), 0.2);
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: serif;
  line-height: 1;
}
@media all and (max-width: 1199px) {
  main.home .testimonials .swiper-slide blockquote {
    font-size: 1rem;
  }
}
main.home .testimonials .swiper-slide .stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 1.5rem 0 1rem;
  position: relative;
  z-index: 2;
}
main.home .testimonials .swiper-slide .stars i {
  font-size: 20px;
  color: #FFD700;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}
main.home .testimonials .swiper-slide .author {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--border-rgb), 0.2);
}
main.home .testimonials .swiper-slide .author strong {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
main.home .testimonials .swiper-slide .author span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}
main.home .about-us {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(var(--background-rgb), 0.5) 0%, rgba(var(--white-rgb), 1) 100%);
  position: relative;
  overflow: hidden;
}
main.home .about-us::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
main.home .about-us::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
main.home .about-us .content {
  position: relative;
  z-index: 2;
}
main.home .about-us .content .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
main.home .about-us .content .container .main-content {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.home .about-us .content .container .main-content {
    flex-direction: column;
    gap: 2rem;
  }
}
main.home .about-us .content .container .main-content .info {
  width: 55%;
  position: relative;
}
@media all and (max-width: 999px) {
  main.home .about-us .content .container .main-content .info {
    width: 100%;
  }
}
main.home .about-us .content .container .main-content .info .info-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3);
}
main.home .about-us .content .container .main-content .info .info-content .badge i {
  font-size: 18px;
}
main.home .about-us .content .container .main-content .info .info-content h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}
main.home .about-us .content .container .main-content .info .info-content h2 strong {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
}
@media all and (max-width: 999px) {
  main.home .about-us .content .container .main-content .info .info-content h2 {
    font-size: 1.4rem;
  }
  main.home .about-us .content .container .main-content .info .info-content h2 strong {
    font-size: 1.8rem;
  }
}
main.home .about-us .content .container .main-content .info .info-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  color: var(--text);
  margin: 0 0 1.5rem 0;
}
@media all and (max-width: 999px) {
  main.home .about-us .content .container .main-content .info .info-content p {
    font-size: 1rem;
  }
}
main.home .about-us .content .container .main-content .info .info-content .highlight-message {
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(var(--secondary-rgb), 0.1);
}
main.home .about-us .content .container .main-content .info .info-content .highlight-message i {
  font-size: 24px;
  color: var(--secondary);
  flex-shrink: 0;
}
main.home .about-us .content .container .main-content .info .info-content .highlight-message strong {
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1.4;
}
main.home .about-us .content .container .main-content .image {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media all and (max-width: 999px) {
  main.home .about-us .content .container .main-content .image {
    width: 100%;
    max-width: 500px;
  }
}
main.home .about-us .content .container .main-content .image .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
main.home .about-us .content .container .main-content .image .image-wrapper .decorative-element {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
main.home .about-us .content .container .main-content .image .image-wrapper .decorative-element.deco-1 {
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.3) 0%, rgba(var(--primary-rgb), 0.1) 100%);
  animation: float 6s ease-in-out infinite;
}
main.home .about-us .content .container .main-content .image .image-wrapper .decorative-element.deco-2 {
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--third-rgb), 0.1) 100%);
  animation: float 8s ease-in-out infinite reverse;
}
main.home .about-us .content .container .main-content .image .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 300ms ease;
}
main.home .about-us .content .container .main-content .image .image-wrapper img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}
main.home .about-us .content .container .main-content .image .image-wrapper .image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(var(--white-rgb), 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(var(--border-rgb), 0.2);
}
main.home .about-us .content .container .main-content .image .image-wrapper .image-overlay .overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
main.home .about-us .content .container .main-content .image .image-wrapper .image-overlay .overlay-content i {
  font-size: 20px;
  color: var(--secondary);
}
main.home .about-us .content .container .main-content .image .image-wrapper .image-overlay .overlay-content span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}
main.home .about-us .content .container .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  margin-top: 1rem;
}
@media all and (max-width: 768px) {
  main.home .about-us .content .container .stats {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 400px;
  }
}
@media all and (min-width: 769px) and (max-width: 999px) {
  main.home .about-us .content .container .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
main.home .about-us .content .container .stats .stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(var(--border-rgb), 0.3);
  transition: all 400ms ease;
  position: relative;
  overflow: hidden;
}
main.home .about-us .content .container .stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  z-index: 1;
}
main.home .about-us .content .container .stats .stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(var(--primary-rgb), 0.2);
  border-color: rgba(var(--secondary-rgb), 0.3);
}
main.home .about-us .content .container .stats .stat-item .stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
@media all and (max-width: 768px) {
  main.home .about-us .content .container .stats .stat-item .stat-number {
    font-size: 2.4rem;
  }
}
main.home .about-us .content .container .stats .stat-item .stat-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media all and (max-width: 768px) {
  main.home .about-us .content .container .stats .stat-item .stat-label {
    font-size: 0.9rem;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}
main.home .perks {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
main.home .perks .title {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  width: 100%;
  margin-bottom: 2rem;
}
main.home .perks .title h2 {
  color: var(--secondary);
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}
@media all and (max-width: 999px) {
  main.home .perks .title h2 {
    font-size: 1.6rem;
  }
}
main.home .perks .title p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.4rem;
}
@media all and (max-width: 999px) {
  main.home .perks .title p {
    font-size: 1rem;
  }
}
main.home .perks .slider {
  position: relative;
  padding: 0 4rem;
}
@media all and (max-width: 999px) {
  main.home .perks .slider {
    padding: 0 3rem;
  }
}
main.home .perks .slider > i {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--third) 100%);
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 400ms ease;
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
  z-index: 10;
}
main.home .perks .slider > i:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(var(--secondary-rgb), 0.4);
}
main.home .perks .slider > i.prev {
  left: 0;
}
main.home .perks .slider > i.next {
  right: 0;
}
@media all and (max-width: 999px) {
  main.home .perks .slider > i {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
main.home .perks .slider .swiper-container {
  overflow: hidden;
  border-radius: 1rem;
  padding: 1rem 0;
}
main.home .perks .slider .swiper-slide {
  height: auto;
}
main.home .perks .slider .swiper-slide .item {
  height: 100%;
}
main.home .perks .slider .item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 2.5rem;
  border-radius: 1rem;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(var(--secondary-rgb), 0.2);
  transition: all 400ms ease;
}
main.home .perks .slider .item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
}
main.home .perks .slider .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-20px, 20px);
}
main.home .perks .slider .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(var(--secondary-rgb), 0.3);
}
main.home .perks .slider .item .image {
  position: relative;
  z-index: 2;
}
main.home .perks .slider .item .image .image-inset {
  width: 90px;
  height: 90px;
  background: var(--white);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
}
main.home .perks .slider .item .image .image-inset:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}
main.home .perks .slider .item .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  position: relative;
  z-index: 2;
}
main.home .perks .slider .item .info h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.6em;
}
@media all and (max-width: 1400px) {
  main.home .perks .slider .item .info h3 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 999px) {
  main.home .perks .slider .item .info h3 {
    font-size: 1.1rem;
  }
}
main.home .perks .slider .item .info span {
  display: block;
  color: rgba(var(--white-rgb), 0.9);
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: auto;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 7.5em;
}
main.home .perks .slider .item .info .service-price {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}
main.home .perks .slider .item .info .service-price .price-info {
  background: rgba(var(--white-rgb), 0.15);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(var(--white-rgb), 0.2);
}
main.home .perks .slider .item .info .service-price .price-info .price-label {
  font-size: 0.8rem;
  color: rgba(var(--white-rgb), 0.8);
  margin-bottom: 0.3rem;
}
main.home .perks .slider .item .info .service-price .price-info .price-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
main.home .perks .slider .item .info .service-price .price-info .price-value span {
  font-size: 0.9rem;
  font-weight: 500;
}
main.home .perks .slider .item .info .service-price .whatsapp-button {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 300ms ease;
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
main.home .perks .slider .item .info .service-price .whatsapp-button i {
  font-size: 16px;
  transition: all 300ms ease;
}
main.home .perks .slider .item .info .service-price .whatsapp-button:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  border-color: rgba(var(--white-rgb), 0.3);
}
main.home .perks .slider .item .info .service-price .whatsapp-button:hover i {
  transform: scale(1.1);
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}
main.home .plans {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(var(--background-rgb), 0.3) 0%, rgba(var(--white-rgb), 1) 50%, rgba(var(--light-grey-rgb), 0.8) 100%);
  position: relative;
  overflow: hidden;
}
main.home .plans::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatUp 10s ease-in-out infinite;
}
main.home .plans::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatDown 12s ease-in-out infinite;
}
main.home .plans .content {
  position: relative;
  z-index: 2;
}
main.home .plans .image {
  width: 100%;
  height: 300px;
  background: var(--primary);
}
main.home .plans .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
main.home .plans .title {
  text-align: center;
  margin-bottom: 3rem;
}
main.home .plans .title h2 {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 2.8rem;
  margin: 0 0 1rem;
  line-height: 1.3;
}
main.home .plans .title h2 strong {
  font-weight: 700;
  color: var(--primary);
}
@media all and (max-width: 999px) {
  main.home .plans .title h2 {
    font-size: 2rem;
  }
}
main.home .plans .title span {
  color: var(--text);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}
@media all and (max-width: 999px) {
  main.home .plans .title span {
    font-size: 1rem;
  }
}
main.home .plans .plan-option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: fit-content;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 15px;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 25px rgba(var(--secondary-rgb), 0.3);
  transition: all 400ms ease;
}
main.home .plans .plan-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(var(--secondary-rgb), 0.4);
}
main.home .plans .plan-option a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 50%;
  height: 100%;
  border-radius: 12px;
  padding: 0 24px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: all 400ms ease;
  position: relative;
  overflow: hidden;
}
main.home .plans .plan-option a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 400ms ease;
}
main.home .plans .plan-option a.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
main.home .plans .plan-option a.active::before {
  transform: translateX(0);
}
main.home .plans .plan-option a:hover:not(.active)::before {
  transform: translateX(0);
}
@media all and (max-width: 1199px) {
  main.home .plans .plan-option {
    height: 50px;
  }
  main.home .plans .plan-option a {
    font-size: 1rem;
    padding: 0 16px;
  }
}
main.home .plans .list {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}
@media all and (max-width: 1199px) {
  main.home .plans .list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}
main.home .plans .list .item {
  background: var(--white);
  border-radius: 20px;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 600px;
  overflow: hidden;
  transition: all 400ms ease;
  border: 1px solid rgba(var(--border-rgb), 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
main.home .plans .list .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  z-index: 1;
}
main.home .plans .list .item::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
main.home .plans .list .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
}
main.home .plans .list .item .item-title {
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
main.home .plans .list .item .item-title h4 {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.3;
}
main.home .plans .list .item .item-title h4 strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.6rem;
}
main.home .plans .list .item .item-title h5 {
  margin: 0;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 400;
}
main.home .plans .list .item .item-title h5 strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.2rem;
}
main.home .plans .list .item ul {
  list-style: none;
  padding: 0 2rem;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 2;
}
main.home .plans .list .item ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(var(--border-rgb), 0.1);
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}
main.home .plans .list .item ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
}
main.home .plans .list .item ul li:last-child {
  border-bottom: none;
}
main.home .plans .list .item .action {
  padding: 1.5rem 2rem 2rem;
  position: relative;
  z-index: 2;
}
main.home .plans .list .item .action a {
  width: 100%;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
main.home .plans .list .item.featured {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scale(1.05);
}
main.home .plans .list .item.featured::before {
  height: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
main.home .plans .list .item.featured .item-title h4 {
  color: var(--white);
}
main.home .plans .list .item.featured .item-title h4 strong {
  color: var(--white);
}
main.home .plans .list .item.featured .item-title h5 {
  color: var(--white);
}
main.home .plans .list .item.featured .item-title h5 strong {
  color: var(--white);
}
main.home .plans .list .item.featured:hover {
  transform: scale(1.05) translateY(-8px);
}
main.home .plans .list .item.featured ul li {
  color: var(--white);
}
@media all and (max-width: 1199px) {
  main.home .plans .list .item.featured {
    transform: scale(1);
  }
  main.home .plans .list .item.featured:hover {
    transform: translateY(-8px);
  }
}
main.home .plans .extra-services {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
main.home .plans .extra-services .title {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  width: 100%;
  margin: 0;
}
main.home .plans .extra-services .title h3 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
main.home .plans .extra-services .title h4 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
}
main.home .plans .extra-services .title p {
  color: var(--text);
  font-size: 1rem;
  margin: 0;
}
main.home .plans .extra-services .grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media all and (max-width: 999px) {
  main.home .plans .extra-services .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 799px) {
  main.home .plans .extra-services .grid-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.home .plans .extra-services .grid-list .item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(var(--border-rgb), 0.1);
  transition: all 400ms ease;
}
main.home .plans .extra-services .grid-list .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.1);
}
main.home .plans .extra-services .grid-list .item h4 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
main.home .plans .extra-services .grid-list .item p {
  color: var(--text);
  font-size: 0.9rem;
  margin: 0;
}
main.home .plans .steps {
  width: 100%;
  margin-top: 4rem;
  position: relative;
}
main.home .plans .steps .title {
  text-align: center;
  margin-bottom: 3rem;
}
main.home .plans .steps .title strong {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
}
main.home .plans .steps .title h3 {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}
main.home .plans .steps .title h3 span {
  color: var(--primary);
  font-weight: 700;
}
@media all and (max-width: 999px) {
  main.home .plans .steps .title h3 {
    font-size: 1.6rem;
  }
}
main.home .plans .steps .grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media all and (max-width: 999px) {
  main.home .plans .steps .grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media all and (max-width: 599px) {
  main.home .plans .steps .grid-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
main.home .plans .steps .grid-list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  border: 2px solid rgba(var(--border-rgb), 0.1);
  transition: all 400ms ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
main.home .plans .steps .grid-list .item:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 8px 35px rgba(var(--primary-rgb), 0.15);
}
main.home .plans .steps .grid-list .item strong {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary);
}
main.home .plans .steps .grid-list .item h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.3;
  min-height: 2.6em;
}
@media all and (max-width: 999px) {
  main.home .plans .steps .grid-list .item h4 {
    font-size: 1rem;
    min-height: auto;
  }
}
main.home .plans .steps .grid-list .item p {
  color: var(--text);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
@media all and (max-width: 999px) {
  main.home .plans .steps .grid-list .item p {
    font-size: 0.85rem;
  }
}
main.home .hero {
  position: relative;
  height: 970px;
  overflow: hidden;
}
@media all and (max-width: 999px) {
  main.home .hero {
    margin-top: 0;
  }
}
main.home .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--white-rgb), 1) 0%, rgba(var(--light-grey-rgb), 0.95) 25%, rgba(var(--background-rgb), 0.9) 50%, rgba(var(--border-rgb), 0.7) 75%, rgba(var(--text-rgb), 0.3) 100%);
  z-index: 0;
}
main.home .hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%), radial-gradient(circle at 85% 80%, rgba(var(--secondary-rgb), 0.4) 0%, transparent 50%), radial-gradient(circle at 70% 10%, rgba(var(--third-rgb), 0.06) 0%, transparent 40%), radial-gradient(circle at 25% 70%, rgba(var(--primary-rgb), 0.05) 0%, transparent 30%), radial-gradient(circle at 90% 30%, rgba(var(--secondary-rgb), 0.07) 0%, transparent 35%), radial-gradient(circle at 10% 90%, rgba(var(--third-rgb), 0.04) 0%, transparent 25%), radial-gradient(circle at 60% 60%, rgba(var(--primary-rgb), 0.03) 0%, transparent 20%), radial-gradient(circle at 40% 30%, rgba(var(--secondary-rgb), 0.04) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(var(--third-rgb), 0.03) 0%, transparent 15%);
  background-size: 800px 600px, 700px 500px, 600px 400px, 400px 300px, 350px 250px, 300px 200px, 200px 150px, 180px 120px, 160px 100px;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}
main.home .hero .hero-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
main.home .hero .hero-decoration.deco-1 {
  top: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  animation: floatUp 8s ease-in-out infinite;
}
main.home .hero .hero-decoration.deco-2 {
  top: 30%;
  right: 8%;
  width: 40px;
  height: 40px;
  background: rgba(var(--secondary-rgb), 0.15);
  border-radius: 50%;
  animation: floatDown 10s ease-in-out infinite reverse;
}
main.home .hero .hero-decoration.deco-3 {
  bottom: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: rgba(var(--third-rgb), 0.08);
  border-radius: 50%;
  animation: floatSide 12s ease-in-out infinite;
}
main.home .hero .hero-decoration.deco-4 {
  top: 50%;
  right: 15%;
  width: 25px;
  height: 25px;
  background: rgba(var(--primary-rgb), 0.2);
  border-radius: 50%;
  animation: floatUp 6s ease-in-out infinite;
}
main.home .hero .hero-decoration.deco-5 {
  bottom: 40%;
  right: 25%;
  width: 35px;
  height: 35px;
  background: rgba(var(--secondary-rgb), 0.12);
  border-radius: 50%;
  animation: floatDown 9s ease-in-out infinite;
}
main.home .hero .info {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 4;
}
main.home .hero .info .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media all and (max-width: 999px) {
  main.home .hero .info .content {
    flex-direction: column;
    padding: 0;
  }
}
main.home .hero .info .content .image {
  height: 100%;
  display: flex;
  align-items: flex-end;
  flex: 1;
  justify-content: center;
  z-index: 5;
}
@media all and (max-width: 999px) {
  main.home .hero .info .content .image {
    position: absolute;
  }
}
main.home .hero .info .content .image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}
@media all and (max-width: 999px) {
  main.home .hero .info .content .image img {
    max-height: 100%;
  }
}
main.home .hero .info .content .heading {
  font-size: 1.2rem;
  width: 50%;
  z-index: 5;
  padding: 2rem;
}
@media all and (max-width: 999px) {
  main.home .hero .info .content .heading {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-top: 140px;
  }
}
main.home .hero .info .content .heading .button,
main.home .hero .info .content .heading .button-alt {
  display: inline-block;
  margin-top: 1rem;
}
main.home .hero .info .content .heading p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
  margin: 0;
  margin-top: 1rem;
  color: var(--third);
}
@media all and (max-width: 999px) {
  main.home .hero .info .content .heading p {
    font-size: 1rem;
  }
}
main.home .hero .info .content .heading h2 {
  font-size: 2.4rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
}
main.home .hero .info .content .heading h2 strong {
  color: var(--secondary);
  font-size: 3.6rem;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media all and (max-width: 999px) {
  main.home .hero .info .content .heading h2 {
    font-size: 1.4rem;
  }
  main.home .hero .info .content .heading h2 strong {
    font-size: 1.6rem;
  }
}
main.home .main-options {
  width: 100%;
  position: relative;
}
main.home .main-options::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 20%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: floatUp 8s ease-in-out infinite;
}
main.home .main-options::after {
  content: "";
  position: absolute;
  top: -40px;
  right: 25%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: floatDown 10s ease-in-out infinite;
}
main.home .main-options .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  margin-top: -160px;
  position: relative;
  z-index: 10;
}
@media all and (max-width: 999px) {
  main.home .main-options .content {
    flex-direction: column;
    margin-top: 1rem;
    gap: 1.5rem;
  }
}
main.home .main-options .content .item {
  padding: 3rem 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--third) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.25);
  border: 1px solid rgba(var(--white-rgb), 0.1);
  transition: all 400ms ease;
  max-width: 400px;
  min-height: 280px;
}
main.home .main-options .content .item::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
main.home .main-options .content .item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
main.home .main-options .content .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(var(--primary-rgb), 0.35);
}
main.home .main-options .content .item:hover .icon {
  transform: scale(1.1) rotate(5deg);
}
main.home .main-options .content .item:hover a {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--white-rgb), 0.3);
}
main.home .main-options .content .item .icon {
  width: 80px;
  height: 80px;
  background: rgba(var(--white-rgb), 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--white-rgb), 0.2);
  transition: all 400ms ease;
  position: relative;
  z-index: 2;
}
main.home .main-options .content .item h3 {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  main.home .main-options .content .item h3 {
    font-size: 1.8rem;
  }
}
main.home .main-options .content .item span {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(var(--white-rgb), 0.9);
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  main.home .main-options .content .item span {
    font-size: 1rem;
  }
}
main.home .main-options .content .item a {
  position: relative;
  z-index: 2;
  background: rgba(var(--white-rgb), 0.15);
  color: var(--white);
  border: 2px solid rgba(var(--white-rgb), 0.3);
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 400ms ease;
  backdrop-filter: blur(10px);
  text-align: center;
}
main.home .main-options .content .item a:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
main.home .main-options .content .item a i {
  font-size: 16px;
  transition: all 300ms ease;
}
main.home .main-options .content .item.alt {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}
main.home .main-options .content .item.alt:hover {
  box-shadow: 0 25px 60px rgba(var(--secondary-rgb), 0.35);
}
main.home .main-options .content .item.alt a:hover {
  color: var(--secondary);
}
@media all and (max-width: 999px) {
  main.home .main-options .content .item {
    max-width: 100%;
    padding: 2.5rem 2rem;
    min-height: 240px;
  }
}
main.home .main-options-modal {
  z-index: 100;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  animation: modalFadeIn 400ms ease-out;
}
main.home .main-options-modal.hidden {
  display: none !important;
}
main.home .main-options-modal .container {
  position: relative;
  padding: 2rem;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  animation: modalSlideIn 400ms ease-out;
}
@media all and (max-width: 699px) {
  main.home .main-options-modal .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 1rem;
    margin: 1rem;
  }
}
main.home .main-options-modal .container #exit-modal {
  position: absolute;
  top: -1rem;
  right: -1rem;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4757 0%, #c44569 100%);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  font-size: 18px;
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
  transition: all 400ms ease;
  z-index: 10;
}
main.home .main-options-modal .container #exit-modal:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
}
main.home .main-options-modal .container #exit-modal:active {
  transform: scale(0.95);
}
@media all and (max-width: 699px) {
  main.home .main-options-modal .container #exit-modal {
    top: -0.5rem;
    right: -0.5rem;
    height: 40px;
    width: 40px;
    font-size: 16px;
  }
}
main.home .main-options-modal .container .item {
  max-width: 380px;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--third) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.3);
  border: 1px solid rgba(var(--white-rgb), 0.1);
  transition: all 400ms ease;
}
main.home .main-options-modal .container .item::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
main.home .main-options-modal .container .item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
main.home .main-options-modal .container .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(var(--primary-rgb), 0.4);
}
main.home .main-options-modal .container .item .icon {
  width: 70px;
  height: 70px;
  background: rgba(var(--white-rgb), 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--white-rgb), 0.2);
  position: relative;
  z-index: 2;
  transition: all 400ms ease;
  margin-bottom: 0.5rem;
}
main.home .main-options-modal .container .item .icon:hover {
  transform: scale(1.05) rotate(5deg);
}
main.home .main-options-modal .container .item h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 699px) {
  main.home .main-options-modal .container .item h3 {
    font-size: 1.6rem;
  }
}
main.home .main-options-modal .container .item span {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(var(--white-rgb), 0.9);
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 699px) {
  main.home .main-options-modal .container .item span {
    font-size: 1rem;
  }
}
main.home .main-options-modal .container .item a {
  position: relative;
  z-index: 2;
  background: rgba(var(--white-rgb), 0.15);
  color: var(--white);
  border: 2px solid rgba(var(--white-rgb), 0.3);
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 400ms ease;
  backdrop-filter: blur(10px);
  text-align: center;
  margin-top: 1rem;
}
main.home .main-options-modal .container .item a:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--white-rgb), 0.3);
}
main.home .main-options-modal .container .item a i {
  font-size: 16px;
  transition: all 300ms ease;
}
main.home .main-options-modal .container .item.alt {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}
main.home .main-options-modal .container .item.alt:hover {
  box-shadow: 0 25px 70px rgba(var(--secondary-rgb), 0.4);
}
main.home .main-options-modal .container .item.alt a:hover {
  color: var(--secondary);
}
@media all and (max-width: 699px) {
  main.home .main-options-modal .container .item {
    max-width: 100%;
    padding: 2.5rem 2rem;
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
main.home section.solutions {
  width: 100%;
}
main.home section.solutions .content {
  margin-top: 3rem;
}
main.home section.solutions .content .title {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  width: 100%;
  margin-bottom: 2rem;
}
main.home section.solutions .content .title h2 {
  color: var(--secondary);
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}
@media all and (max-width: 999px) {
  main.home section.solutions .content .title h2 {
    font-size: 1.6rem;
  }
}
main.home section.solutions .content .title p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.4rem;
}
@media all and (max-width: 999px) {
  main.home section.solutions .content .title p {
    font-size: 1rem;
  }
}
main.home section.solutions .content .grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media all and (max-width: 999px) {
  main.home section.solutions .content .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 799px) {
  main.home section.solutions .content .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 599px) {
  main.home section.solutions .content .grid-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.home section.solutions .content .grid-list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 1rem;
  background-color: var(--primary);
  padding: 2rem;
}
main.home section.solutions .content .grid-list .item .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main.home section.solutions .content .grid-list .item .info .icon-inset {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border-radius: 1rem;
  background-color: var(--white);
}
main.home section.solutions .content .grid-list .item .info .icon-inset i {
  font-size: 48px;
  color: var(--secondary);
}
main.home section.solutions .content .grid-list .item .info h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
main.home section.solutions .content .grid-list .item .info p {
  margin: 0;
  color: var(--white);
  line-height: 1.5;
}
main.home section.solutions .content .grid-list .item .button {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
main.home section.app {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(var(--light-grey-rgb), 0.5) 0%, rgba(var(--white-rgb), 1) 50%, rgba(var(--background-rgb), 0.8) 100%);
  position: relative;
  overflow: hidden;
}
main.home section.app::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatUp 8s ease-in-out infinite;
}
main.home section.app::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatDown 10s ease-in-out infinite;
}
main.home section.app .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  main.home section.app .content {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    gap: 2rem;
  }
}
main.home section.app .content .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45%;
  position: relative;
}
@media all and (max-width: 999px) {
  main.home section.app .content .image {
    width: 100%;
    max-width: 400px;
  }
}
main.home section.app .content .image .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}
main.home section.app .content .image .image-wrapper .decorative-element {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
main.home section.app .content .image .image-wrapper .decorative-element.deco-1 {
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0.1) 100%);
  animation: float 5s ease-in-out infinite;
}
main.home section.app .content .image .image-wrapper .decorative-element.deco-2 {
  bottom: -25px;
  left: -25px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--third-rgb), 0.08) 100%);
  animation: float 7s ease-in-out infinite reverse;
}
main.home section.app .content .image .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: all 300ms ease;
}
main.home section.app .content .image .image-wrapper img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
}
main.home section.app .content .image .image-wrapper .app-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(var(--white-rgb), 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(var(--border-rgb), 0.2);
}
main.home section.app .content .image .image-wrapper .app-overlay .overlay-content {
  display: flex;
  align-items: center;
  gap: 6px;
}
main.home section.app .content .image .image-wrapper .app-overlay .overlay-content i {
  font-size: 18px;
  color: var(--secondary);
}
main.home section.app .content .image .image-wrapper .app-overlay .overlay-content span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}
main.home section.app .content .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 55%;
  position: relative;
}
@media all and (max-width: 999px) {
  main.home section.app .content .info {
    margin-top: 2rem;
    width: 100%;
  }
}
main.home section.app .content .info .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3);
}
main.home section.app .content .info .badge i {
  font-size: 18px;
}
main.home section.app .content .info h3 {
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}
main.home section.app .content .info h3 strong {
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
@media all and (max-width: 999px) {
  main.home section.app .content .info h3 {
    font-size: 1.4rem;
  }
  main.home section.app .content .info h3 strong {
    font-size: 1.8rem;
  }
}
main.home section.app .content .info p {
  font-size: 1.2rem;
  margin: 2rem 0;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}
main.home section.app .content .info p strong {
  font-weight: 700;
  color: var(--primary);
}
@media all and (max-width: 999px) {
  main.home section.app .content .info p {
    font-size: 1rem;
  }
}
main.home section.app .content .info .app-badges {
  display: flex;
  gap: 20px;
  margin: 2rem 0;
}
@media all and (max-width: 999px) {
  main.home section.app .content .info .app-badges {
    gap: 15px;
    justify-content: center;
  }
}
main.home section.app .content .info .app-badges a {
  transition: all 300ms ease;
}
main.home section.app .content .info .app-badges a:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  -webkit-filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.1647058824));
  filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.1647058824));
}
main.home section.app .content .info .app-badges a img {
  height: 80px;
  width: auto;
}
@media all and (max-width: 999px) {
  main.home section.app .content .info .app-badges a img {
    height: 45px;
  }
}
main.home section.app .content .info .highlight-message {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
  border-left: 4px solid var(--primary);
  padding: 1.2rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1);
}
main.home section.app .content .info .highlight-message i {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
main.home section.app .content .info .highlight-message span {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
main.home section.app .content .info .button {
  display: inline-block;
  width: fit-content;
}
main.home .brands {
  margin: 3rem 0;
}
main.home .brands .list {
  display: flex;
  gap: 20px;
}
@media all and (max-width: 999px) {
  main.home .brands .list {
    flex-wrap: wrap;
  }
}
main.home .brands .list span {
  flex: 1;
  text-align: center;
}
main.home section.certificate {
  padding: 3rem 0;
  background-color: var(--secondary);
}
main.home section.certificate .content {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media all and (max-width: 999px) {
  main.home section.certificate .content {
    flex-direction: column;
  }
}
main.home section.certificate .content .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
}
main.home section.certificate .content .info h2 {
  color: var(--white);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0;
}
main.home section.certificate .content .info h2 strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
}
@media all and (max-width: 1199px) {
  main.home section.certificate .content .info h2 {
    font-size: 1.4rem;
  }
  main.home section.certificate .content .info h2 strong {
    font-size: 1.5rem;
  }
}
main.home section.certificate .content .info p {
  color: var(--white);
  line-height: 1.8;
  margin: 0;
}
main.home section.certificate .content .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: var(--primary);
  color: var(--white);
}
@media all and (max-width: 999px) {
  main.home section.certificate .content .arrow {
    display: none;
  }
}
main.home section.certificate .content .get-certificate {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media all and (max-width: 999px) {
  main.home section.certificate .content .get-certificate {
    width: 100%;
  }
}
main.home section.certificate .content .get-certificate .logo {
  max-width: 180px;
  max-height: 90px;
}
main.home section.certificate .content .get-certificate .logo img {
  width: auto;
  height: auto;
}
main.home section.certificate .content .get-certificate .action {
  display: flex;
  align-items: center;
  height: 63px;
}
main.home section.contact {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.95) 0%, rgba(var(--primary-rgb), 1) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
main.home section.contact::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatUp 10s ease-in-out infinite;
}
main.home section.contact::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatDown 12s ease-in-out infinite;
}
main.home section.contact .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 1rem;
}
main.home section.contact .content .grid-separe {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: start;
}
@media all and (max-width: 999px) {
  main.home section.contact .content .grid-separe {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
main.home section.contact .content .grid-separe .info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
main.home section.contact .content .grid-separe .info .info-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--white-rgb), 0.15);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(var(--white-rgb), 0.2);
  border: 1px solid rgba(var(--white-rgb), 0.2);
}
main.home section.contact .content .grid-separe .info .info-header .badge i {
  font-size: 18px;
}
main.home section.contact .content .grid-separe .info .info-header h3 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
main.home section.contact .content .grid-separe .info .info-header h3 strong {
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
}
@media all and (max-width: 999px) {
  main.home section.contact .content .grid-separe .info .info-header h3 {
    font-size: 1.8rem;
  }
}
main.home section.contact .content .grid-separe .info .info-header p {
  color: rgba(var(--white-rgb), 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
@media all and (max-width: 999px) {
  main.home section.contact .content .grid-separe .info .info-header p {
    font-size: 1rem;
  }
}
main.home section.contact .content .grid-separe .info .list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
main.home section.contact .content .grid-separe .info .list .item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(var(--white-rgb), 0.1);
  border-radius: 16px;
  border: 1px solid rgba(var(--white-rgb), 0.2);
  transition: all 400ms ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 999px) {
  main.home section.contact .content .grid-separe .info .list .item {
    flex-direction: column;
  }
}
main.home section.contact .content .grid-separe .info .list .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 600ms ease;
}
main.home section.contact .content .grid-separe .info .list .item:hover {
  background: rgba(var(--white-rgb), 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--white-rgb), 0.2);
}
main.home section.contact .content .grid-separe .info .list .item:hover::before {
  left: 100%;
}
main.home section.contact .content .grid-separe .info .list .item .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(var(--white-rgb), 0.9) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(var(--white-rgb), 0.3);
  border: 1px solid rgba(var(--white-rgb), 0.3);
}
main.home section.contact .content .grid-separe .info .list .item .item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main.home section.contact .content .grid-separe .info .list .item .item-info span {
  color: rgba(var(--white-rgb), 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
main.home section.contact .content .grid-separe .info .list .item .item-info strong {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}
main.home section.contact .content .grid-separe .info .list .item .item-info a {
  text-decoration: none;
}
main.home section.contact .content .grid-separe .info .social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
main.home section.contact .content .grid-separe .info .social a {
  width: 55px;
  height: 55px;
  background: rgba(var(--white-rgb), 0.1);
  border: 1px solid rgba(var(--white-rgb), 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 400ms ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
main.home section.contact .content .grid-separe .info .social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 600ms ease;
}
main.home section.contact .content .grid-separe .info .social a:hover {
  background: rgba(var(--white-rgb), 0.2);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(var(--white-rgb), 0.3);
}
main.home section.contact .content .grid-separe .info .social a:hover::before {
  left: 100%;
}
main.home section.contact .content .grid-separe .form {
  width: 100%;
}
main.home section.contact .content .grid-separe .form form {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}
main.home section.contact .content .grid-separe .form form h4 {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
main.home section.contact .content .grid-separe .form form h4::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: block;
  margin: 1rem auto 2rem;
  border-radius: 2px;
}
@media all and (max-width: 999px) {
  main.home section.contact .content .grid-separe .form form h4 {
    font-size: 1.8rem;
  }
}
main.home section.contact .content .grid-separe .form form .item {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
main.home section.contact .content .grid-separe .form form .item span {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
main.home section.contact .content .grid-separe .form form .item input,
main.home section.contact .content .grid-separe .form form .item textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(var(--border-rgb), 0.6);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  transition: all 400ms ease;
  resize: none;
}
main.home section.contact .content .grid-separe .form form .item input:focus,
main.home section.contact .content .grid-separe .form form .item textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
  background: rgba(var(--primary-rgb), 0.02);
  transform: translateY(-2px);
}
main.home section.contact .content .grid-separe .form form .item input::placeholder,
main.home section.contact .content .grid-separe .form form .item textarea::placeholder {
  color: var(--text);
  font-weight: 400;
}
main.home section.contact .content .grid-separe .form form .item textarea {
  min-height: 120px;
  resize: vertical;
}
main.home section.contact .content .grid-separe .form form .action {
  text-align: center;
  position: relative;
  z-index: 2;
}
main.home section.contact .content .grid-separe .form form .button {
  width: 100%;
}
main.home section.contact .content .grid-separe .form form .form-state {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
main.home section.contact .content .grid-separe .form form .form-state .loading,
main.home section.contact .content .grid-separe .form form .form-state .success,
main.home section.contact .content .grid-separe .form form .form-state .error {
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
  border: 2px solid;
}
main.home section.contact .content .grid-separe .form form .form-state .success {
  background: rgba(63, 207, 82, 0.1);
  border-color: rgba(63, 207, 82, 0.3);
  color: #3fcf52;
}
main.home section.contact .content .grid-separe .form form .form-state .error {
  background: rgba(216, 63, 54, 0.1);
  border-color: rgba(216, 63, 54, 0.3);
  color: #d83f36;
}
main.home section.contact .content .grid-separe .form form .form-state .loading {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.3);
  color: var(--primary);
}
main.home section.contact .content .specialists {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: -120px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(var(--border-rgb), 0.1);
  overflow: hidden;
}
main.home section.contact .content .specialists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  z-index: 1;
}
main.home section.contact .content .specialists::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
main.home section.contact .content .specialists .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3);
  position: relative;
  z-index: 2;
}
main.home section.contact .content .specialists .badge i {
  font-size: 18px;
}
main.home section.contact .content .specialists h3 {
  color: var(--text-dark);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}
main.home section.contact .content .specialists h3 strong {
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
}
@media all and (max-width: 999px) {
  main.home section.contact .content .specialists h3 {
    font-size: 1.8rem;
  }
}
main.home section.contact .content .specialists p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  main.home section.contact .content .specialists p {
    font-size: 1rem;
  }
}
main.home section.contact .content .specialists a {
  position: relative;
  z-index: 2;
}
@media all and (max-width: 999px) {
  main.home section.contact .content .specialists a {
    white-space: normal;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-1deg);
  }
}
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes floatDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}
@keyframes floatSide {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
}
main.web-form .web-form-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 2rem;
  height: 900px;
}
@media all and (max-width: 999px) {
  main.web-form .web-form-hero {
    display: flex;
    flex-direction: column;
    margin-top: -80px;
    height: auto;
  }
}
main.web-form .web-form-hero.full {
  min-height: 100vh;
}
@media all and (max-width: 999px) {
  main.web-form .web-form-hero.full {
    height: auto;
  }
  main.web-form .web-form-hero.full .background {
    height: 50vh;
  }
  main.web-form .web-form-hero.full .background > img {
    height: 100%;
    display: block;
  }
}
main.web-form .web-form-hero.wide {
  display: block;
  height: 700px;
}
main.web-form .web-form-hero .background {
  height: 100%;
  border-radius: 10px;
  position: relative;
}
main.web-form .web-form-hero .background .app-view {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}
main.web-form .web-form-hero .background .app-view img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
@media all and (max-width: 999px) {
  main.web-form .web-form-hero .background {
    border-radius: 0;
    width: 100%;
  }
}
main.web-form .web-form-hero .background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  mix-blend-mode: overlay;
}
@media all and (max-width: 999px) {
  main.web-form .web-form-hero .background > img {
    height: 300px;
    border-radius: 0;
  }
}
main.web-form .web-form-hero .info {
  padding: 3rem;
}
@media all and (max-width: 999px) {
  main.web-form .web-form-hero .info {
    padding-top: 0;
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
}
main.web-form .web-form-hero .info .info-inset {
  max-width: 750px;
}
main.web-form .web-form-hero .info .price {
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 1.3rem;
  letter-spacing: -0.05rem;
  display: none;
}
main.web-form .web-form-hero .info .price strong {
  color: var(--primary);
}
main.web-form .web-form-hero .info .form {
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media all and (max-width: 999px) {
  main.web-form .web-form-hero .info .form {
    width: 100%;
    margin-bottom: 30px;
  }
}
main.web-form .web-form-hero .info .form form {
  display: flex;
  flex-direction: column;
}
main.web-form .web-form-hero .info .form h3 {
  color: var(--primary);
  font-size: 3rem;
  margin: 0;
  margin-bottom: 2rem;
}
main.web-form .web-form-hero .info .form input,
main.web-form .web-form-hero .info .form textarea {
  margin-bottom: 10px;
  padding: 15px;
  border: 2px solid #e5e5e5;
  resize: none;
  border-radius: 10px;
  outline: none;
}
main.web-form .web-form-hero .info .form .action button {
  float: right;
}
main.web-form .web-form-hero .info .form-inline .action {
  text-align: right;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
main.web-form .web-form-hero .info .form-inline h3 {
  color: var(--primary);
  font-size: 3rem;
  margin: 0;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
main.web-form .web-form-hero .info .form-inline .select {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
main.web-form .web-form-hero .info .form-inline .select select {
  appearance: none;
  border: 2px solid #f1f1f1;
  padding: 20px;
  background: url("data:image/svg+xml,%0A%3Csvg width='11px' height='7px' viewBox='0 0 11 7' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M8.73607752,2.86453336 L4.08876001,-1.73173747 C3.91761361,-1.91060389 3.70389908,-2 3.44719196,-2 C3.19048485,-2 2.97677031,-1.91050497 2.80562392,-1.73173747 L2.26389751,-1.2021366 C2.08803241,-1.02796874 2.00009987,-0.816261932 2.00009987,-0.56679361 C2.00009987,-0.322048568 2.08800745,-0.107819378 2.26389751,0.0756961274 L5.72809533,3.50002473 L2.26374771,6.93140116 C2.08793255,7.10556902 2,7.31727583 2,7.56676888 C2,7.81148919 2.08790758,8.02579257 2.26374771,8.20923389 L2.80552405,8.73876057 C2.98136418,8.91292843 3.19530342,9 3.4470921,9 C3.69898065,9 3.91286995,8.91292843 4.08866015,8.73876057 L8.73607752,4.14248974 C8.91199255,3.95892477 9,3.74474504 9,3.5 C9,3.25053168 8.91199255,3.03870122 8.73607752,2.86453336 Z' id='Path' fill='%23626262' fill-rule='nonzero' transform='translate(5.500000, 3.500000) rotate(-270.000000) translate(-5.500000, -3.500000) '%3E%3C/path%3E%3C/g%3E%3C/svg%3E") 95% center no-repeat;
  cursor: pointer;
  border-radius: 10px;
  outline: none;
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 500;
}
main.web-form .web-form-hero .info .form-inline p {
  font-size: 1rem;
}
main.web-form .web-form-hero .info .form-inline .plan-selector {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 30px;
}
main.web-form .web-form-hero .info .form-inline .plan-selector label {
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 10px;
}
main.web-form .web-form-hero .info .form-inline .plan-selector > input,
main.web-form .web-form-hero .info .form-inline .plan-selector > select {
  border: 1px solid #e5e5e5;
  padding: 12px;
  border-radius: 6px;
}
main.web-form .web-form-hero .info .form-inline .plan-selector > input:focus,
main.web-form .web-form-hero .info .form-inline .plan-selector > select:focus {
  border: 1px solid var(--primary);
  outline: none;
  box-shadow: 0px 0px 0px 3px rgba(var(--primary-rgb), 0.05);
}
main.web-form .web-form-hero .info .form-inline .form-row {
  display: flex;
  gap: 1rem;
}
@media all and (max-width: 1299px) {
  main.web-form .web-form-hero .info .form-inline .form-row {
    display: flex;
    flex-direction: column;
  }
}
main.web-form .web-form-hero .info .form-inline .form-row .form-item {
  flex: 1;
}
main.web-form .web-form-hero .info .form-inline .form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
main.web-form .web-form-hero .info .form-inline .form-item label {
  margin-bottom: 5px;
}
main.web-form .web-form-hero .info .form-inline .form-item > input,
main.web-form .web-form-hero .info .form-inline .form-item > select {
  border: 1px solid #e5e5e5;
  padding: 12px;
  border-radius: 6px;
}
main.web-form .web-form-hero .info .form-inline .form-item > input:focus,
main.web-form .web-form-hero .info .form-inline .form-item > select:focus {
  border: 1px solid var(--primary);
  outline: none;
  box-shadow: 0px 0px 0px 3px rgba(var(--primary-rgb), 0.05);
}
main.web-form .web-form-hero .info .form-inline .form-item em {
  font-style: normal;
  font-size: 0.7rem;
  margin-top: 5px;
}
main.web-form .web-form-hero .info h2 {
  color: var(--secondary);
  font-weight: bold;
  font-size: 4.4rem;
  position: relative;
  margin: 4rem 0;
}
@media all and (max-width: 1300px) {
  main.web-form .web-form-hero .info h2 {
    font-size: 3rem;
  }
}
@media all and (max-width: 999px) {
  main.web-form .web-form-hero .info h2 {
    font-size: 2.5rem;
  }
}
main.web-form .web-form-hero .info h2:before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 2px;
  top: -30px;
  background: var(--secondary);
  margin-left: -30%;
}
main.web-form .web-form-hero .info h2:after {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 2px;
  bottom: -30px;
  background: var(--secondary);
  margin-left: -30%;
}
main.web-form .web-form-hero .info p {
  font-size: 1.1rem;
  line-height: 1.4;
}
main.web-form .main-form {
  background: #f9f9f9;
  padding-bottom: 4rem;
  border-radius: 20px;
}
main.web-form .main-form .content {
  background: white;
  padding: 4rem;
  box-shadow: 0px 10px 32px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  margin-top: -50px;
}
@media all and (max-width: 999px) {
  main.web-form .main-form .content {
    padding: 0;
  }
}
main.web-form .main-form .content form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media all and (max-width: 999px) {
  main.web-form .main-form .content form {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    margin-top: 0;
  }
}
main.web-form .main-form .content .action {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}
main.web-form .main-form .content .col h4 {
  color: var(--secondary);
  font-size: 2rem;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
main.web-form .main-form .content .col .form-row {
  display: flex;
  gap: 1rem;
}
@media all and (max-width: 1299px) {
  main.web-form .main-form .content .col .form-row {
    display: flex;
    flex-direction: column;
  }
}
main.web-form .main-form .content .col .form-row .form-item {
  flex: 1;
}
main.web-form .main-form .content .col .form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
main.web-form .main-form .content .col .form-item label {
  margin-bottom: 5px;
}
main.web-form .main-form .content .col .form-item label.error {
  color: #f53346;
  font-size: 0.8rem;
  margin-top: 6px;
  order: 1000;
}
main.web-form .main-form .content .col .form-item > input,
main.web-form .main-form .content .col .form-item > select {
  border: 1px solid #e5e5e5;
  padding: 12px;
  border-radius: 6px;
}
main.web-form .main-form .content .col .form-item > input.error,
main.web-form .main-form .content .col .form-item > select.error {
  border: 1px solid #f53346;
}
main.web-form .main-form .content .col .form-item > input:focus,
main.web-form .main-form .content .col .form-item > select:focus {
  border: 1px solid var(--primary);
  outline: none;
  box-shadow: 0px 0px 0px 3px rgba(var(--primary-rgb), 0.05);
}
main.web-form .main-form .content .col .form-item label.error + .select2 .select2-selection {
  border: 1px solid #f53346 !important;
}
main.web-form .main-form .content .col .form-item em {
  font-style: normal;
  font-size: 0.7rem;
  margin-top: 5px;
}

main.certificate {
  background: linear-gradient(145deg, rgb(255, 255, 255) 48%, rgba(var(--primary-rgb), 0.5) 100%);
}
main.certificate header {
  position: relative;
  border-bottom: 2px solid var(--primary);
}
main.certificate header .content {
  justify-content: center;
}
main.certificate .certificate-title .content .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin: 2rem 0;
}
main.certificate .certificate-title .content .title p {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  color: var(--text-dark);
  max-width: 900px;
}
@media all and (max-width: 999px) {
  main.certificate .certificate-title .content .title p {
    font-size: 0.9rem;
  }
}
main.certificate .certificate-title .content .title h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--secondary);
  margin: 0;
}
main.certificate .certificate-title .content .title h2 strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}
@media all and (max-width: 999px) {
  main.certificate .certificate-title .content .title h2 {
    font-size: 1.1rem;
  }
  main.certificate .certificate-title .content .title h2 strong {
    font-size: 1.4rem;
  }
}
main.certificate .buy-certificate .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 1rem;
}
@media all and (max-width: 999px) {
  main.certificate .buy-certificate .content {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.certificate .buy-certificate .content .image {
  position: relative;
  height: 700px;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.certificate .buy-certificate .content .image {
    height: 300px;
  }
  main.certificate .buy-certificate .content .image .mask {
    border-bottom-right-radius: 1rem;
  }
  main.certificate .buy-certificate .content .image img {
    border-bottom-right-radius: 1rem;
  }
}
main.certificate .buy-certificate .content .image .mask {
  position: absolute;
  z-index: 2;
  background-color: var(--primary);
  height: 100%;
  width: 100%;
  border-top-right-radius: 1rem;
  background: linear-gradient(75deg, rgba(255, 255, 255, 0) 30%, var(--primary) 80%);
  padding: 2rem;
}
main.certificate .buy-certificate .content .image img {
  position: absolute;
  right: 0;
  height: 100%;
  width: auto;
  border-top-right-radius: 1rem;
}
main.certificate .buy-certificate .content .right {
  height: fit-content;
}
main.certificate .buy-certificate .content .right .list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media all and (max-width: 699px) {
  main.certificate .buy-certificate .content .right .list {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 2rem;
  }
}
main.certificate .buy-certificate .content .right .list .item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--primary);
}
@media all and (max-width: 999px) {
  main.certificate .buy-certificate .content .right .list .item {
    flex-direction: column;
    justify-content: flex-start;
  }
}
main.certificate .buy-certificate .content .right .list .item .left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
main.certificate .buy-certificate .content .right .list .item .left .icon {
  height: 63px;
  width: 63px;
  background-color: var(--secondary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.certificate .buy-certificate .content .right .list .item .left .icon i {
  font-size: 26px;
  color: var(--white);
}
main.certificate .buy-certificate .content .right .list .item .left .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
main.certificate .buy-certificate .content .right .list .item .left .info h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
}
main.certificate .buy-certificate .content .right .list .item .left .info strong {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 800;
}
main.certificate .buy-certificate .content .right .list .item .left .info em {
  color: var(--white);
}
main.certificate .buy-certificate .content .right .list .item .action {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 63px;
  margin-top: auto;
}
@media all and (max-width: 799px) {
  main.certificate .buy-certificate .content .right .list .item .action .button {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
main.certificate .buy-certificate .content .right .list .item.alt {
  background-color: var(--secondary);
}
main.certificate .buy-certificate .content .right .list .item.alt .left .icon {
  background-color: var(--primary);
}
main.certificate .buy-certificate .content .right .list .item.alt .left .info strong {
  color: var(--primary);
}

.content-box {
  background: white;
  box-shadow: 0px 10px 65px 0px rgba(0, 0, 0, 0.16);
  padding: 3rem;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -40px;
  line-height: 1.5;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.content-box .action {
  margin-top: 50px;
}
@media all and (max-width: 999px) {
  .content-box .action {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
.content-box h2 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary);
  margin-top: 0;
  line-height: 1;
}

.select2.select2-container .select2-selection {
  border: 1px solid #e5e5e5 !important;
  min-height: 42px;
}
.select2.select2-container .select2-selection .select2-selection__choice {
  background: rgba(var(--secondary-rgb), 0.05) !important;
  color: var(--secondary);
  font-size: 0.9rem;
  padding: 6px;
  border: 1px solid var(--secondary) !important;
  white-space: normal;
}

.select2-container--default .select2-results__option--highlighted {
  background: var(--primary) !important;
}

.tabs {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.tabs a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: all 200ms ease-in;
}
.tabs a.active {
  box-shadow: 0px 10px 32px 0px rgba(0, 0, 0, 0.1);
  background: white;
  color: var(--primary);
}

.tab {
  display: none;
}
.tab.active {
  display: block;
}

/*# sourceMappingURL=base.css.map */
