/* Root Variables */
:root {
  --primary-color: #1a427a;
  --secondary-color: #2e5c8a;
  --accent-color: #d4af37;
  --bg-color: #ffffff;
  --bg-light: #edf2f7;
  --text-main: #1a202c;
  --text-muted: #4a5568;
  --cta-color: #2bb673;
  --cta-hover: #24a364;
  --border-radius: 12px;
  --shadow-light: 0px 10px 25px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0px 20px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}
@media (max-width: 768px) {
  nav .btn-primary-nav {
    display: inline-flex;
    max-width: calc(100vw - 32px);
    padding: 0.7rem 1.2rem;
    font-size: 0.82rem;
    margin-left: 0;
    white-space: normal;
    text-align: center;
  }
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

img,
svg,
iframe {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.container-narrow {
  max-width: 900px;
}

.center {
  text-align: center;
}

.gray-bg {
  background-color: var(--bg-light);
}

.mt-4 {
  margin-top: 2rem;
}

.max-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  max-width: 100%;
}

.logo-bold {
  color: var(--primary-color);
}

.logo-light {
  color: var(--secondary-color);
  font-weight: 400;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  margin-left: 0;
  transition: var(--transition);
}

nav a:hover {
  color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.4px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary-nav {
  background: var(--primary-color);
  color: white;
  font-size: 0.85rem;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 4px 10px rgba(26, 66, 122, 0.2);
}

.btn-primary-nav:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 66, 122, 0.3);
}

.btn-cta {
  background: linear-gradient(135deg, var(--cta-color), #34d399);
  color: white;
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(43, 182, 115, 0.28);
  text-transform: uppercase;
  font-weight: 700;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 35px rgba(43, 182, 115, 0.42);
  filter: brightness(1.03);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 66, 122, 0.2);
}

.btn-large {
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  width: auto;
}

.btn-text {
  display: inline-block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.btn-text:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.btn-text::after {
  content: '→';
  margin-left: 8px;
  font-size: 1.1rem;
}

/* Sections Common */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 25px;
  position: relative;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  margin: 15px 0 0;
  border-radius: 2px;
}

.center .section-title::after {
  margin: 15px auto 0;
}

.intro-p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* 1. HERO */
.hero {
  padding: 60px 0 90px;
  background: radial-gradient(circle at 50% 10%, #f0f7ff, #ffffff);
}

.hero-header {
  max-width: 1000px;
  margin: 0 auto 36px;
  text-align: center;
}

.hero-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -1.4px;
  line-height: 1.08;
  color: var(--primary-color);
  text-align: center;
}

.hero-header .subtitle {
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-readline {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
  text-align: center;
}

.hero-main-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-video-wrapper {
  width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #000;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.5s ease;
  border-radius: 20px;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  max-width: 320px;
  width: 90%;
}

.overlay-icon {
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.82;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.overlay-content h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 1.05rem;
}

.hero-benefits-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  width: 100%;
}

/* HERO - Bullets */
.hero-bullets-vertical,
.hero-bullets-vertical li {
  list-style: none !important;
  list-style-type: none !important;
}

.hero-bullets-vertical {
  margin: 0.4rem auto 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 0.9rem;
  width: 100%;
  max-width: 700px !important;
}

.hero-bullets-vertical li {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  text-align: left !important;
}

.hero-bullets-vertical li::before,
.hero-bullets-vertical li::after,
.hero-bullets-vertical li::marker {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
}

.hero-bullets-vertical span {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.45;
  text-align: left;
}

.bullet-icon {
  flex-shrink: 0 !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  color: #2bb673 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 2px !important;
  background: rgba(43, 182, 115, 0.1) !important;
  border-radius: 6px !important;
}

.bullet-icon svg {
  stroke-width: 4;
  width: 16px !important;
  height: 16px !important;
}

.microcopy-hero {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.4;
}

.microcopy-hero .check-icon {
  color: var(--cta-color);
  font-weight: bold;
}

.hero-cta-box-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 520px;
  margin-top: 0.5rem;
}

