@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root {
  --aqua: #23d2c5;
  --teal: #12a5d6;
  --deep: #0f2f36;
  --muted: #587479;
  --bg: #f5fbfb;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(5, 48, 55, 0.12);
  --icon-accent: #61CB94;
  --icon-accent-filter: brightness(0) saturate(100%) invert(73%) sepia(20%) saturate(884%) hue-rotate(93deg) brightness(92%) contrast(90%);
}

html {
  scroll-padding-top: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 15% 0%, rgba(35, 210, 197, 0.12), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(18, 165, 214, 0.14), transparent 35%),
    var(--bg);
  color: var(--deep);
  overflow-x: hidden !important;
}

h1 {
  background: linear-gradient(90deg,#1A30B1, #63d192);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  color: #356BA6;
}

a {
  color: inherit;
  text-decoration: none;
}

.is-hidden {
  display: none !important;
}

.inline-link {
  color: #356BA6;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.inline-link:hover {
  opacity: 0.9;
}

img {
  max-width: 100%;
  display: block;
}

img.icon,
.modal-icon,
.sidebar-icon {
  filter: var(--icon-accent-filter);
}

.modal .modal-icon {
  filter: none;
}

.sidebar-card .sidebar-icon {
  filter: none;
}

body.has-site-popup {
  padding-bottom: 110px;
}

.site-popup {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 40px rgba(5, 48, 55, 0.18);
  background: linear-gradient(90deg, rgba(35, 210, 197, 0.92), rgba(18, 165, 214, 0.92));
  color: #fff;
  overflow: visible;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.site-popup-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 52px 18px 18px;
}

.site-popup-media {
  width: 150px;
  height: 96px;
  border-radius: 14px;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 0 0 auto;
}

.site-popup-media img {
  width: auto;
  height: 150px;
  margin-top: -44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
}

.site-popup-copy {
  display: grid;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-popup-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.site-popup-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  opacity: 0.95;
}

.site-popup-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.btn.popup-cta {
  background: linear-gradient(90deg, #0d2745, #076b9c);
  border: 0;
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.btn.popup-cta:hover {
  filter: brightness(1.02);
}

.site-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-popup-close:hover {
  background: rgba(255, 255, 255, 0.26);
}

@media (max-width: 720px) {
  body.has-site-popup {
    padding-bottom: 150px;
  }

  .site-popup-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px 16px 16px;
  }

  .site-popup-media {
    width: 100%;
    height: 68px;
  }

  .site-popup-media img {
    height: 96px;
    margin-top: -18px;
  }

  .site-popup-actions {
    width: 100%;
  }

  .btn.popup-cta {
    width: 100%;
    justify-content: center;
  }
}

.article-detail ul {
  margin: 0;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(15, 47, 54, 0.08);
  border-radius: 999px;
  width: min(1200px, calc(100% - 32px));
  margin: 12px auto;
  box-shadow: 0 16px 32px rgba(5, 48, 55, 0.08);
  transition: padding 0.2s ease, box-shadow 0.2s ease, margin 0.2s ease;
}

.topbar--compact {
  padding: 6px 16px;
  margin: 8px auto;
  box-shadow: 0 10px 20px rgba(5, 48, 55, 0.08);
}

.brand .logo {
  height: 34px;
  transition: height 0.2s ease;
}

.topbar--compact .brand .logo {
  height: 28px;
}

.logo-typing {
  font-weight: 800;
  font-size: 22px;
  color: var(--deep);
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--teal);
  animation: typing 2.4s steps(11, end) infinite alternate, blink 0.8s steps(1, end) infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 150px; }
}

@keyframes blink {
  0% { border-color: rgba(18,165,214,0.8); }
  50% { border-color: transparent; }
  100% { border-color: rgba(18,165,214,0.8); }
}

