/* =============================== RESET =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =============================== VARIÁVEIS =============================== */

:root {
  --bg-page: #082337;
  --bg-header-top: #082337;
  --bg-header-bottom: #113854;
  --bg-hero: #082337;
  --hero-image: url("/public/images/hero.png");

  --text-primary: #ffffff;
  --text-secondary: #a8bac9;
  --text-muted: #7f98ab;

  --brand-primary: #55c0db;
  --brand-blue: #247fbe;
  --brand-blue-hover: #1e74ae;

  --border-soft: rgba(255, 255, 255, 0.08);
  --input-bg: #0b2c45;
  --input-border: #143c59;

  --container-width: 1560px;
}

/* =============================== BASE =============================== */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font-family: inherit;
}

/* =============================== LAYOUT GERAL =============================== */

.layout-container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

/* =============================== HEADER =============================== */

.layout-header {
  width: 100%;
  position: relative;
  z-index: 20;
  background: var(--bg-header-top);
}

.layout-header-top {
  height: 4.5rem;
  background: var(--bg-header-top);
}

.layout-header-top-content {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.component-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.component-logo img {
  width: 12.5rem;
  height: auto;
}

.layout-header-info {
  display: flex;
  align-items: center;
  gap: 1.38rem;
  margin-left: auto;
  margin-right: 2.25rem;
}

.component-header-contact,
.component-header-sac,
.component-header-service {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 1.75rem;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.component-header-contact i,
.component-header-contact svg,
.component-header-service i,
.component-header-service svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--brand-primary);
  stroke-width: 2.2;
}

.component-header-contact span {
  font-weight: 800;
  color: #ffffff;
}

.component-header-sac {
  gap: 0.5rem;
}

.component-header-sac span {
  color: var(--brand-primary);
  font-weight: 500;
}

.component-header-sac strong {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.component-header-divider {
  width: 1px;
  height: 1.125rem;
  background: rgba(255, 255, 255, 0.08);
}

.layout-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.component-search-form {
  width: 12.8rem;
  height: 2.25rem;
  padding: 0 0.8rem;
  border-radius: 0.25rem;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.component-search-form i,
.component-search-form svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #6e879a;
  stroke-width: 2;
  flex-shrink: 0;
}

.component-search-form input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 500;
}

.component-search-form input::placeholder {
  color: #a7b5c3;
}

.button-login {
  height: 2.25rem;
  min-width: 6.25rem;
  padding: 0 1rem;
  border-radius: 0.25rem;
  background: linear-gradient(135deg, #237ec0 0%, #56bfd8 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.button-login i,
.button-login svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.4;
}

.button-login:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.button-login-mobile {
  display: none;
}

.layout-header-bottom {
  height: 49px;
  background: var(--bg-header-bottom);
}

.layout-nav {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.layout-nav-menu {
  height: 100%;
  display: flex;
  align-items: center;
}

.component-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.component-menu a {
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 800;
  color: #aebccb;
  transition: color 0.2s ease;
}

.component-menu a:hover {
  color: #ffffff;
}

.layout-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.component-find-doctor,
.component-quick-access {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: #aebccb;
  transition: color 0.2s ease;
}

.component-find-doctor:hover,
.component-quick-access:hover {
  color: #ffffff;
}

.component-find-doctor i,
.component-find-doctor svg {
  width: 15px;
  height: 15px;
  color: var(--brand-primary);
  stroke-width: 2.2;
}

.component-quick-access i,
.component-quick-access svg {
  width: 13px;
  height: 13px;
  color: #7893a7;
}

/* =============================== HERO =============================== */

.layout-hero {
  position: relative;
  min-height: 628px;
  background:
    radial-gradient(circle at 55% 58%, rgba(44, 114, 151, 0.18) 0%, rgba(44, 114, 151, 0.08) 25%, rgba(8, 35, 55, 0) 52%),
    linear-gradient(180deg, #082337 0%, #082337 100%);
  overflow: hidden;
  isolation: isolate;
}

.layout-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #082337 0%, rgba(8, 35, 55, 0.98) 27%, rgba(8, 35, 55, 0.86) 43%, rgba(8, 35, 55, 0.54) 62%, rgba(8, 35, 55, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 35, 55, 0.38) 0%, rgba(85, 192, 219, 0.22) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.03);
  opacity: 0.92;
  pointer-events: none;
}

.layout-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 48%, rgba(85, 192, 219, 0.18) 0%, rgba(85, 192, 219, 0.07) 28%, rgba(85, 192, 219, 0) 57%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.layout-hero-shape {
  position: absolute;
  right: 16%;
  top: 110px;
  z-index: 1;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(85, 192, 219, 0.08) 0%, rgba(85, 192, 219, 0.035) 35%, rgba(85, 192, 219, 0) 70%);
  pointer-events: none;
}

.layout-hero-content {
  position: relative;
  z-index: 2;
  min-height: 628px;
  display: flex;
  align-items: center;
}

.layout-hero-text {
  width: 100%;
  max-width: 980px;
  padding-top: 5px;
}

.component-tag {
  display: inline-block;
  margin-bottom: 2.58rem;
  font-size: 0.77rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #80a8bf;
}

.layout-hero h1 {
  max-width: 980px;
  margin: 0 0 2rem;
  font-size: 5.12rem;
  line-height: 0.99;
  font-weight: 400;
  letter-spacing: -0.078em;
  color: #ffffff;
}

.layout-hero h1 span {
  color: var(--brand-primary);
  font-weight: 500;
}

.component-hero-description {
  max-width: 680px;
  margin: 0 0 3.35rem;
  font-size: 1.29rem;
  line-height: 1.35;
  font-weight: 500;
  color: #aebccb;
}

.layout-hero-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button-primary {
  min-height: 48px;
  padding: 0 1.75rem;
  border-radius: 4px;
  background: var(--brand-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button-primary i,
.button-primary svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.button-primary:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-1px);
}

.button-link {
  position: relative;
  padding-bottom: 0.48rem;
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  transition: color 0.2s ease;
}

.button-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 101px;
  height: 1px;
  background: rgba(117, 153, 176, 0.48);
}

