@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: #002444;
  --primary-rgb: 0, 36, 68;
  --secondary: #d0a451;
  --secondary-rgb: 208, 164, 81;
  --third: rgb(44, 72, 124);
  --third-rgb: 44, 72, 124;
  --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: "Archivo Black", 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 */
  -webkit-text-decoration: underline dotted;
          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;
}

.button {
  background: white;
  color: #ff7a00;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.main-options {
  z-index: 90;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.main-options.hidden {
  display: none !important;
}
.main-options .container {
  position: relative;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.main-options .container #exit-modal {
  position: absolute;
  top: -2rem;
  right: 1rem;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: #c01717;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}
@media all and (max-width: 699px) {
  .main-options .container {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1rem;
  }
}
.main-options .container .item {
  max-width: 300px;
  padding: 3rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, #ff7a00 0%, #ff9d00 100%);
  color: var(--white);
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media all and (max-width: 699px) {
  .main-options .container .item {
    max-width: 100%;
  }
}
.main-options .container .item h3 {
  font-size: 2.2rem;
  margin: 0;
}
.main-options .container .item.alt {
  background: linear-gradient(135deg, #ff7a00 0%, #ff9d00 100%);
}

#app {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(200%) blur(10px);
          backdrop-filter: saturate(200%) blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in;
  opacity: 0;
  visibility: hidden;
}
#app:target {
  opacity: 1;
  visibility: visible;
}
#app .inset {
  width: 100%;
  max-width: 1300px;
  position: relative;
}
#app .inset .close {
  position: absolute;
  right: 0;
  top: 0;
  background: white;
  padding: 20px;
  z-index: 2;
}
#app .inset video {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  visibility: hidden;
  z-index: 10000;
}
.modal:target {
  visibility: visible;
}
.modal .modal-inset {
  width: 100%;
  max-width: 500px;
  padding: 3rem;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: white;
  box-shadow: 0px 1px 1px rgba(3, 7, 18, 0), 0px 5px 4px rgba(3, 7, 18, 0.01), 0px 12px 9px rgba(3, 7, 18, 0.01), 0px 20px 15px rgba(3, 7, 18, 0.02), 0px 32px 24px rgba(3, 7, 18, 0.02);
  position: relative;
}
.modal .modal-inset .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
}
.modal .modal-inset .close svg {
  width: 20px;
  height: auto;
  opacity: 0.3;
}
.modal .modal-inset h3 {
  font-size: 2rem;
  margin: 0;
  margin-bottom: 2rem;
  color: var(--primary);
}
.modal .modal-inset .input-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 2rem;
}
.modal .modal-inset .input-form label {
  color: var(--primary);
  font-weight: bold;
}
.modal .modal-inset .input-form input {
  padding: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
}
.modal .modal-inset .loading {
  align-items: center;
  justify-content: center;
  display: none;
}
.modal .modal-inset .result {
  text-align: center;
  margin-top: 2rem;
}
.modal .modal-inset .result .success {
  background: rgba(44, 213, 73, 0.05);
  padding: 1rem;
  border: 1px solid rgba(44, 213, 73, 0.1);
  color: #2cd549;
  border-radius: 10px;
  display: none;
}
.modal .modal-inset .result .error {
  background: rgba(250, 39, 63, 0.05);
  padding: 1rem;
  border: 1px solid rgba(250, 39, 63, 0.1);
  color: #fa273f;
  border-radius: 10px;
  display: none;
}
.modal .modal-inset .action {
  text-align: right;
}
.modal .modal-inset .action button {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}
.modal .modal-inset[data-status=success] .result .success {
  display: block;
}
.modal .modal-inset[data-status=error] .result .error {
  display: block;
}
.modal .modal-inset[data-status=loading] .loading {
  display: flex;
}

.loader {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
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);
}

.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 {
  background-color: white;
}
header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  header .content {
    width: 100%;
    flex-direction: column;
  }
}
header .content .menu {
  display: none;
}
header .content .container {
  width: 50%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  header .content .container {
    width: 100%;
    flex-direction: column;
  }
}
header .content .container .logo {
  display: flex;
  justify-items: center;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}