.barra-1,
.barra-2,
.barra-3,
.barra-4,
.barra-5 {
  transform-origin: bottom;
  transform-box: fill-box;
  transform: scaleY(0);
  animation: subirBarra 0.7s ease-out forwards;
}
.barra-1 { animation-delay: 0.1s; }
.barra-2 { animation-delay: 0.25s; }
.barra-3 { animation-delay: 0.4s; }
.barra-4 { animation-delay: 0.55s; }
.barra-5 { animation-delay: 0.7s; }
@keyframes subirBarra {
  to {
    transform: scaleY(1);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(15, 47, 54, 0.04);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-item {
  position: relative;
}

.nav-link {
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  color: #356BA6;
}

.nav-link:hover,
.nav a:hover {
  background: rgba(35, 210, 197, 0.14);
  color: var(--deep);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(5, 48, 55, 0.06);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 20;
}

.dropdown a {
  padding: 12px 14px;
  font-weight: 600;
  color: #356BA6;
}

.dropdown a:hover {
  background: rgba(35, 210, 197, 0.08);
  color: #356BA6;
}

.nav-item.open .dropdown {
  display: flex;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mobile-header,
.nav-close {
  display: none;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(5, 48, 55, 0.12);
  border-radius: 10px;
  padding: 8px 10px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--aqua), var(--teal));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: rgba(15, 47, 54, 0.04);
  color: var(--deep);
  border-color: rgba(15, 47, 54, 0.06);
}

.btn.large {
  padding: 14px 22px;
  font-size: 18px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.micro {
  font-size: 13px;
}

.hero,
.energy-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 20px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
}

.hero h1,
.energy-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 8px 0 12px;
  line-height: 1.15;
}

.lede {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 20px;
  background: rgba(35, 210, 197, 0.16);
  color: var(--deep);
  font-weight: 700;
  font-size: 13px;
}

.hero-visual {
  display: grid;
  justify-items: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 47, 54, 0.08);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 18px;
  width: min(360px, 100%);
  margin: 0 0 0 auto;
}

.partners-card {
  background: #fff;
  border: 1px solid rgba(15, 47, 54, 0.08);
  box-shadow: var(--shadow);
  border-radius: 16px;
  width: min(420px, 100%);
  margin: 0 0 0 auto;
  overflow: hidden;
}

.partners-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partners-scroll::-webkit-scrollbar {
  display: none;
}

.partners-page {
  scroll-snap-align: start;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-right: 1px solid rgba(15, 47, 54, 0.12);
}

.partners-page:last-child {
  border-right: 0;
}

.partner-tile {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-weight: 800;
  color: #356BA6;
  background: #fff;
  border-bottom: 1px solid rgba(15, 47, 54, 0.12);
  border-left: 1px solid rgba(15, 47, 54, 0.12);
  user-select: none;
}