.button-link:hover {
  color: var(--brand-primary);
}

.layout-hero-strip {
  height: 49px;
  background: #082337;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.layout-hero-strip-content {
  height: 49px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.component-strip-item {
  display: flex;
  align-items: center;
}

.component-strip-item:nth-child(1) {
  justify-content: flex-start;
}

.component-strip-item:nth-child(3),
.component-strip-item:nth-child(5) {
  justify-content: center;
}

.component-strip-item:nth-child(7) {
  justify-content: flex-end;
}

.component-strip-item span {
  font-size: 0.77rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7e9db2;
}

.component-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(126, 157, 178, 0.42);
}

/* =============================== WHY SECTION =============================== */

.layout-why {
  width: 100%;
  padding: 5.9rem 0 4.55rem;
  background: #f7f9fb;
}

.layout-why-heading {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto 4.35rem;
  text-align: center;
}

.component-section-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #126eb5;
}

.layout-why-heading h2 {
  max-width: 100%;
  margin: 0 0 0.85rem;
  font-size: 3.1rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: #061d35;
  white-space: nowrap;
}

.layout-why-heading h2 span {
  color: #2c83be;
  font-weight: 600;
}

.layout-why-heading p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.48;
  font-weight: 400;
  color: #526a87;
}

.layout-why-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.55rem;
}

.component-why-card {
  min-height: 10.95rem;
  padding: 1.78rem 1.75rem 1.65rem;
  border: 1px solid #d9e1ea;
  border-radius: 0.18rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.component-why-card:hover {
  transform: translateY(-0.15rem);
  border-color: rgba(18, 110, 181, 0.32);
  box-shadow: 0 1.2rem 2.2rem rgba(6, 29, 53, 0.06);
}

.component-why-icon {
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1.55rem;
  border-radius: 0.25rem;
  background: #e8f0f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.component-why-icon i,
.component-why-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  color: #1477bd;
  stroke-width: 2.25;
}

.component-why-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #061d35;
}

.component-why-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 400;
  color: #526a87;
}

/* =============================== COMPARISON SECTION =============================== */

.layout-comparison {
  width: 100%;
  padding: 4.35rem 0 3.55rem;
  background: #ffffff;
}

.layout-comparison-heading {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto 4.65rem;
  text-align: center;
}

.layout-comparison-heading .component-section-label {
  margin-bottom: 0.8rem;
}

.layout-comparison-heading h2 {
  margin: 0 0 0.75rem;
  font-size: 3.05rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: #061d35;
}

.layout-comparison-heading h2 span {
  color: #3f9fcb;
  font-weight: 600;
}

.layout-comparison-heading p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 500;
  color: #526a87;
}

.layout-comparison-table {
  width: 100%;
  max-width: 46.95rem;
  margin: 0 auto;
}