.hero-cta-box-centered .btn-cta {
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 320px !important;
  max-width: 100% !important;
  font-weight: 700;
  padding: 0.95rem 2rem !important;
  font-size: 0.95rem !important;
  white-space: nowrap !important;
  animation: pulse-subtle 4s infinite ease-in-out;
}

@keyframes pulse-subtle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.018);
  }
  100% {
    transform: scale(1);
  }
}

.hero-cta-box-centered .btn-cta:hover {
  animation: none;
  transform: translateY(-3px) scale(1.02);
}

.highlight-blue {
  color: var(--secondary-color);
  font-weight: 800;
}

.highlight-gold {
  color: var(--accent-color);
  font-weight: 800;
}

/* 2. BENEFITS CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.card-icon-round {
  width: 60px;
  height: 60px;
  background: rgba(43, 182, 115, 0.1);
  color: var(--cta-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* 3. FOR WHOM */
.trust-microcopy span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #128c7e;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1.2;
}

.split-image {
  flex: 0.8;
}

.img-rounded {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.indicado-list {
  margin: 2rem 0;
}

.list-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: left;
}

.list-item span {
  background: var(--primary-color);
  color: white;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.complement-text {
  font-style: italic;
  border-left: 3px solid var(--cta-color);
  padding-left: 20px;
}

/* 4. STEPS GRID */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 50px;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.step-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(31, 58, 95, 0.05);
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.step-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* 5. DIFFERENTIATORS */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-top: 30px;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 1.05rem;
}