.partner-logo {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.partners-page .partner-tile:nth-child(odd) {
  border-left: 0;
}

.partners-page .partner-tile:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.partners-hint {
  margin: 0;
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(15, 47, 54, 0.08);
  text-align: center;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.stat-number {
  background: rgba(18, 165, 214, 0.12);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 800;
}

.section-head {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 680px;
  padding: 0 14px;
}

.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.category-pill {
  background: #f4f8fb;
  color: #1f5d89;
  border: 1px solid transparent;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.category-pill.is-active {
  background: #0f2f36;
  color: #fff;
}

.category-pill:hover {
  background: #0f2f36;
  color: #fff;
}

.cards,
.testimonials,
.cta-final {
  max-width: 1200px;
  margin: 10px auto 30px;
  padding: 0 20px;
}

.sim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
}

.sim-card {
  background: var(--white);
  border: 1px solid rgba(15, 47, 54, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(5, 48, 55, 0.08);
  padding: 12px;
  display: grid;
  gap: 5px;
  justify-items: center;
  text-align: center;
  aspect-ratio: 3 / 2;
}

.sim-card .icon {
  width: 46px;
  height: 46px;
  filter: none;
}

.sim-card h3 {
  margin: 4px 0 6px;
}

.sim-card p {
  margin: 0;
  text-wrap: balance;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

@media (max-width: 768px) {
    .promo-slide {
        flex-direction: column;
    }
    .nav-link {
        font-size: 11px;
    }
  .card-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px 6px;
  }

  .card-grid::-webkit-scrollbar {
    display: none;
  }

  .card-grid {
    scrollbar-width: none;
  }

  .card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}

.card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(15, 47, 54, 0.08);
  box-shadow: 0 12px 22px rgba(5, 48, 55, 0.08);
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(5, 48, 55, 0.12);
}

.card .icon {
  width: 80px;
  height: 80px;
  filter: none;
}

.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.testimonial {
  background: linear-gradient(180deg, rgba(35, 210, 197, 0.05), rgba(18, 165, 214, 0.03));
  border: 1px solid rgba(12, 92, 100, 0.18);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(5, 48, 55, 0.06);
}

.quote-icon {
  font-size: 26px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: -6px;
}

.quote {
  margin: 0;
  line-height: 1.5;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(12, 92, 100, 0.12);
  padding-top: 10px;
}

.author {
  margin: 0;
  color: var(--deep);
  font-weight: 700;
}

.testimonial .avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.hero-testimonials {
  background: linear-gradient(160deg, #ffffff 0%, #f2fbff 100%);
  border: 1px solid rgba(18, 165, 214, 0.18);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(15, 47, 54, 0.12);
  margin: 0;
  width: min(420px, 100%);
  justify-self: center;
  overflow: hidden;
}

.hero-testimonials .section-head {
  text-align: center;
  margin: 0 0 12px;
  padding: 0;
}

.hero-testimonials .section-head h2 {
  font-size: 20px;
  margin: 0;
}

.hero-testimonials .section-head p {
  margin: 0;
}

.testimonial-grid.is-carousel {
  position: relative;
  display: block;
  min-height: 260px;
}

.hero-testimonials .testimonial {
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(12, 92, 100, 0.14);
  box-shadow: 0 12px 24px rgba(5, 48, 55, 0.08);
  overflow: hidden;
  padding-bottom: 12px;
}

.hero-testimonials .quote-icon {
  margin: 0 auto -2px;
  color: #1e96d4;
  font-size: 30px;
}

.hero-testimonials .testimonial-footer {
  justify-content: center;
  text-align: center;
}

.hero-testimonials .quote {
  color: #1e3e4d;
}

.hero-testimonials .author {
  color: #0f2f36;
}

.testimonial-grid.is-carousel .testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}

.testimonial-grid.is-carousel .testimonial.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cta-final {
  background: linear-gradient(135deg, rgba(35, 210, 197, 0.2), rgba(18, 165, 214, 0.2));
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 47, 54, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-section {
  max-width: 1000px;
  margin: 10px auto 36px;
  padding: 0 20px;
  text-align: center;
}

.section-block {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(15, 47, 54, 0.08);
  box-shadow: 0 12px 24px rgba(5, 48, 55, 0.06);
  border-radius: 24px;
  padding: 24px;
  margin: 18px 227px;
  min-height: 420px;
  display: grid;
  align-content: center;
}

.section-block.cards,
.section-block.articles-link,
.section-block.faq-section {
  max-width: none;
}

.section-block.section-sim {
  background: rgba(255, 255, 255, 0.4);
}

.section-block.section-articles {
  background: rgba(255, 255, 255, 0.4);
}

.section-block.section-faq {
  background: rgba(255, 255, 255, 0.4);
  padding-top: 32px;
}

.faq-section h2 {
  margin: 0 0 6px;
}

.faq-section .muted {
  margin: 0 0 18px;
}

.promo-band {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.promo-shell {
  display: block;
  min-height: auto;
  padding: 24px;
  margin: 40px auto;
  max-width: 80%;
}

.promo-cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 0;
  display: block;
  min-height: 620px;
  color: #eaf7ff;
  background: #071923;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(5, 28, 40, 0.35);
}

.promo-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.promo-slide {
  position: absolute;
  inset: 0;
  padding: 38px 10%;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-radius: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.promo-slide--seguros {
  background:
    radial-gradient(circle at 20% 10%, rgba(25, 220, 200, 0.32), transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(35, 170, 230, 0.38), transparent 60%),
    linear-gradient(135deg, #08212e 0%, #0b2b3d 45%, #0f3f55 100%);
}

.promo-slide--habitacao {
  background:
    radial-gradient(circle at 18% 12%, rgba(50, 230, 170, 0.34), transparent 58%),
    radial-gradient(circle at 82% 0%, rgba(40, 140, 210, 0.22), transparent 60%),
    linear-gradient(135deg, #082b28 0%, #0c3a35 45%, #105245 100%);
}

.promo-slide--creditos {
  background:
    radial-gradient(circle at 18% 12%, rgba(35, 160, 230, 0.38), transparent 58%),
    radial-gradient(circle at 82% 0%, rgba(20, 210, 190, 0.22), transparent 60%),
    linear-gradient(135deg, #0a2033 0%, #0d2a43 45%, #153b5a 100%);
}

.promo-slide--saude {
  background:
    radial-gradient(circle at 18% 12%, rgba(80, 235, 190, 0.34), transparent 58%),
    radial-gradient(circle at 82% 0%, rgba(120, 220, 255, 0.38), transparent 60%),
    linear-gradient(135deg, #0a2b34 0%, #0e3d4b 45%, #15606d 100%);
}

.promo-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.promo-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.promo-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: #6af0da;
}

.promo-cta h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  color: #ffffff;
}

.promo-cta p {
  margin: 0;
  color: rgba(234, 247, 255, 0.85);
  font-size: 16px;
  max-width: 440px;
}

.promo-btn {
  width: fit-content;
  padding: 12px 24px;
  background: #4ef0c6;
  color: #062029;
  border: 0;
  box-shadow: 0 12px 22px rgba(20, 240, 196, 0.25);
}

.promo-visual {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
}

.promo-toast {
  position: absolute;
  top: 10%;
  left: -70%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: #0f2f36;
  border-radius: 20px;
  padding: 10px 14px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(15, 47, 54, 0.08);
  max-width: 320px;
}

.promo-toast-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.promo-toast-text strong {
  display: block;
  font-size: 13px;
}

.promo-toast-text span {
  display: block;
  font-size: 12px;
  color: #4a5a62;
}

.promo-toast small {
  color: #7a8b97;
  font-weight: 700;
  font-size: 11px;
}

.promo-notification {
  position: absolute;
  top: -10px;
  right: 6%;
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  color: #0f2f36;
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 47, 54, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
}

.promo-message {
  display: grid;
  gap: 4px;
}

.promo-message-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.promo-message-head small {
  color: #7a8b97;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

.promo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(15, 47, 54, 0.15);
}

.promo-message-head strong {
  font-size: 14px;
}

.promo-message span {
  display: block;
  font-size: 12px;
  color: #33515c;
}

.promo-phone {
  width: min(320px, 80vw);
  aspect-ratio: 9 / 16;
  background: #091a22;
  border-radius: 32px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.35);
  display: grid;
}

.promo-phone-screen {
  background: #f8fbfd;
  border-radius: 24px;
  padding: 20px;
  color: #0b2730;
  display: grid;
  align-content: space-between;
}

.promo-phone-dark {
  background: linear-gradient(180deg, #0b1e27 0%, #0f2a36 100%);
  color: #ffffff;
}

.promo-phone-header {
  display: grid;
  gap: 6px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.promo-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.promo-phone-status {
  display: flex;
  gap: 8px;
}

.promo-chat-header {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.promo-chat-header strong {
  font-size: 14px;
  color: #ffffff;
}

.promo-chat-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.promo-chat {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.promo-bubble {
  max-width: 85%;
  background: rgba(255, 255, 255, 0.95);
  color: #0f2f36;
  border-radius: 18px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.promo-bubble-out {
  margin-left: auto;
  background: rgba(52, 148, 255, 0.92);
  color: #ffffff;
}

.promo-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.promo-input-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.promo-phone-date {
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.promo-phone-time {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.promo-notif-stack {
  display: grid;
  gap: 12px;
}

.promo-notif {
  background: rgba(255, 255, 255, 0.9);
  color: #0f2f36;
  border-radius: 18px;
  padding: 12px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.promo-notif-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #e7f6f2;
  color: #0f2f36;
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
}

.promo-notif-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 4px;
}

.promo-notif-head span {
  color: #6c7b84;
  font-weight: 700;
}

.promo-notif-body p {
  margin: 0;
  font-size: 13px;
  color: #20343c;
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 47, 54, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.promo-dot.is-active {
  background: rgba(15, 47, 54, 0.7);
  transform: scale(1.1);
}

.promo-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 16px;
  background: rgba(35, 210, 197, 0.24);
  color: #0b2730;
  font-weight: 700;
  font-size: 12px;
}

.promo-amount {
  margin: 10px 0 6px;
  font-size: 34px;
  font-weight: 800;
}

.promo-period {
  margin: 0;
  color: #1f3942;
  font-size: 14px;
  font-weight: 600;
}

.promo-metric {
  background: rgba(18, 165, 214, 0.16);
  border-radius: 18px;
  padding: 12px 14px;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #0b2730;
}

.promo-metric strong {
  font-size: 18px;
  color: #0f2f36;
}

.soft-panel {
  background: rgba(255, 255, 255, 0.4);
  padding: 20px 30px 50px;
  border-radius: 30px;
  max-width: 80%;
  margin: 40px auto;
}

.soft-panel-actions {
  text-align: center;
  margin-top: 30px;
}

.about-hero {
  padding: 80px 24px 40px;
}

.about-cards {
  padding-top: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #eff7f8;
  border-radius: 18px;
  border: 1px solid rgba(15, 47, 54, 0.08);
  box-shadow: 0 8px 18px rgba(5, 48, 55, 0.06);
  overflow: hidden;
  text-align: left;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 16px;
  color: var(--deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  color: #7aa6b6;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--deep);
}

.faq-answer {
  padding: 0 18px 16px;
  color: #1e3e4d;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.footer-newsletter {
  padding: 18px;
  background: #0f2128;
  border-radius: 18px;
  border: 1px solid rgba(15, 47, 54, 0.08);
  box-shadow: 0 12px 22px rgba(5, 48, 55, 0.12);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.footer-newsletter.footer-newsletter-inline {
  max-width: none;
  margin: 0;
  padding: 22px 26px;
  text-align: left;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  border-radius: 16px;
}

.footer-newsletter-wrap {
  max-width: 1200px;
  margin: 10px auto 30px;
  padding: 0 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-illustration svg {
  width: 180px;
  height: auto;
  display: block;
  margin: 0;
}

.newsletter-content h3 {
  margin: 0 0 10px;
  color: #ffffff;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "input button"
    "consent consent";
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 47, 54, 0.18);
  font: inherit;
  outline: none;
  background: #ffffff;
  grid-area: input;
}

.newsletter-form input:focus {
  border-color: rgba(15, 47, 54, 0.35);
  box-shadow: 0 0 0 3px rgba(15, 47, 54, 0.08);
}

.newsletter-form .btn {
  background: linear-gradient(135deg, var(--aqua), var(--teal));
  color: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  width: auto;
  grid-area: button;
}

.newsletter-consent {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #9bb2bf;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  width: 100%;
  grid-area: consent;
}

.newsletter-consent span {
  white-space: normal;
}

.newsletter-consent input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.newsletter-consent a {
  display: inline;
}
.newsletter-consent a {
  color: #ffffff;
  font-weight: 700;
}

.sidebar-card .newsletter-consent {
  color: var(--muted);
  margin: 8px 0 10px;
}

.sidebar-card .newsletter-consent a {
  color: var(--teal);
  font-weight: 600;
}

.footer {
  background: #0f2128;
  color: #cbd5d9;
  padding: 32px 20px 18px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand {
  display: grid;
  gap: 10px;
  min-width: 200px;
}

.footer-brand .logo {
  height: 32px;
}

.footer-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px 24px;
}

.footer h4 {
  color: #ffffff;
  margin: 0 0 8px;
}

.footer a {
  color: #cbd5d9;
  display: block;
  margin: 4px 0;
}

.footer .newsletter-consent a {
  color: #6fbfe6;
  font-weight: 700;
  display: inline;
}


.footer a:hover {
  color: #23d2c5;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 9px solid #ffffff;
}

.social-circle img {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-bottom {
  max-width: 1200px;
  margin: 12px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #9fb0b7;
  font-size: 13px;
}

/* Modal CTA */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: #ffffff;
  width: min(520px, 100%);
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(5, 48, 55, 0.1);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.modal-close {
  background: transparent;
  border: 0;
  font-size: 20px;
  justify-self: end;
  cursor: pointer;
  color: var(--muted);
}

.modal h3 {
  margin: 0;
}

.modal-list {
  display: grid;
  gap: 10px;
}

.modal-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(5, 48, 55, 0.12);
  background: rgba(245, 251, 251, 0.8);
}

.modal-item:hover {
  border-color: rgba(35, 210, 197, 0.6);
  box-shadow: 0 10px 18px rgba(5, 48, 55, 0.08);
}

.modal-icon {
  width: 36px;
  height: 36px;
}

.modal-text strong {
  display: block;
}

.modal-text span {
  color: var(--muted);
  font-size: 14px;
}

.modal-arrow {
  color: var(--deep);
  font-weight: 800;
}

.modal-form {
  border-top: 1px solid rgba(5, 48, 55, 0.08);
  padding-top: 10px;
  display: grid;
  gap: 8px;
}

.modal-label {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}

.modal-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.modal-inline input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(5, 48, 55, 0.12);
}

.modal-inline .btn {
  padding: 10px 14px;
  border-radius: 10px;
}

.checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox span {
  color: inherit;
}

.checkbox input {
  margin-top: 2px;
}

.modal-form .checkbox a {
  color: inherit;
  font-weight: 600;
}

/* Energia page */
.energy-hero {
  align-items: stretch;
}

.bullet-list {
  padding-left: 18px;
  color: var(--deep);
  line-height: 1.5;
}

.bullet-list li + li {
  margin-top: 4px;
}

.hero-sidecard {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(5, 48, 55, 0.06);
  display: grid;
  gap: 12px;
}

.sidecard-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.sidecard-options .option {
  border: 1px solid rgba(5, 48, 55, 0.08);
  border-radius: 10px;
  padding: 10px;
  background: #f5fbfb;
  font-weight: 700;
  cursor: pointer;
}

.sidecard-options .option.active {
  background: linear-gradient(135deg, var(--aqua), var(--teal));
  color: white;
  border-color: transparent;
}

.mini-form {
  display: grid;
  gap: 10px;
}

.mini-form label {
  display: grid;
  gap: 4px;
  font-weight: 700;
  color: var(--deep);
}

.mini-form input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(5, 48, 55, 0.1);
}

.partners {
  max-width: 1200px;
  margin: 10px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  justify-content: center;
  color: #82969a;
  font-weight: 700;
}

.energy-content {
  max-width: 1200px;
  margin: 10px auto 24px;
  padding: 0 20px;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.copy-block {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(5, 48, 55, 0.06);
  box-shadow: 0 12px 22px rgba(5, 48, 55, 0.08);
}

.pricing-table {
  max-width: 1200px;
  margin: 10px auto 26px;
  padding: 0 20px;
}

.table {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(5, 48, 55, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.table .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 12px 16px;
  gap: 12px;
  align-items: center;
}

.table .row:nth-child(odd) {
  background: rgba(15, 47, 54, 0.02);
}

.table .row.head {
  font-weight: 700;
  background: linear-gradient(135deg, rgba(35, 210, 197, 0.18), rgba(18, 165, 214, 0.16));
}

.calc-section {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 20px;
}

.calc-form {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(5, 48, 55, 0.08);
  box-shadow: 0 14px 26px rgba(5, 48, 55, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: end;
}

.calc-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--deep);
}

.calc-form input,
.calc-form select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(5, 48, 55, 0.1);
}

.calc-result {
  margin-top: 12px;
  background: #f1f9f9;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(5, 48, 55, 0.08);
  font-weight: 700;
  color: var(--deep);
}

.cta-band {
  background: linear-gradient(135deg, #1ccdc0, #12a5d6);
  color: white;
  padding: 40px 20px;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-inner .btn {
  background: white;
  color: #0c5c64;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

/* Artigos */
.articles {
  max-width: 1200px;
  margin: 10px auto 40px;
  padding: 20px 30px 50px 30px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
}

.article-related {
  max-width: 1150px;
  margin: 30px auto 10px;
  padding: 0;
}

.articles-featured {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(240px, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.article-card {
  background: var(--white);
  border: 1px solid rgba(5, 48, 55, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(5, 48, 55, 0.08);
  display: grid;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.article-card.featured {
  grid-template-rows: 1fr auto;
}

.article-card.side {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.article-body {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.article-media {
  min-height: 180px;
  background: #e8f6f6;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.home-articles {
  max-width: 1150px;
  margin: 0 auto;
}

main {
  margin-bottom: 20px;
}
.article-card.small {
  padding-bottom: 10px;
}

.article-card.small h4,
.article-card.small p {
  padding: 0 12px;
}

.article-card.small h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.article-card.small .article-media {
  min-height: 120px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 0 12px 10px;
}

.article-meta span {
  color: var(--muted);
}

.article-link {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}

.pill-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.pill-card .article-media {
  position: relative;
  min-height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  color: #0d5f9a;
  padding: 5px 10px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid rgba(13, 95, 154, 0.3);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-card .article-body {
  padding: 10px;
}

.avatar.mini {
  width: 24px;
  height: 24px;
}

.article-time {
  display: none;
}

.pill-card h4 {
  font-size: 16px;
  margin: 0 0 6px;
}

.gradient-1 { background: linear-gradient(135deg, #23d2c5, #12a5d6); }
.gradient-2 { background: linear-gradient(135deg, #b2f7ef, #7ad0c7); }
.gradient-3 { background: linear-gradient(135deg, #cde6ff, #8cc5f7); }
.gradient-4 { background: linear-gradient(135deg, #ffe1c6, #ffb997); }
.gradient-5 { background: linear-gradient(135deg, #d9d8ff, #a8a7ff); }
.gradient-6 { background: linear-gradient(135deg, #f6d5f7, #fbe9d7); }
.img-cover { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* Artigo detalhe */
.article-detail {
  max-width: 90%;
  margin: 10px auto 40px;
  padding: 0 10px;
  background: transparent;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 320px;
  gap: 18px;
  align-items: start;
}

.article-layout.single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.article-main {
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px 30px 50px 30px;
  border-radius: 30px;
}

.article-sidebar {
  display: grid;
  gap: 14px;
}

.article-sidebar .sidebar-card {
  position: sticky;
  top: 20px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(5, 48, 55, 0.08);
}

.sidebar-card.sim-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(12, 92, 100, 0.06), rgba(12, 92, 100, 0.02));
}

.sidebar-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}

.sidebar-card h4,
.sidebar-card p {
  margin: 0 0 10px;
}

.sidebar-card input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(12, 92, 100, 0.4);
  font-size: 14px;
}

.sidebar-card .btn.full {
  width: 100%;
  margin-top: 10px;
}

.topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 6px;
}

.topics-list::-webkit-scrollbar {
  width: 8px;
}

.topics-list::-webkit-scrollbar-thumb {
  background: rgba(12, 92, 100, 0.35);
  border-radius: 10px;
}

.topics-list::-webkit-scrollbar-track {
  background: rgba(12, 92, 100, 0.08);
  border-radius: 10px;
}

.topics-list a {
  color: #0c5c64;
  font-weight: 800;
  text-decoration: none;
}

.topics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
  cursor: pointer;
}

.topics-header .caret {
  font-size: 12px;
  color: var(--muted);
  display: inline-block;
  transition: transform 0.15s ease;
}

.topics-card.collapsed .topics-list {
  display: none;
}

.topics-card.collapsed .caret {
  transform: rotate(180deg);
}

.article-hero {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
}

.article-hero img {
  width: 100%;
  display: block;
}

.article-detail h1 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 8px;
}

.article-detail .article-meta {
  padding: 0;
  margin-bottom: 12px;
}

.article-detail .article-body {
  padding: 10;
  display: grid;
  gap: 8px;
  color: var(--deep);
  line-height: 1.6;
}

.article-detail h2,
.article-detail h3 {
  margin: 10px 0 6px;
  scroll-margin-top: 80px;
}

.article-detail h2 {
  color: #356BA6;
}

@media (max-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 20px;
    align-items: center;
    justify-content: center;
  }

  .topbar {
    top: 0;
    margin: 0;
    width: 100%;
    border-radius: 0 0 18px 18px;
    padding: 12px 16px;
    z-index: 1300;
  }

  .topbar--compact {
    padding: 8px 14px;
  }

  .footer-newsletter {
    text-align: center;
    max-width: 100%;
  }

  .footer-newsletter.footer-newsletter-inline {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-newsletter-wrap {
    padding-bottom: 18px;
  }

  .newsletter-illustration svg {
    margin: 0 auto;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    grid-template-areas:
      "input"
      "button"
      "consent";
  }

  .newsletter-illustration svg {
    margin: 0 auto;
  }

  .table .row {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-featured {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-detail {
    max-width: 100%;
    margin: 16px auto 32px;
    padding: 0 16px;
  }

  .article-layout.single {
    margin: 0;
  }

  .article-main {
    padding: 18px 18px 32px;
    border-radius: 22px;
  }

  .article-hero {
    margin-bottom: 12px;
  }

  .section-block {
    margin: 18px 32px;
    min-height: auto;
    padding: 24px;
  }

  .promo-cta {
    padding: 0;
    min-height: 520px;
  }

  .promo-slide {
    padding: 30px;
  }

  .promo-notification {
    position: static;
    margin-bottom: 12px;
  }

  .promo-visual {
    gap: 12px;
  }

  .promo-toast {
    position: static;
    max-width: none;
  }

  .promo-phone {
    width: min(280px, 90vw);
  }
}

@media (max-width: 600px) {
  .topbar {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .actions {
    margin-left: auto;
  }

  .actions .btn.primary {
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero,
  .energy-hero {
    padding-top: 14px;
  }

  .cta-final {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 18px;
    gap: 14px;
  }

  .table .row {
    grid-template-columns: 1fr;
  }

  .table {
    overflow: visible;
  }

  .table .row.head {
    display: none;
  }

  .table .row [role="cell"] {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 8px;
  }

  .table .row [role="cell"]::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--muted);
  }

  .table .row [role="cell"]:last-child {
    display: none;
  }

  .soft-panel {
    max-width: 100%;
    margin: 24px auto;
    padding: 20px 18px 32px;
  }

  .soft-panel-actions {
    margin-top: 20px;
  }

  .about-hero {
    padding: 32px 18px 28px;
  }

  .about-cards {
    padding-top: 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-width: 0;
  }

  .article-body {
    padding: 12px;
  }

  .article-media {
    min-height: 140px;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-block {
    margin: 16px;
    padding: 20px;
  }

  .section-block.section-faq {
    padding-bottom: 28px;
  }

  .cards,
  .testimonials,
  .cta-final,
  .faq-section {
    padding: 0 16px;
  }

  .hero-testimonials {
    width: 100%;
    padding: 14px;
  }

  .testimonial-grid.is-carousel {
    min-height: 320px;
  }

  .hero-testimonials .testimonial {
    padding: 14px;
  }

  .promo-band {
    margin: 24px auto;
  }

  .promo-cta {
    padding: 0;
    min-height: 560px;
  }

  .promo-slide {
    padding: 24px;
  }

  .promo-cta p {
    max-width: none;
  }

  .promo-notification {
    width: 100%;
    max-width: none;
  }

  .promo-shell {
    max-width: 100%;
    margin: 24px auto;
    padding: 20px;
  }

  .footer-newsletter {
    padding: 16px;
    gap: 12px;
    max-width: 100%;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    grid-template-areas:
      "input"
      "button"
      "consent";
  }
  .newsletter-form .btn {
    width: 100%;
  }
  
  .newsletter-consent input {
      width: 16px;
      height: 16px;
      margin: 0;
    }
    
    .footer-newsletter.footer-newsletter-inline {
        padding: 0;
    }
    
    .checkbox {
        display: inline-block;
        margin-top: 10px;
    }
    .cta-final .btn {
        margin-bottom: 25px;
    }

  .newsletter-consent {
    font-size: 11px;
    line-height: 1.35;
    justify-content: center;
  }

  .newsletter-consent span {
    white-space: nowrap;
  }
  .nav.open {
      flex-direction: column;
  }
  .nav-item, .nav-link {
      width: 100%;
      text-align: left;
  }
  .nav-link {
      padding: 14px 4px;
      display: flex;
      min-height: 48px;
      align-items: center;
      justify-content: space-between;
  }
}
@media (max-width: 414px) {
    .sim-grid {
        display:flex;
        max-width: 100%;
        flex-direction: column;
        aspect-ratio: auto;
    }
    .sim-card {
        aspect-ratio: auto;
    }
}

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 20px 22px 24px;
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1200;
  }

  .nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(15, 47, 54, 0.08);
  }

  .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-link {
    width: 100%;
    padding: 16px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep);
    background: transparent;
    min-height: 48px;
  }

  .nav-link[data-dropdown]::after {
    content: "▾";
    font-size: 16px;
    color: var(--deep);
    transition: transform 0.2s ease;
  }

  .nav-item.open .nav-link[data-dropdown]::after {
    transform: rotate(180deg);
  }

  .dropdown {
    position: static;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 12px 0;
    width: 100%;
    box-sizing: border-box;
  }

  .dropdown a {
    padding: 10px 10px 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #356BA6;
  }

  .nav-link[data-dropdown]::after {
    flex-shrink: 0;
    margin-left: auto;
  }

  .nav-cta {
    margin-top: auto;
    padding-top: 18px;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-mobile-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0 14px;
    margin: 0 0 8px;
    background: #ffffff;
    z-index: 1;
  }

  .nav-mobile-header .brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(15, 47, 54, 0.12);
    background: #ffffff;
    color: var(--deep);
    font-size: 20px;
    cursor: pointer;
  }

}