.component-comparison-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 0 1.5rem 0.95rem;
}

.component-comparison-header span {
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #526a87;
}

.component-comparison-header span:nth-child(2),
.component-comparison-header span:nth-child(3) {
  text-align: center;
}

.component-comparison-header span:nth-child(3) {
  color: #126eb5;
}

.component-comparison-row {
  min-height: 4.2rem;
  margin-bottom: 0.52rem;
  padding: 0 1.5rem;
  border: 1px solid #d9e1ea;
  border-radius: 0.22rem;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}

.component-comparison-row-highlight {
  background: #eef3f9;
  border-color: #c9d9ea;
}

.component-comparison-service {
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 700;
  color: #061d35;
}

.component-comparison-private {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 500;
  color: #526a87;
}

.component-comparison-private::after {
  content: "";
  position: absolute;
  left: -0.1rem;
  right: -0.1rem;
  top: 50%;
  height: 1px;
  background: #526a87;
  transform: translateY(-50%);
}

.component-comparison-somos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 800;
  color: #126eb5;
}

.component-free-badge {
  padding: 0.22rem 0.45rem;
  border-radius: 0.2rem;
  background: #d8edf7;
  color: #55a8d4;
  font-size: 0.64rem;
  line-height: 1;
  font-weight: 800;
}

.component-economy-box {
  width: 100%;
  max-width: 46.95rem;
  min-height: 6.25rem;
  margin: 1.95rem auto 0;
  border-radius: 0.22rem;
  background: #082337;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.component-economy-box span {
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
  line-height: 1;
  font-weight: 600;
  color: #a8bac9;
}

.component-economy-box strong {
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #55c0db;
}

/* =============================== HOW SECTION =============================== */

.layout-how {
  width: 100%;
  padding: 8.35rem 0 7.9rem;
  background: #f3f7fb;
}

.layout-how-heading {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.layout-how-heading .component-section-label {
  margin-bottom: 0.9rem;
}

.layout-how-heading h2 {
  margin: 0;
  font-size: 3.05rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: #061d35;
}

.layout-how-heading h2 span {
  color: #3f9fcb;
  font-weight: 600;
}

.layout-how-steps {
  position: relative;
  width: 100%;
  margin-top: 3.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2rem;
}

.layout-how-steps::before {
  content: "";
  position: absolute;
  left: 16.6%;
  right: 16.6%;
  top: 1.5rem;
  height: 1px;
  background: #d7e1ea;
}

.component-how-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.component-how-number {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #247fbe 0%, #55c0db 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
}

.component-how-step h3 {
  margin: 0 0 0.95rem;
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #061d35;
}

.component-how-step p {
  margin: 0 auto;
  max-width: 18rem;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 500;
  color: #526a87;
}

/* =============================== PLANS SECTION =============================== */

.layout-plans {
  width: 100%;
  padding: 5.45rem 0 6.55rem;
  background: #ffffff;
}

.layout-plans-heading {
  width: 100%;
  max-width: 61rem;
  margin: 0 auto 3.75rem;
  text-align: center;
}

.layout-plans-heading .component-section-label {
  margin-bottom: 0.9rem;
}

.layout-plans-heading h2 {
  margin: 0;
  font-size: 3.05rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: #061d35;
}

.layout-plans-heading h2 span {
  color: #3f9fcb;
  font-weight: 600;
}

.layout-plans-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.component-plan-card {
  position: relative;
  min-height: 26.95rem;
  padding: 1.75rem;
  border: 1px solid #d9e1ea;
  border-radius: 0.18rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #061d35;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.component-plan-card:hover {
  transform: translateY(-0.15rem);
  border-color: rgba(18, 110, 181, 0.32);
  box-shadow: 0 1.2rem 2.2rem rgba(6, 29, 53, 0.06);
}

.component-plan-card-featured {
  background: #082337;
  border-color: #126eb5;
  color: #ffffff;
  box-shadow: 0 1.5rem 2.8rem rgba(8, 35, 55, 0.14);
}

.component-plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  height: 1.45rem;
  padding: 0 0.75rem;
  border-radius: 0.18rem;
  background: linear-gradient(135deg, #247fbe 0%, #55c0db 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.component-plan-content {
  width: 100%;
}

.component-plan-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #061d35;
}

.component-plan-card-featured h3 {
  color: #ffffff;
}

.component-plan-description {
  min-height: 2.65rem;
  margin: 0 0 1.45rem;
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 500;
  color: #526a87;
}