header .content .container .logo img {
  max-width: 40px;
  height: auto;
}
header .content .container .logo .text {
  font-size: 2rem;
  font-weight: 700;
  font-style: normal;
  color: rgb(255, 115, 0);
  font-kerning: normal;
  border-bottom: 2px solid rgb(255, 115, 0);
  padding-bottom: 2px;
}
header .content .container nav {
  display: flex;
  margin: 0 1rem;
  gap: 1rem;
}
header .content .container nav a {
  display: flex;
  justify-items: center;
  font-size: 1em;
  font-weight: 700;
  font-style: normal;
  color: rgb(0, 0, 0);
  font-kerning: normal;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
}
header .content .container nav a::after {
  background-color: black;
  width: 8.04559px;
  height: 5.19946px;
  transform: translate(735.741px, 50.4982px);
}
header .content .action {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  header .content .action {
    margin-top: 1rem;
  }
}
header .content .action a:nth-of-type(1) {
  background-color: white;
  text-transform: uppercase;
  color: rgb(255, 115, 0);
  padding: 1rem 1.5rem;
  border: 3px solid rgb(255, 115, 0);
  border-radius: 3rem;
}
@media screen and (max-width: 1600px) {
  header .content .action a:nth-of-type(1) {
    padding: 0.5rem 1rem;
  }
}
header .content .action a:nth-of-type(2) {
  background: linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%);
  text-transform: uppercase;
  color: white;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 3rem;
}
@media screen and (max-width: 1600px) {
  header .content .action a:nth-of-type(2) {
    padding: 0.5rem 1rem;
  }
}
header .content .action a:nth-of-type(3) {
  color: rgb(255, 115, 0);
  text-align: center;
  text-decoration: none;
  padding: 1rem;
}
@media screen and (max-width: 1600px) {
  header .content .action a:nth-of-type(3) {
    padding: 0.5rem 1rem;
  }
}

.footer {
  background-color: #ff7a00;
  color: white;
  padding: 2rem;
  font-family: Arial, sans-serif;
}

.footer-top {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 1600px) {
  .footer-top {
    margin: 0;
  }
}

.footer-logo-social {
  flex: 1;
  min-width: 220px;
}

.logo {
  margin-bottom: 1rem;
}
.logo img {
  max-width: 400px;
  height: auto;
}
@media screen and (max-width: 1600px) {
  .logo img {
    max-width: 100%;
  }
}

.u-icon {
  background: white;
  color: #ff7a00;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-right: 0.5rem;
}

.logo-text {
  color: white;
  text-shadow: 1px 1px 2px #444;
  border-bottom: 2px solid white;
}

.social-icons a {
  display: inline-block;
  background: white;
  color: #ff7a00;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0.2rem;
  font-size: 1.2rem;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: #ff9a3d;
  color: white;
}