/* 6. RESULTS */
.results-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.result-box {
  background: white;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.disclaimer {
  font-size: 0.9rem;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 7. MODULES CURRICULUM */
.modules-grid-curriculum {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.module-card-curriculum {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  border-left: 6px solid var(--accent-color);
  transition: var(--transition);
}

.module-card-curriculum:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.module-header-cur {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.module-header-cur svg {
  color: var(--accent-color);
}

.module-header-cur h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.module-card-curriculum p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* 8. AUTHORITY */
.trust-list {
  margin-top: 2.5rem;
}

.trust-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

.trust-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cta-color);
  font-weight: 900;
}

.img-round {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
}

.author-info {
    margin-top: 0;
    text-align: center;
}

.author-info strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.author-info span {
  color: var(--text-muted);
}

/* 9. OBJECTIONS */
.objections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.obj-card {
  background: #f8fbff;
  padding: 2.5rem;
  border-radius: 20px;
  border-left: 5px solid var(--primary-color);
}

.obj-card h4 {
  margin-bottom: 1rem;
  font-style: italic;
}

/* 10. OFFER */
.section-offer {
  background: #152741;
  color: white;
  padding: 120px 0;
}

.offer-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  color: var(--text-main);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.offer-header {
  background: var(--bg-light);
  padding: 4rem;
  text-align: center;
}

.offer-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.offer-header p {
  margin-bottom: 0;
}

.offer-body {
  padding: 4rem;
}

.offer-list {
  list-style: none;
  margin-bottom: 3rem;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.offer-list li span {
  color: var(--cta-color);
  font-weight: 900;
  font-size: 1.3rem;
}

/* 11. FAQ */
.accordion {
  margin-top: 40px;
}

.accordion-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.acc-header {
  padding: 1.5rem 2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.acc-header:hover {
  background: #f8fbff;
}

.acc-body {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-muted);
}

.accordion-item.active .acc-body {
  padding: 0 2rem 2rem;
  max-height: 220px;
}

.accordion-item.active .acc-header svg {
  transform: rotate(180deg);
}

/* 12. CTA FINAL */
.section-cta-final {
  padding: 120px 0;
}

.section-cta-final .btn-cta {
  width: auto;
  min-width: 280px;
  max-width: 100%;
  animation: pulse-subtle 4s infinite ease-in-out;
}

.section-cta-final .btn-cta:hover {
  animation: none;
}

.trust-microcopy {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 4rem 0;
  background: #111e30;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-header h1 {
    font-size: 3rem;
  }

  nav {
    gap: 1rem;
  }

  .btn-primary-nav {
    padding: 0.75rem 1.2rem;
  }
}

@media (max-width: 992px) {
  .hero-main-centered {
    text-align: center;
    gap: 2rem;
  }

  .split-layout,
  .split-layout.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .split-image {
    order: -1;
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .indicado-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .list-item {
    width: 100%;
    max-width: 500px;
  }

  .hero-header h1 {
    font-size: 2.4rem;
  }

  .hero-header .subtitle {
    font-size: 1.18rem;
  }

  .hero-benefits-centered {
    align-items: center;
  }

  .diff-grid,
  .objections-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .container-nav {
    gap: 1rem;
  }

  nav {
    gap: 0.9rem;
  }

  nav a {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .container-nav {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.8rem;
  }

  .logo {
    margin: 0;
    display: flex;
    justify-content: center;
    width: auto;
  }

  nav {
    justify-content: center;
    gap: 1rem;
  }

  nav .nav-link {
    display: none;
  }

  nav .btn-primary-nav {
    display: inline-flex;
    padding: 0.7rem 1.2rem;
    font-size: 0.82rem;
    margin-left: 0;
  }

  .logo img {
    height: 46px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 30px 0 55px;
  }

  .hero-header {
    margin-bottom: 24px;
  }

  .hero-header h1 {
    font-size: 2.05rem;
    line-height: 1.18;
    letter-spacing: -0.6px;
    padding: 0;
  }

  .hero-header .subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 1rem;
  }

  .hero-readline {
    font-size: 1rem;
    line-height: 1.4;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .section-title::after {
    width: 40px;
    margin-top: 10px;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
  }

  .hero-main-centered {
    gap: 1.35rem;
  }

  .hero-benefits-centered {
    gap: 1.1rem;
    width: 100%;
  }

  .hero-bullets-vertical {
    width: 100%;
    max-width: 100%;
    margin: 0.4rem 0 0 !important;
    padding: 0 !important;
    gap: 0.9rem;
    align-items: stretch !important;
  }

  .hero-bullets-vertical li {
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-bullets-vertical span {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .bullet-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    margin-top: 3px !important;
  }

  .bullet-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .hero-cta-box-centered {
    width: 100%;
    max-width: 100%;
    gap: 0.9rem;
    margin-top: 0.3rem;
  }

  .hero-cta-box-centered .btn-cta,
  .btn-large {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0.95rem 1rem !important;
    font-size: 0.9rem !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .btn {
    width: auto;
  }

  .offer-header {
    padding: 2.5rem 1.5rem;
  }

  .offer-header h2 {
    font-size: 1.5rem;
  }

  .offer-body {
    padding: 2rem 1.5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .result-box {
    width: 100%;
    border-radius: 12px;
    font-size: 0.9rem;
    padding: 1rem;
  }

  .split-layout {
    gap: 2rem;
  }

  .indicado-list {
    margin: 1.5rem 0;
  }

  .list-item {
    font-size: 0.95rem;
  }

  .diff-item {
    font-size: 0.95rem;
  }

  .obj-card {
    padding: 1.5rem;
  }

  .obj-card h4 {
    font-size: 1.1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .logo img {
    height: 44px;
  }

  .hero-header h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .overlay-content {
    padding: 1.5rem;
  }

  .overlay-content h3 {
    font-size: 1.2rem;
  }

  .overlay-content p {
    font-size: 1rem;
  }

  .hero-bullets-vertical span {
    font-size: 0.95rem;
  }

  .microcopy-hero {
    font-size: 0.88rem;
    padding: 0 6px;
  }

  .hero-cta-box-centered .btn-cta {
    font-size: 0.88rem !important;
    padding: 0.9rem 0.9rem !important;
    border-radius: 18px !important;
  }

  .acc-header {
    padding: 1.2rem 1rem;
    font-size: 0.95rem;
  }

  .accordion-item.active .acc-body {
    padding: 0 1rem 1.2rem;
  }

  .offer-box {
    border-radius: 22px;
  }

  .offer-header,
  .offer-body {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}