.component-plan-card-featured .component-plan-description {
  color: #a8bac9;
}

.component-plan-price {
  margin-bottom: 1.45rem;
  display: flex;
  align-items: flex-end;
  color: #061d35;
}

.component-plan-price span {
  margin: 0 0.22rem 0.42rem 0;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 500;
  color: #526a87;
}

.component-plan-price strong {
  font-size: 2.15rem;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #061d35;
}

.component-plan-price small {
  margin: 0 0 0.25rem 0.15rem;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  color: #526a87;
}

.component-plan-card-featured .component-plan-price span,
.component-plan-card-featured .component-plan-price small {
  color: #a8bac9;
}

.component-plan-card-featured .component-plan-price strong {
  color: #55c0db;
}

.component-plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.component-plan-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  line-height: 1.25;
  font-weight: 500;
  color: #061d35;
}

.component-plan-card-featured .component-plan-list li {
  color: #ffffff;
}

.component-plan-list i,
.component-plan-list svg {
  width: 0.86rem;
  height: 0.86rem;
  color: #126eb5;
  stroke-width: 2.35;
  flex-shrink: 0;
}

.component-plan-card-featured .component-plan-list i,
.component-plan-card-featured .component-plan-list svg {
  color: #55c0db;
}

.button-plan {
  width: 100%;
  height: 2.85rem;
  margin-top: 2.15rem;
  border-radius: 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.button-plan svg,
.button-plan i {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.4;
}

.button-plan-outline {
  border: 1px solid #126eb5;
  background: transparent;
  color: #126eb5;
}

.button-plan-outline:hover {
  background: rgba(18, 110, 181, 0.06);
  transform: translateY(-1px);
}

.button-plan-filled {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #247fbe 0%, #55c0db 100%);
  color: #ffffff;
}

.button-plan-filled:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

/* =============================== DIGITAL SECTION =============================== */

.layout-digital {
  width: 100%;
  padding: 4.8rem 0 7.45rem;
  background: #f3f7fb;
}

.layout-digital-heading {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto 4.25rem;
  text-align: center;
}

.layout-digital-heading .component-section-label {
  margin-bottom: 0.85rem;
}

.layout-digital-heading h2 {
  margin: 0 0 0.85rem;
  font-size: 3.05rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: #061d35;
}

.layout-digital-heading h2 span {
  color: #3f9fcb;
  font-weight: 600;
}

.layout-digital-heading p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 500;
  color: #526a87;
}

.component-app-preview {
  width: 100%;
  max-width: 55.9rem;
  min-height: 26.55rem;
  margin: 0 auto;
  border: 1px solid #d9e1ea;
  border-radius: 0.35rem;
  background: #ffffff;
  display: grid;
  grid-template-columns: 14rem 1fr;
  overflow: hidden;
  box-shadow: 0 1.7rem 3.6rem rgba(6, 29, 53, 0.09);
}

.component-app-sidebar {
  background: #082337;
  padding: 1.35rem 1rem;
}

.component-app-brand {
  margin: 0 0 1.45rem 0.5rem;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  color: #55c0db;
}

.component-app-menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.component-app-menu-item {
  min-height: 2.48rem;
  padding: 0 0.75rem;
  border-radius: 0.22rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  line-height: 1;
  font-weight: 500;
  color: #a8bac9;
  transition: background 0.2s ease, color 0.2s ease;
}

.component-app-menu-item i,
.component-app-menu-item svg {
  width: 0.92rem;
  height: 0.92rem;
  color: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}

.component-app-menu-item.active {
  background: #164a70;
  color: #55c0db;
}

.component-app-menu-item:hover {
  background: rgba(85, 192, 219, 0.09);
  color: #55c0db;
}

.component-app-content {
  padding: 1.6rem 1.5rem;
  background: #ffffff;
}

.component-app-top {
  margin-bottom: 1.7rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.component-app-top span {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  color: #526a87;
}

.component-app-top h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #061d35;
}

.component-app-user {
  width: 2.05rem;
  height: 2.05rem;
  border: 0;
  border-radius: 50%;
  background: #e8f0f7;
  color: #126eb5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.component-app-user i,
.component-app-user svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.2;
}

.component-app-wallet {
  min-height: 5.6rem;
  padding: 1.15rem 1rem;
  border-radius: 0.22rem;
  background: #082337;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.component-app-wallet span {
  display: inline-block;
  margin-bottom: 0.3rem;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 500;
  color: #a8bac9;
}