.location-icons {
  margin-top: 1rem;
  width: 400px;
  border: 5px solid red;
}
.location-icons a {
  display: inline-block;
  background: white;
  color: #ff7a00;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0.2rem;
  font-size: 1.2rem;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.location-icons a:hover {
  transform: translateY(-2px);
  background: #ff9a3d;
  color: white;
}
.location-icons span {
  color: white;
  transition: color 0.3s;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex: 2;
  min-width: 300px;
}

.footer-links h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-links a {
  display: block;
  margin-bottom: 0.5rem;
  color: white;
  text-decoration: underline;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffe4c2;
}

hr {
  border: none;
  border-top: 1px solid #3f3f3f;
  margin: 1.5rem 0;
}

.footer-bottom {
  color: #3f3f3f;
  text-align: center;
  font-size: 0.9rem;
}

main.home .main-options-modal-mei {
  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);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  animation: modalFadeIn 400ms ease-out;
}
main.home .main-options-modal-mei.hidden {
  display: none !important;
}
main.home .main-options-modal-mei .container {
  position: relative;
  padding: 2rem;
  width: -moz-fit-content;
  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-mei .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 1rem;
    margin: 1rem;
  }
}
main.home .main-options-modal-mei .container #exit-modal-mei {
  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-mei .container #exit-modal-mei:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
}
main.home .main-options-modal-mei .container #exit-modal-mei:active {
  transform: scale(0.95);
}
@media all and (max-width: 699px) {
  main.home .main-options-modal-mei .container #exit-modal-mei {
    top: -0.5rem;
    right: -0.5rem;
    height: 40px;
    width: 40px;
    font-size: 16px;
  }
}
main.home .main-options-modal-mei .container .item {
  max-width: 380px;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(135deg, #ff7a00 0%, #ff9d00 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-mei .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-mei .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-mei .container .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(var(--primary-rgb), 0.4);
}
main.home .main-options-modal-mei .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);
  -webkit-backdrop-filter: blur(10px);
          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-mei .container .item .icon:hover {
  transform: scale(1.05) rotate(5deg);
}
main.home .main-options-modal-mei .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-mei .container .item h3 {
    font-size: 1.6rem;
  }
}
main.home .main-options-modal-mei .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-mei .container .item span {
    font-size: 1rem;
  }
}
main.home .main-options-modal-mei .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;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-align: center;
  margin-top: 1rem;
}
main.home .main-options-modal-mei .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-mei .container .item a i {
  font-size: 16px;
  transition: all 300ms ease;
}
main.home .main-options-modal-mei .container .item.alt {
  background: linear-gradient(135deg, #ff7a00 0%, #ff9d00 100%);
}
main.home .main-options-modal-mei .container .item.alt:hover {
  box-shadow: 0 25px 70px rgba(var(--secondary-rgb), 0.4);
}
main.home .main-options-modal-mei .container .item.alt a:hover {
  color: var(--secondary);
}
@media all and (max-width: 699px) {
  main.home .main-options-modal-mei .container .item {
    max-width: 100%;
    padding: 2.5rem 2rem;
  }
}
main.home section.hero {
  display: flex;
  align-items: center;
  width: 100%;
  background: linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%);
  height: 60vh;
}
@media screen and (max-width: 1500px) {
  main.home section.hero {
    height: auto;
  }
}
main.home section.hero .content {
  width: 60%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  main.home section.hero .content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
main.home section.hero .content .info {
  width: 60%;
  margin: auto 0;
}
@media screen and (max-width: 1500px) {
  main.home section.hero .content .info {
    width: 100%;
  }
}
main.home section.hero .content .info h1 {
  width: 70%;
  line-height: 59px;
  letter-spacing: 0em;
  color: white;
  text-transform: uppercase;
  font-size: 3.2rem;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 1600px) {
  main.home section.hero .content .info h1 {
    font-size: 2.2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 1500px) {
  main.home section.hero .content .info h1 {
    width: 100%;
    font-size: 2.2rem;
    line-height: 1;
    text-align: center;
  }
}
main.home section.hero .content .info p {
  font-size: 1.5em;
  font-weight: 400;
  font-style: normal;
  color: white;
}
@media screen and (max-width: 1600px) {
  main.home section.hero .content .info p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1500px) {
  main.home section.hero .content .info p {
    font-size: 1rem;
    text-align: center;
  }
}
main.home section.hero .content .image {
  display: flex;
  justify-content: center;
  background: url("../images/banner-2.png") no-repeat right/contain;
  width: 50%;
  height: auto;
  margin-right: -1vw;
}
@media screen and (max-width: 1500px) {
  main.home section.hero .content .image {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 1500px) {
  main.home section.hero .content .image {
    background-size: cover;
    background: none;
    background-position: center;
  }
}
main.home section.hero .content .image img {
  max-height: 60vh;
  margin-right: -2vw;
}
@media screen and (max-width: 1500px) {
  main.home section.hero .content .image img {
    margin: 0;
  }
}
main.home section.mensal {
  width: 70%;
  border-top: 5px solid rgb(255, 116, 0);
  border-bottom: 5px solid rgb(255, 116, 0);
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  main.home section.mensal {
    width: 100%;
  }
}
main.home section.mensal .content {
  width: 95%;
  padding: 2rem 0;
}
@media screen and (max-width: 1600px) {
  main.home section.mensal .content {
    width: 90%;
  }
}
@media screen and (max-width: 1500px) {
  main.home section.mensal .content {
    width: 100%;
  }
}
main.home section.mensal .content .itens {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
main.home section.mensal .content .itens .text {
  color: rgb(255, 116, 0);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  line-height: 2.2rem;
}
@media screen and (max-width: 1600px) {
  main.home section.mensal .content .itens .text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1500px) {
  main.home section.mensal .content .itens .text {
    font-size: 2rem;
  }
}
main.home section.mensal .content .itens .price {
  color: rgb(255, 116, 0);
  font-size: 5.5rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  line-height: 2.2rem;
}
@media screen and (max-width: 1600px) {
  main.home section.mensal .content .itens .price {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1500px) {
  main.home section.mensal .content .itens .price {
    font-size: 2.5rem;
  }
}
main.home section.mensal .content .itens .price span:nth-of-type(1) {
  font-size: 2.3rem;
  vertical-align: text-top;
  font-weight: 800;
  text-transform: none;
  line-height: 1.2rem;
  justify-self: self-end;
}
@media screen and (max-width: 1500px) {
  main.home section.mensal .content .itens .price span:nth-of-type(1) {
    font-size: 1.5rem;
  }
}
main.home section.mensal .content .itens .price span:nth-of-type(2) {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: none;
  line-height: 1.2rem;
  justify-self: self-end;
}
@media screen and (max-width: 1500px) {
  main.home section.mensal .content .itens .price span:nth-of-type(2) {
    font-size: 1.5rem;
  }
}
main.home section.mensal .content .itens .button {
  background: linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%);
  text-transform: uppercase;
  color: white;
  text-align: center;
  padding: 1.3rem 4rem;
  border-radius: 3rem;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0px 10px 65px 0px rgba(0, 0, 0, 0.16);
}
main.home section.solutions {
  width: 100%;
  padding: 5rem 0;
  background-color: #f2f2f2;
}
main.home section.solutions .content {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1450px) {
  main.home section.solutions .content {
    width: 100%;
    flex-direction: column;
  }
}
main.home section.solutions .content .title {
  width: 30%;
}
@media screen and (max-width: 1450px) {
  main.home section.solutions .content .title {
    width: 100%;
    text-align: center;
  }
}
main.home section.solutions .content .title h2 {
  width: 60%;
  color: rgb(255, 116, 0);
  font-size: 2.2rem;
  line-height: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 1450px) {
  main.home section.solutions .content .title h2 {
    width: 100%;
    font-size: 2rem;
  }
}
main.home section.solutions .content .title p {
  width: 60%;
  color: black;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 1450px) {
  main.home section.solutions .content .title p {
    width: 100%;
  }
}
main.home section.solutions .content .image {
  max-width: 600px;
}
main.home section.solutions .content .image img {
  width: 100%;
}
main.home section.solutions .content .grid-list {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1450px) {
  main.home section.solutions .content .grid-list {
    width: 100% !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
main.home section.solutions .content .grid-list .item {
  width: 100%;
  gap: 1rem;
  background-color: white;
  padding: 1rem;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.16);
  border-radius: 2rem;
}
@media screen and (max-width: 1450px) {
  main.home section.solutions .content .grid-list .item {
    width: 80%;
    margin: 0 auto;
  }
}
main.home section.solutions .content .grid-list .item .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
main.home section.solutions .content .grid-list .item .info .icon-inset {
  width: 90px;
  height: 90px;
  background-color: rgb(255, 116, 0);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.home section.solutions .content .grid-list .item .info .icon-inset img {
  width: 100%;
  height: 100%;
}
main.home section.solutions .content .grid-list .item .info h4 {
  color: rgb(255, 116, 0);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  margin: 0;
}
main.home section.solutions .content .grid-list .item .info p {
  color: black;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  min-height: 150px;
  margin: 0;
}
@media screen and (max-width: 1450px) {
  main.home section.solutions .content .grid-list .item .info p {
    min-height: 80px;
  }
}
main.home section.solutions .content .grid-list .item .info a {
  background: linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%);
  text-transform: uppercase;
  color: white;
  text-align: center;
  padding: 1rem 1rem;
  border-radius: 3rem;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0px 10px 65px 0px rgba(0, 0, 0, 0.16);
}
main.home section.ThirdSection {
  width: 100%;
  padding: 5rem 0;
}
main.home section.ThirdSection .container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1450px) {
  main.home section.ThirdSection .container {
    width: 100%;
  }
}
main.home section.ThirdSection .container .title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main.home section.ThirdSection .container .title h2 {
  width: 60%;
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  font-style: normal;
  color: rgb(255, 115, 0);
  text-align: center;
  font-kerning: normal;
  margin: 0;
}
@media screen and (max-width: 1450px) {
  main.home section.ThirdSection .container .title h2 {
    width: 100%;
    font-size: 2rem;
  }
}
main.home section.ThirdSection .container .title p {
  width: 60%;
  margin: 0 auto;
  color: black;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1450px) {
  main.home section.ThirdSection .container .title p {
    width: 100%;
    font-size: 1.2rem;
  }
}
main.home section.ThirdSection .container .content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1450px) {
  main.home section.ThirdSection .container .content {
    flex-direction: column;
  }
}
main.home section.ThirdSection .container .content .image {
  max-width: 500px;
}
main.home section.ThirdSection .container .content .image img {
  width: 100%;
}
main.home section.ThirdSection .container .content .benefits-grid {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1450px) {
  main.home section.ThirdSection .container .content .benefits-grid {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
main.home section.ThirdSection .container .content .benefits-grid .card {
  color: rgb(255, 115, 0);
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%) border-box;
  border: 3px solid transparent;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  padding: 0.5rem;
}
main.home section.ThirdSection .container .content .benefits-grid .card p {
  color: rgb(58, 58, 58);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
main.home section.ThirdSection .container .content .benefits-grid .card.destaque {
  color: white;
  background: linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%) padding-box, linear-gradient(90deg, rgb(255, 115, 0) 0%, rgb(255, 144, 0) 100%) border-box;
  border: 3px solid transparent;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  padding: 0.5rem;
}
main.home section.ThirdSection .container .content .benefits-grid .card.destaque p {
  color: white;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
main.home section.about-us {
  width: 100%;
  padding: 5rem 0;
  background-color: #f2f2f2;
}
main.home section.about-us .content {
  width: 60%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main.home section.about-us .content .image img {
  width: 100%;
}
main.home section.about-us .content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main.home section.about-us .content .text h2 {
  align-self: flex-start;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  font-style: normal;
  color: rgb(255, 115, 0);
  text-align: left;
  font-kerning: normal;
  margin: 0;
}
@media screen and (max-width: 1450px) {
  main.home section.about-us .content .text h2 {
    font-size: 2rem;
  }
}
main.home section.about-us .content .text p {
  margin: 0.5rem;
  color: rgb(58, 58, 58);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  text-align: left;
}
@media screen and (max-width: 1450px) {
  main.home section.about-us .content .text p {
    font-size: 1.2rem;
  }
}
main.home section.about-us .content .text .button {
  background: linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%);
  text-transform: uppercase;
  color: white;
  text-align: center;
  padding: 1rem 3rem;
  border-radius: 3rem;
  border: none;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.534);
}
main.home .plans {
  background: linear-gradient(135deg, #ff7a00, #ff9d00);
  text-align: center;
  padding: 4rem 2rem;
  font-family: Arial, sans-serif;
  color: #333;
  /* Cada item */
  /* Estado ativo */
  /* Hover */
  /* Responsivo */
}
main.home .plans a {
  margin: 2.5rem;
  color: white;
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  text-decoration: underline;
  text-align: center;
}
main.home .plans .hidden {
  display: none !important;
}
main.home .plans .plans-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
main.home .plans .plans-container .plan-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Botão */
}
main.home .plans .plans-container .plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}
main.home .plans .plans-container .plan-card .plan-card.best {
  border: 2px solid #ff7a00;
}
main.home .plans .plans-container .plan-card .badge {
  background: #ff7a00;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  letter-spacing: 1px;
}
main.home .plans .plans-container .plan-card h3 {
  color: #ff7a00;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #3f3f3f;
}
main.home .plans .plans-container .plan-card .old-price {
  text-decoration: line-through;
  color: #ff7a00;
  font-size: 1.2rem;
}
main.home .plans .plans-container .plan-card .price {
  margin-top: -1rem;
  font-size: 1.2rem;
  color: #ff7a00;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #3f3f3f;
}
main.home .plans .plans-container .plan-card .price span {
  font-size: 2.2rem;
  color: #ff7a00;
  font-weight: 800;
}
main.home .plans .plans-container .plan-card .price .cents {
  font-size: 0.8rem;
  vertical-align: super;
}
main.home .plans .plans-container .plan-card .price .per {
  font-size: 0.8rem;
}
main.home .plans .plans-container .plan-card .features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  text-align: left;
}
main.home .plans .plans-container .plan-card .features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}
main.home .plans .plans-container .plan-card .features li.yes::before {
  content: "✔";
  color: #ff7a00;
  font-weight: bold;
  margin-right: 0.5rem;
}
main.home .plans .plans-container .plan-card .features li.no::before {
  content: "✘";
  color: #999;
  margin-right: 0.5rem;
}
main.home .plans .plans-container .plan-card button {
  background: linear-gradient(90deg, #ff7a00, #ff9d00);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
main.home .plans .plans-container .plan-card button:hover {
  background: linear-gradient(90deg, #ff9d00, #ff7a00);
}
main.home .plans .top-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 999px) {
  main.home .plans .top-container {
    flex-direction: column;
  }
}
main.home .plans .top-buttons {
  display: inline-flex;
  background: #ffb566;
  border-radius: 40px;
  padding: 0.3rem;
  margin: 0 auto 2rem;
  position: relative;
}
@media screen and (max-width: 999px) {
  main.home .plans .top-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
main.home .plans .top-buttons a {
  background: transparent;
  border: none;
  color: #ff6600;
  margin: 0;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
main.home .plans .top-buttons .active {
  background: #fff;
  color: #ff6600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
main.home .plans .top-buttons button:hover:not(.active) {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 600px) {
  main.home .plans .top-buttons {
    flex-wrap: wrap;
  }
  main.home .plans .top-buttons button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
main.home section.FourSection {
  width: 100%;
}
main.home section.FourSection .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 60%;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 1450px) {
  main.home section.FourSection .container {
    width: 100%;
  }
}
main.home section.FourSection .container .text {
  display: flex;
  margin: 0 auto 2rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 1450px) {
  main.home section.FourSection .container .text {
    flex-direction: column;
  }
}
main.home section.FourSection .container .text h2 {
  width: 60%;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 800;
  font-style: normal;
  color: #ff7a00;
  margin: 0;
}
@media screen and (max-width: 1450px) {
  main.home section.FourSection .container .text h2 {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
  }
}
main.home section.FourSection .container .text a {
  background-color: #fff;
  border: 3px solid #ff6600;
  color: #ff6600;
  text-decoration: underline;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 1rem 5rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
main.home section.FourSection .container .title h1 {
  margin-top: 6rem;
  width: 70%;
  margin: 0 auto;
  font-size: 4rem;
  font-weight: 800;
  font-style: normal;
  color: #ff6600;
  text-align: center;
}
@media screen and (max-width: 1450px) {
  main.home section.FourSection .container .title h1 {
    width: 100%;
    font-size: 2.2rem;
  }
}
main.home section.FourSection .container .title h2 {
  width: 70%;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 800;
  font-style: normal;
  color: #ff6600;
  text-align: center;
}
@media screen and (max-width: 1450px) {
  main.home section.FourSection .container .title h2 {
    width: 100%;
    font-size: 1.8rem;
  }
}
main.home section.FourSection .container .title p {
  width: 80%;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: normal;
  color: #3f3f3f;
}
@media screen and (max-width: 1450px) {
  main.home section.FourSection .container .title p {
    font-size: 1rem;
  }
}
main.home section.FourSection .container .title .button_f {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
main.home section.FourSection .container .title .button_f button {
  background: linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%);
  border: 3px solid #ff6600;
  color: white;
  text-decoration: underline;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 1rem 5rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
main.home section.FourSection .container .content img {
  width: 100%;
}
main.home section.FiveSection {
  width: 100%;
}
main.home section.FiveSection .container {
  display: flex;
  background-color: #f2f2f2;
  border-radius: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 60%;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 999px) {
  main.home section.FiveSection .container {
    width: 100%;
  }
}
main.home section.FiveSection .container .title h1 {
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 800;
  font-style: normal;
  color: #ff6600;
  text-align: center;
}
main.home section.FiveSection .container .faq {
  max-width: 80%;
  margin: 1rem auto;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 20px;
  font-family: Arial, sans-serif;
}
main.home section.FiveSection .container .faq details {
  border-bottom: 1px solid #000;
  padding: 1rem 0;
}
main.home section.FiveSection .container .faq details:last-child {
  border-bottom: none;
}
main.home section.FiveSection .container .faq summary {
  color: #3f3f3f;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 999px) {
  main.home section.FiveSection .container .faq summary {
    font-size: 1.2rem;
  }
}
main.home section.FiveSection .container .faq summary::-webkit-details-marker {
  display: none;
}
main.home section.FiveSection .container .faq summary::after {
  content: "▾";
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #000;
}
main.home section.FiveSection .container .faq details[open] summary::after {
  transform: rotate(180deg);
}
main.home section.FiveSection .container .faq details p {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 999px) {
  main.home section.FiveSection .container .faq details p {
    font-size: 1rem;
  }
}
main.home section.Blog {
  width: 100%;
}
main.home section.Blog .container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  padding: 5rem 0;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container {
    width: 100%;
  }
}
main.home section.Blog .container .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  padding: 3rem;
  background-image: url("../images/U-Blog.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container .title {
    width: 100%;
  }
}
main.home section.Blog .container .title h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  font-style: normal;
  color: #3f3f3f;
  text-transform: uppercase;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container .title h2 {
    font-size: 1.5rem;
  }
}
main.home section.Blog .container .title h1 {
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 800;
  font-style: normal;
  color: #ff6600;
  line-height: 1;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container .title h1 {
    font-size: 2rem;
  }
}
main.home section.Blog .container .content {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container .content {
    width: 100%;
  }
}
main.home section.Blog .container .content .card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container .content .card {
    flex-direction: column;
    text-align: center;
  }
}
main.home section.Blog .container .content .card img {
  width: 40%;
  border-radius: 1rem;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container .content .card img {
    width: 60%;
  }
}
main.home section.Blog .container .content .card .text h2 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 600;
  font-style: normal;
  color: #3f3f3f;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container .content .card .text h2 {
    font-size: 1.5rem;
  }
}
main.home section.Blog .container .content .card .text p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  color: #3f3f3f;
}
@media screen and (max-width: 1450px) {
  main.home section.Blog .container .content .card .text p {
    font-size: 1rem;
  }
}
main.home section.contato {
  width: 100%;
  background-color: #f87219;
  padding: 6rem 0;
}
main.home section.contato .container {
  width: 70%;
  margin: 0 auto;
  display: flex;
  padding: 5rem 0;
  background-color: white;
  max-height: 900px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media screen and (max-width: 999px) {
  main.home section.contato .container {
    width: 90%;
  }
}
main.home section.contato .container .content {
  width: 50%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 999px) {
  main.home section.contato .container .content {
    width: 100%;
  }
}
main.home section.contato .container .content h1 {
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 800;
  font-style: normal;
  color: #ff7a00;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  main.home section.contato .container .content h1 {
    font-size: 2rem;
  }
}
main.home section.contato .container .content p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  color: #3f3f3f;
}
@media screen and (max-width: 999px) {
  main.home section.contato .container .content p {
    font-size: 1rem;
  }
}
main.home section.contato .container .content .action {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
}
main.home section.contato .container .content .action a:nth-of-type(1) {
  background-color: white;
  text-transform: uppercase;
  color: rgb(255, 115, 0);
  padding: 1rem 1.5rem;
  border: 3px solid rgb(255, 115, 0);
  border-radius: 3rem;
}
main.home section.contato .container .content .action a:nth-of-type(2) {
  background: linear-gradient(90deg, rgb(255, 116, 0) 0%, rgb(255, 144, 0) 100%);
  text-transform: uppercase;
  color: white;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 3rem;
}
main.home section.contato .container .form {
  position: relative;
  width: 40%;
  height: 900px;
  top: -8rem;
  padding: 3rem;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 999px) {
  main.home section.contato .container .form {
    width: 100%;
    position: static;
    height: auto;
  }
}
main.home section.contato .container .form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main.home section.contato .container .form label {
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
}
main.home section.contato .container .form input, main.home section.contato .container .form select {
  padding: 0.7rem 0.9rem;
  border: 1px solid #aaa;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
main.home section.contato .container .form input:focus, main.home section.contato .container .form select:focus {
  border-color: #ff6c00;
  box-shadow: 0 0 5px rgba(255, 108, 0, 0.4);
}
main.home section.contato .container .form button {
  background: linear-gradient(90deg, #ff6c00, #ff9e42);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.9rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}
main.home section.contato .container .form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

/* Tablets grandes e notebooks pequenos */
@media (max-width: 1024px) {
  main.home section.hero .content {
    width: 100%;
  }
  main.home section.hero .info h1 {
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
    width: 100%;
  }
  main.home section.hero .image {
    width: 80%;
    margin: 0;
    background-position: center;
  }
  main.home section.solutions .content {
    flex-direction: column;
    width: 80%;
  }
  main.home section.solutions .grid-list {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  main.home section.about-us .content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  main.home section.about-us .text h2,
  main.home section.about-us .text p {
    text-align: center;
  }
  main.home .plans .plans-container {
    flex-direction: column;
  }
}
/* Tablets médios e smartphones grandes */
@media (max-width: 768px) {
  main.home section.hero {
    height: auto;
    padding: 3rem 1rem 0rem;
  }
  main.home section.hero .info p {
    font-size: 1.2rem;
  }
  main.home section.mensal .content .itens {
    flex-direction: column;
    gap: 1rem;
  }
  main.home section.solutions .grid-list {
    grid-template-columns: 1fr;
  }
  main.home section.ThirdSection .content {
    flex-direction: column;
  }
  main.home section.ThirdSection .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  main.home section.Blog .container {
    flex-direction: column;
    width: 90%;
  }
  main.home section.Blog .content .card {
    flex-direction: column;
  }
  main.home section.contato .container {
    flex-direction: column;
    border-radius: 20px;
    max-height: none;
    padding: 2rem;
  }
  main.home section.contato .content,
  main.home section.contato .form {
    width: 100%;
    position: static;
    top: 0;
  }
}
/* Smartphones pequenos */
@media (max-width: 480px) {
  main.home section.hero .info h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  main.home section.hero .info p {
    font-size: 1rem;
  }
  main.home section.mensal .itens .price {
    font-size: 3rem;
  }
  main.home section.ThirdSection .benefits-grid {
    grid-template-columns: 1fr;
  }
  main.home section.FourSection .title h1,
  main.home section.FourSection .title h2 {
    font-size: 2rem;
  }
  main.home section.FiveSection .faq summary {
    font-size: 1.2rem;
  }
  main.home section.Blog .title h1 {
    font-size: 2rem;
  }
  main.home .plans a {
    font-size: 1.4rem;
    margin: 1rem;
  }
  main.home .plans .plan-card {
    flex: 1 1 100%;
  }
}
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%;
  -o-object-fit: cover;
     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 {
  -webkit-appearance: none;
     -moz-appearance: none;
          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: -moz-fit-content;
  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 */