.component-app-wallet h4 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.component-app-wallet p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
  color: #55c0db;
}

.component-app-wallet > strong {
  padding: 0.42rem 0.65rem;
  border-radius: 0.22rem;
  background: rgba(85, 192, 219, 0.11);
  color: #55c0db;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 800;
}

/* =============================== FINAL CTA =============================== */

.layout-final-cta {
  width: 100%;
  min-height: 34.75rem;
  padding: 8.25rem 0 6.35rem;
  background:
    radial-gradient(circle at 50% 32%, rgba(85, 192, 219, 0.045) 0%, rgba(85, 192, 219, 0.018) 28%, rgba(8, 35, 55, 0) 56%),
    #082337;
  display: flex;
  align-items: center;
}

.layout-final-cta-content {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.layout-final-cta-content .component-section-label {
  margin-bottom: 1.75rem;
  color: #55c0db;
}

.layout-final-cta-content h2 {
  margin: 0 0 1.25rem;
  font-size: 3rem;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.layout-final-cta-content h2 span {
  color: #2f8cc8;
  font-weight: 600;
}

.layout-final-cta-content p {
  margin: 0 auto;
  max-width: 45rem;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
  color: #a8bac9;
}

.layout-final-cta-tags {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.layout-final-cta-tags span {
  min-width: 6.45rem;
  height: 2.35rem;
  padding: 0 1rem;
  border: 1px solid rgba(85, 192, 219, 0.28);
  border-radius: 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #55c0db;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
}

/* =============================== FOOTER =============================== */

.layout-footer {
  width: 100%;
  min-height: 7.55rem;
  border-top: 1px solid rgba(85, 192, 219, 0.22);
  background: #082337;
  display: flex;
  align-items: center;
}

.layout-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.component-footer-logo {
  width: 12.5rem;
  display: inline-flex;
  align-items: center;
}

.component-footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.layout-footer p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 500;
  color: #718da3;
}

/* =============================== MENU MOBILE =============================== */

.component-mobile-menu-button {
  display: none;
}

/* =============================== RESPONSIVO - 1400px =============================== */

@media (max-width: 1400px) {
  .layout-container {
    width: min(calc(100% - 2rem), 1320px);
  }

  .layout-hero-text {
    max-width: 980px;
  }

  .layout-hero h1 {
    max-width: 980px;
    font-size: 4.75rem;
  }

  .component-hero-description {
    font-size: 1.18rem;
  }

  .layout-why-heading h2 {
    font-size: 2.85rem;
  }

  .layout-plans-heading h2 {
    font-size: 2.9rem;
  }

  .layout-plans-grid {
    gap: 1rem;
  }

  .component-plan-card {
    padding: 1.55rem;
  }
}

/* =============================== RESPONSIVO - 1200px =============================== */

@media (max-width: 1200px) {
  .layout-header-info {
    gap: 1rem;
    margin-right: 1.4rem;
  }

  .component-search-form {
    width: 11rem;
  }

  .component-menu {
    gap: 1.6rem;
  }

  .layout-hero h1 {
    max-width: 900px;
    font-size: 4.2rem;
  }

  .layout-why-grid {
    gap: 1.35rem;
  }

  .component-why-card {
    padding: 1.55rem;
  }

  .layout-why-heading h2,
  .layout-plans-heading h2 {
    white-space: normal;
    font-size: clamp(2.45rem, 4vw, 3rem);
  }

  .layout-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .component-plan-card {
    min-height: 25.5rem;
  }
}

/* =============================== RESPONSIVO - 1100px =============================== */

@media (max-width: 1100px) {
  .layout-header-info {
    display: none;
  }

  .layout-header-actions {
    margin-left: auto;
  }

  .layout-hero,
  .layout-hero-content {
    min-height: 590px;
  }
}

/* =============================== RESPONSIVO - 900px =============================== */

@media (max-width: 900px) {
  .layout-header-bottom {
    height: auto;
  }

  .layout-nav {
    height: auto;
    min-height: 54px;
    padding: 0.9rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .component-menu {
    flex-wrap: wrap;
    gap: 1.1rem 1.5rem;
  }

  .layout-nav-actions {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .layout-hero {
    min-height: auto;
    padding: 5rem 0;
  }

  .layout-hero-content {
    min-height: auto;
  }

  .layout-hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  .component-tag {
    margin-bottom: 1.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
  }

  .component-hero-description {
    margin-bottom: 2.4rem;
    font-size: 1rem;
  }

  .layout-hero-strip {
    height: auto;
  }

  .layout-hero-strip-content {
    height: auto;
    padding: 1.1rem 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .component-strip-dot {
    display: none;
  }

  .component-strip-item,
  .component-strip-item:nth-child(1),
  .component-strip-item:nth-child(3),
  .component-strip-item:nth-child(5),
  .component-strip-item:nth-child(7) {
    justify-content: flex-start;
  }

  .layout-why {
    padding: 4.8rem 0 4rem;
  }

  .layout-why-heading {
    margin-bottom: 3.2rem;
  }

  .layout-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-why-heading p br {
    display: none;
  }

  .layout-comparison {
    padding: 4rem 0 3.5rem;
  }

  .layout-comparison-heading {
    margin-bottom: 3.2rem;
  }

  .layout-comparison-heading h2 {
    font-size: clamp(2.35rem, 7vw, 3rem);
  }

  .layout-how {
    padding: 5.2rem 0;
  }

  .layout-how-heading {
    margin-bottom: 3rem;
  }

  .layout-how-heading h2 {
    font-size: clamp(2.35rem, 7vw, 3rem);
  }

  .layout-how-steps {
    margin-top: 3rem;
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }

  .layout-how-steps::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
  }

  .component-how-step {
    background: #f3f7fb;
  }

  .component-how-number {
    margin-bottom: 1.35rem;
  }

  .component-how-step p br {
    display: none;
  }

  .layout-plans {
    padding: 4.8rem 0 5rem;
  }

  .layout-plans-heading {
    margin-bottom: 3.2rem;
  }

  .layout-digital {
    padding: 4.8rem 0 5rem;
  }

  .layout-digital-heading {
    margin-bottom: 3.2rem;
  }

  .layout-digital-heading h2 {
    font-size: clamp(2.35rem, 7vw, 3rem);
  }

  .component-app-preview {
    grid-template-columns: 12rem 1fr;
  }

  .layout-final-cta {
    min-height: auto;
    padding: 5.5rem 0;
  }

  .layout-final-cta-content h2 {
    font-size: clamp(2.35rem, 7vw, 3rem);
  }

  .layout-final-cta-content p br {
    display: none;
  }

  .layout-final-cta-tags {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .layout-footer {
    min-height: auto;
    padding: 2rem 0;
  }

  .layout-footer-content {
    gap: 1.5rem;
  }
}

/* =============================== RESPONSIVO MENU MOBILE =============================== */

@media (max-width: 768px) {
  .layout-header {
    position: relative;
    background: #082337;
  }

  .layout-header-top {
    height: auto;
    background: #082337;
  }

  .layout-header-top-content {
    width: min(calc(100% - 2rem), var(--container-width));
    min-height: 4.6rem;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .component-logo {
    max-width: calc(100% - 2.4rem);
    overflow: hidden;
  }

  .component-logo img {
    width: 9.6rem;
    max-width: 100%;
    height: auto;
  }

  .component-mobile-menu-button {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .component-mobile-menu-button svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke-width: 2.3;
  }

  .layout-header-info,
  .layout-header-actions {
    display: none;
  }

  .layout-header-bottom {
    display: block;
    height: 2.65rem;
    background: #113854;
  }

  .layout-header:not(.layout-header-menu-open) .layout-nav {
    display: none;
  }

  .layout-header.layout-header-menu-open .layout-header-bottom {
    height: auto;
    background: #082337;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .layout-header.layout-header-menu-open .layout-nav {
    width: min(calc(100% - 2rem), var(--container-width));
    height: auto;
    min-height: initial;
    padding: 1.35rem 0 1.45rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .layout-header.layout-header-menu-open .layout-nav-menu {
    width: 100%;
    height: auto;
  }

  .layout-header.layout-header-menu-open .component-menu {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .layout-header.layout-header-menu-open .component-menu li {
    width: 100%;
  }

  .layout-header.layout-header-menu-open .component-menu a {
    width: fit-content;
    display: inline-flex;
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 500;
    color: #c6d7e5;
  }

  .layout-header.layout-header-menu-open .component-menu a:hover {
    color: #ffffff;
  }

  .layout-header.layout-header-menu-open .layout-nav-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.95rem;
  }

  .layout-header.layout-header-menu-open .component-find-doctor,
  .layout-header.layout-header-menu-open .component-quick-access {
    display: none;
  }

  .layout-header.layout-header-menu-open .layout-nav-actions::before {
    content: "0800 123 4567";
    display: block;
    font-size: 0.88rem;
    line-height: 1;
    font-weight: 500;
    color: #78a4bd;
  }

  .layout-header.layout-header-menu-open .button-login-mobile {
    width: 5.1rem;
    height: 2.4rem;
    min-width: initial;
    padding: 0;
    border-radius: 0.25rem;
    background: linear-gradient(135deg, #237ec0 0%, #56bfd8 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    line-height: 1;
    font-weight: 800;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 50;
  }

  .layout-hero {
    padding: 3.5rem 0 4rem;
  }

  .layout-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 35, 55, 0.98) 0%, rgba(8, 35, 55, 0.9) 55%, rgba(8, 35, 55, 0.66) 100%),
      linear-gradient(0deg, rgba(8, 35, 55, 0.55) 0%, rgba(85, 192, 219, 0.2) 100%),
      var(--hero-image);
    background-size: cover;
    background-position: 62% center;
    opacity: 0.48;
  }

  .layout-hero::after,
  .layout-hero-shape {
    display: none;
  }

  .layout-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    letter-spacing: -0.055em;
  }

  .component-tag {
    max-width: 100%;
    margin-bottom: 1.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
  }

  .component-hero-description br {
    display: none;
  }

  .layout-hero-buttons {
    gap: 1.4rem;
    flex-wrap: wrap;
  }

  .button-primary {
    min-height: 46px;
    padding: 0 1.35rem;
  }
}

/* =============================== RESPONSIVO - 767px =============================== */

@media (max-width: 767px) {
  .layout-container {
    width: min(calc(100% - 1.5rem), var(--container-width));
  }

  .layout-why-heading,
  .layout-comparison-heading,
  .layout-how-heading,
  .layout-plans-heading,
  .layout-digital-heading {
    max-width: 100%;
  }

  .layout-why-heading {
    margin-bottom: 2.5rem;
  }

  .component-section-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .layout-why-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    letter-spacing: -0.045em;
  }

  .layout-why-heading p {
    font-size: 0.98rem;
  }

  .layout-why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .component-why-card {
    min-height: auto;
    padding: 1.45rem;
  }

  .component-why-icon {
    margin-bottom: 1.3rem;
  }

  .layout-comparison {
    padding: 3.8rem 0 3.2rem;
  }

  .layout-comparison-heading {
    margin-bottom: 2.7rem;
  }

  .layout-comparison-heading h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    letter-spacing: -0.045em;
  }

  .layout-comparison-heading p {
    font-size: 0.96rem;
  }

  .layout-comparison-heading p br {
    display: none;
  }

  .component-comparison-header {
    grid-template-columns: 1.25fr 0.85fr 0.9fr;
    padding: 0 0.9rem 0.85rem;
  }

  .component-comparison-header span {
    font-size: 0.68rem;
  }

  .component-comparison-row {
    grid-template-columns: 1.25fr 0.85fr 0.9fr;
    min-height: 4.35rem;
    padding: 0 0.9rem;
  }

  .component-comparison-service {
    font-size: 0.78rem;
  }

  .component-comparison-private {
    font-size: 0.78rem;
  }

  .component-comparison-somos {
    font-size: 0.92rem;
  }

  .component-free-badge {
    font-size: 0.58rem;
    padding: 0.2rem 0.35rem;
  }

  .component-economy-box {
    min-height: 5.7rem;
    margin-top: 1.6rem;
  }

  .component-economy-box strong {
    font-size: 1.55rem;
  }

  .layout-how {
    padding: 4rem 0;
  }

  .layout-how-heading {
    margin-bottom: 2.5rem;
  }

  .layout-how-heading h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    letter-spacing: -0.045em;
  }

  .component-how-step h3 {
    font-size: 1.05rem;
  }

  .component-how-step p {
    font-size: 0.84rem;
  }

  .layout-plans {
    padding: 4rem 0;
  }

  .layout-plans-heading {
    margin-bottom: 2.7rem;
  }

  .layout-plans-heading h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    letter-spacing: -0.045em;
  }

  .layout-plans-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .component-plan-card {
    min-height: auto;
    padding: 1.45rem;
  }

  .component-plan-description br {
    display: none;
  }

  .button-plan {
    margin-top: 1.8rem;
  }

  .layout-digital {
    padding: 4rem 0;
  }

  .layout-digital-heading {
    margin-bottom: 2.7rem;
  }

  .layout-digital-heading h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    letter-spacing: -0.045em;
  }

  .layout-digital-heading p {
    font-size: 0.96rem;
  }

  .component-app-preview {
    grid-template-columns: 1fr;
  }

  .component-app-sidebar {
    padding: 1rem;
  }

  .component-app-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-final-cta {
    padding: 4.5rem 0;
  }

  .layout-final-cta-content {
    max-width: 100%;
  }

  .layout-final-cta-content .component-section-label {
    margin-bottom: 1.3rem;
  }

  .layout-final-cta-content h2 {
    font-size: clamp(2.05rem, 9vw, 2.65rem);
    letter-spacing: -0.045em;
  }

  .layout-final-cta-content p {
    font-size: 0.96rem;
  }

  .layout-final-cta-tags {
    margin-top: 2rem;
  }

  .layout-footer-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .component-footer-logo {
    width: 7.5rem;
  }

  .layout-footer p {
    line-height: 1.45;
  }
}

/* =============================== RESPONSIVO - 520px =============================== */

@media (max-width: 520px) {
  .layout-header-top-content {
    width: min(calc(100% - 1.6rem), var(--container-width));
    min-height: 4.25rem;
    gap: 0.55rem;
  }

  .component-logo {
    max-width: calc(100% - 2.1rem);
  }

  .component-logo img {
    width: 8.35rem;
  }

  .component-mobile-menu-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .layout-header-bottom {
    height: 2.45rem;
  }

  .layout-header.layout-header-menu-open .layout-nav {
    width: min(calc(100% - 1.6rem), var(--container-width));
    padding: 1.35rem 0 1.45rem;
    gap: 1.25rem;
  }

  .layout-header.layout-header-menu-open .component-menu {
    gap: 1rem;
  }

  .layout-header.layout-header-menu-open .component-menu a {
    font-size: 0.9rem;
  }

  .layout-header.layout-header-menu-open .layout-nav-actions::before {
    font-size: 0.84rem;
  }

  .layout-header.layout-header-menu-open .button-login-mobile {
    width: 4.9rem;
    height: 2.35rem;
    font-size: 0.86rem;
  }

  .layout-hero {
    padding: 3.2rem 0 3.8rem;
  }

  .layout-hero h1 {
    max-width: 100%;
    font-size: 2.35rem;
  }

  .component-hero-description {
    font-size: 0.95rem;
  }

  .layout-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-primary {
    width: 100%;
  }

  .layout-hero-strip-content {
    grid-template-columns: 1fr;
  }

  .layout-why {
    padding: 3.5rem 0 3rem;
  }

  .layout-why-heading h2,
  .layout-how-heading h2,
  .layout-plans-heading h2,
  .layout-digital-heading h2,
  .layout-final-cta-content h2 {
    font-size: 2.1rem;
  }

  .layout-why-heading p {
    font-size: 0.95rem;
  }

  .component-why-card h3 {
    font-size: 1rem;
  }

  .component-why-card p {
    font-size: 0.84rem;
  }

  .component-comparison-header {
    display: none;
  }

  .component-comparison-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 1.1rem;
  }

  .component-comparison-private {
    margin: 0;
  }

  .component-comparison-somos {
    justify-content: flex-start;
  }

  .layout-how {
    padding: 3.5rem 0;
  }

  .layout-how-steps {
    row-gap: 2.5rem;
  }

  .component-how-number {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.95rem;
  }

  .layout-plans {
    padding: 3.5rem 0;
  }

  .component-plan-price strong {
    font-size: 2rem;
  }

  .component-plan-list li {
    font-size: 0.82rem;
  }

  .layout-digital {
    padding: 3.5rem 0;
  }

  .component-app-content {
    padding: 1.2rem;
  }

  .component-app-wallet {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .component-app-wallet > strong {
    align-self: flex-start;
  }

  .component-app-menu {
    grid-template-columns: 1fr;
  }

  .layout-final-cta {
    padding: 4rem 0;
  }

  .layout-final-cta-tags {
    flex-direction: column;
  }

  .layout-final-cta-tags span {
    width: 100%;
    max-width: 14rem;
  }
}

/* =============================== RESPONSIVO - 390px =============================== */

@media (max-width: 390px) {
  .layout-header-top-content {
    width: min(calc(100% - 1.2rem), var(--container-width));
    min-height: 4rem;
  }

  .component-logo img {
    width: 7.65rem;
  }

  .component-mobile-menu-button svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .layout-header-bottom {
    height: 2.3rem;
  }
}