:root {
  --bg: #0b0e17;
  --surface: #12172a;
  --surface-alt: #0f1322;
  --text: #e6e8ee;
  --muted: #b6bdd0;
  --primary: #1a97a7;
  --primary-700: #116b77;
  --accent: #00d4ff;
  --success: #00c853;
  --danger: #ff5252;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box }
html { scroll-behavior: smooth; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a3042;
  border-radius: 5px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 721px) {
  .text-nowrap { white-space: nowrap }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px) }
.btn:active { transform: translateY(0) }
.btn-primary {
  background: #1a97a7;
  color: #fff;
  box-shadow: 0 10px 25px rgba(26,151,167,.35);
}
.btn-outline {
  background: transparent;
  border-color: rgba(230,232,238,.24);
  color: var(--text);
}
.btn-sm { padding: 10px 14px; border-radius: 10px; font-size: 14px }
.btn-lg { padding: 16px 22px; border-radius: 14px; font-size: 16px }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(8px);
  background: linear-gradient(180deg, rgba(11,14,23,.85), rgba(11,14,23,.65));
  border-bottom: 1px solid rgba(230,232,238,.08);
}
.header-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 6px 16px rgba(26,151,167,.35);
}
.brand-text { letter-spacing: .2px }

.nav {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}
.nav a { color: var(--muted) }
.nav a:hover { color: var(--text) }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(230,232,238,.08);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
  border-radius: 2px;
}

.hero {
  padding: 50px;
  background: #0b0e17 !important;
}
.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
  justify-items: center;
  grid-template-areas: "copy media";
}
.hero h1 {
  font-size: clamp(24px, 2.5vw, 35px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 100%;
}
.hero-emphasis {
  color: #1a97a7;
  display: inline;
}
.hero-copy { text-align: left; grid-area: copy }
.hero p { color: var(--muted) }
.hero .hero-actions { display: flex; gap: 14px; margin-top: 20px; justify-content: flex-start; width: 100% }
.hero .hero-actions .btn { width: 100% }
.hero .btn-primary {
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 18px;
  box-shadow: 0 16px 32px rgba(26,151,167,.35);
}
.hero .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(26,151,167,.45);
}
.trust-badges { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap }
.badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(230,232,238,.12);
  background: linear-gradient(180deg, rgba(18,23,42,.8), rgba(18,23,42,.6));
  color: var(--muted);
  font-size: 14px;
}
.hero-media img { display: block; width: 100%; height: auto }
.hero-image {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.hero-media {
  grid-area: media;
  position: relative;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-media .hero-floating-item {
  position: absolute;
  z-index: 2;
  width: 80px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
  bottom: 40%;
  left: 30%;
  margin-left: 0;
}

/* Removed old .small and .large specific classes */

@media (max-width: 1280px) {
  /* .hero-floating-item adjustments if needed */
}

@media (max-width: 1024px) {
  .hero-floating-item {
    width: 120px !important; /* Larger size for <=1024px */
  }
}

/* Bio Section */
#quem-sou {
  background: 
    radial-gradient(ellipse 60% 250px at 50% 0%, rgba(26, 151, 167, 0.25), transparent),
    #0b0e17 !important;
  border-bottom: none;
  position: relative;
  padding: 100px 50px;
}

@media (max-width: 400px) {
  #quem-sou {
    padding: 50px 25px;
  }
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bio-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--text);
}

.bio-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.bio-image img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  height: auto;
  border-radius: 16px;
  border: none;
}

@media (max-width: 1024px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
  .bio-content {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero .btn-primary {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 20px !important;
  }
  .hero .btn-primary {
    font-size: 13px !important;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 17.5px !important;
  }
}

@media (max-width: 900px) {
  .hero-floating-item {
    left: 25% !important; /* Move slightly left */
  }
}

@media (max-width: 650px) {
  .hero-floating-item {
    width: 80px !important; /* Smaller size */
    left: 25% !important; /* Move slightly back right */
  }
}

@media (max-width: 450px) {
  .hero-floating-item {
    width: 60px !important;
    left: 25% !important;
  }
}

@media (max-width: 768px) {
  .hero-floating-item {
    bottom: -10px;
    left: 50%;
    margin-left: -60px; /* Adjust margin for new width */
  }
}

#app-loading { position: fixed; inset: 0; background: #0b0e17; display: grid; place-items: center; z-index: 10000; transition: opacity .3s ease }
#app-loading.hide { opacity: 0; pointer-events: none }
#app-loading img { width: 160px; height: auto }

.section {
  padding: 100px 50px;
  background: #0b0e17 !important;
  border-bottom: 1px solid rgba(26, 151, 167, 0.2);
}
.section#metodo {
  background: #0b0e17 !important;
  padding: 0 50px 50px 50px;
  border-bottom: none;
}
.section.alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--surface));
}
#pra-quem-e {
    padding: 100px 50px !important;
    background: 
      radial-gradient(ellipse 60% 250px at 50% 0%, rgba(26, 151, 167, 0.25), transparent),
      radial-gradient(ellipse 60% 250px at 50% 100%, rgba(26, 151, 167, 0.08), transparent),
      #0b0e17 !important;
    border-top: none;
    border-bottom: none;
  }
@media (max-width: 480px) {
  #pra-quem-e {
    padding: 50px 25px !important;
  }
  #depoimentos {
    padding: 50px 25px !important;
  }
  #conteudo {
    padding: 50px 25px !important;
  }
}
#conteudo { 
  padding: 100px 50px;
  background: 
    radial-gradient(ellipse 60% 250px at 50% 100%, rgba(26, 151, 167, 0.08), transparent),
    #0b0e17 !important;
  border-top: none;
  border-bottom: none;
}
#depoimentos {
  padding: 100px 50px;
  background: 
    radial-gradient(ellipse 60% 250px at 50% 0%, rgba(26, 151, 167, 0.25), transparent),
    radial-gradient(ellipse 60% 250px at 50% 100%, rgba(26, 151, 167, 0.08), transparent),
    #0b0e17 !important;
  border-top: none;
  border-bottom: none;
}
.section h2 {
  font-size: 32px;
  margin: 0 0 24px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  perspective: 1000px;
}
.step {
  background: linear-gradient(145deg, var(--surface), var(--surface-alt));
  border: 1px solid rgba(230,232,238,.05);
  border-radius: 24px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.step.active {
  transform: translateY(-8px) scale(1.02);
  background: var(--surface);
  border-color: rgba(26,151,167,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(26,151,167,.2);
  z-index: 1;
}
.step.active::before {
  opacity: 1;
}
.step-num {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(26,151,167,.2);
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  align-self: flex-start;
}
.step h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  transition: color .3s ease;
}
.step.active h3 {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
}
.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.modules-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.modules-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text);
}
.modules-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.modules-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.modules-viewport {
  overflow: hidden;
  width: 100%;
}
.modules {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  position: relative;
}
.module {
  flex: 0 0 100%;
  background: linear-gradient(145deg, var(--surface), var(--surface-alt));
  border: 1px solid rgba(230,232,238,.05);
  border-radius: 24px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Centraliza horizontalmente */
  text-align: center; /* Centraliza o texto */
  height: auto;
  min-height: 100%;
}

@media (min-width: 1025px) {
  .modules-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }
  .modules-text {
    grid-column: 2;
    grid-row: 1;
  }
  .modules-wrapper {
    grid-column: 1;
    grid-row: 1;
  }
  .modules-wrapper.audience-wrapper {
    grid-row: 1 / span 2;
  }
  .video-container {
    grid-column: 2;
    grid-row: 2;
    margin-top: -25px;
  }
  
  .hero {
    background: 
      radial-gradient(circle 400px at 0% 0%, rgba(26, 151, 167, 0.25), transparent),
      #0b0e17 !important;
  }
  
  #metodo {
    background: #0b0e17 !important;
  }
  
  
}

@media (min-width: 1025px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.carousel-btn {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.carousel-btn:hover {
  background: #1a97a7;
  border-color: #1a97a7;
  color: #fff;
  transform: scale(1.1);
}
.carousel-btn svg {
  width: 24px;
  height: 24px;
}
.module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.module.active {
  background: var(--surface);
  border-color: rgba(26,151,167,.3);
  z-index: 1;
}
.module.active::before {
  opacity: 1;
}
.module h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  transition: color .3s ease;
}
.module.active h3 {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
}
.module p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.depoimentos-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.depoimentos-header h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text);
}
.depoimentos-header p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Carousel Visibility State */
.carousel-loading .modules-viewport,
.carousel-loading .feedback-viewport,
.carousel-loading .audience-grid {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.carousel-ready .modules-viewport,
.carousel-ready .feedback-viewport,
.carousel-ready .audience-grid {
  opacity: 1;
}

/* Feedback Carousel */
.feedback-carousel {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.feedback-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.feedback-carousel .carousel-btn.feedback-prev {
  left: -24px;
}
.feedback-carousel .carousel-btn.feedback-next {
  right: -24px;
}
.feedback-carousel .carousel-btn:hover {
  background: #1a97a7 !important;
  border-color: #1a97a7 !important;
  color: #fff !important;
}
.feedback-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(230,232,238,.08);
}
.feedback-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
.feedback-item {
  flex: 0 0 100%; /* Mobile default: 1 item */
  min-width: 0; /* Allow flex shrink if needed, but flex basis handles it */
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}
.feedback-item img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Offer Timer */
.offer-timer {
  font-size: 32px;
}

@media (max-width: 720px) {
  .offer-timer {
    font-size: 25px;
  }
}
.feedback-item:hover img {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .feedback-item {
    flex: 0 0 33.3333%; /* Tablet: 3 items */
    padding: 15px;
  }
}

@media (min-width: 1024px) {
  .feedback-item {
    flex: 0 0 25%; /* Desktop: 4 items */
    padding: 10px;
  }
}

/* Modal */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 14, 23, 0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden; /* Adicionado para evitar flash */
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s 0.3s; /* Delay visibility na saída */
}
.feedback-modal.open {
  opacity: 1;
  visibility: visible; /* Torna visível */
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s 0s; /* Sem delay na entrada */
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2010;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }

.modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  gap: 20px;
  position: relative;
}
.modal-image-container {
  overflow: hidden; /* For zoom clipping */
  max-width: 80%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-image-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  transition: transform 0.1s linear; /* Faster for dragging, or remove transition during drag */
  transform-origin: center center;
  cursor: grab;
}
.modal-image-container img:active {
  cursor: grabbing;
}

.modal-nav {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text);
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-nav:hover { background: rgba(255,255,255,0.2); }
.modal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.modal-controls {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}
.zoom-btn {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.zoom-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .modal-controls {
    display: none !important;
  }
}

@media (max-width: 800px) {
  .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(0,0,0,0.5) !important; /* Melhor contraste sobre a imagem */
  }
  .modal-nav:hover,
  .modal-nav:active,
  .modal-nav:focus {
    background: rgba(0,0,0,0.5) !important;
  }
  .modal-prev { left: 10px; }
  .modal-next { right: 10px; }
  .modal-image-container { max-width: 100%; }
  .feedback-item { flex: 0 0 100%; }
}

.cta {
  padding: 100px 50px;
  background: 
    radial-gradient(ellipse 60% 250px at 50% 0%, rgba(26, 151, 167, 0.25), transparent),
    radial-gradient(ellipse 60% 250px at 50% 100%, rgba(26, 151, 167, 0.08), transparent),
    #0b0e17 !important;
  border-bottom: none;
  position: relative;
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}
.cta-left-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cta-copy {
  text-align: left;
  margin: 0;
  max-width: 100%;
}
.cta-copy h2 {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-copy p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-container {
   margin-top: 0;
   width: 100%;
   text-align: left;
 }
 .faq-container h2 {
   font-size: 32px;
   margin-bottom: 20px;
   text-align: left;
 }
  
  .pricing-card {
  background: var(--surface);
  border: 1px solid rgba(230,232,238,.12);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.check-icon {
  width: 24px;
  height: 24px;
  color: #1a97a7;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item strong {
  display: block;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
}

.benefit-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.benefit-price {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}
.benefit-value {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
}
.benefit-label {
  color: var(--muted);
  font-size: 12px;
  opacity: 0.8;
}

.pricing-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(230,232,238,.08);
  width: 100%;
}

.btn-block { width: 100%; }

.price-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.price-from {
  color: #ff4d4d;
  text-decoration: line-through;
  font-size: 20px;
  opacity: 0.8;
}

.price-to {
  font-size: 48px;
  font-weight: 800;
  color: #1a97a7;
  text-shadow: none;
  margin-top: 4px;
}


.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
details {
  background: var(--surface);
  border: 1px solid rgba(230,232,238,.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s ease;
}
summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s ease;
}
summary::-webkit-details-marker { display: none }
summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(45deg) }
details[open] summary {
  color: #1a97a7;
  border-bottom: 1px solid rgba(230,232,238,.08);
}
details p {
  padding: 16px 20px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.site-footer {
  background: #0b0e17 !important;
  border-top: none;
}
.site-footer .brand-text {
  font-size: 32px;
}
.site-footer p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 50px 100px 100px 100px !important;
}

@media (max-width: 720px) {
  .footer-grid {
    padding: 50px 50px 100px 50px !important;
  }
}
.brand {
  justify-content: center;
}
.footer-cta {
  margin-top: 16px;
}
.footer-cta .btn-primary {
  box-shadow: none;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 151, 167, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(26, 151, 167, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 151, 167, 0);
  }
}
.footer-links { display: grid; gap: 10px }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px !important;
  color: rgba(230,232,238,0.5);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.03);
  letter-spacing: 0.5px;
}
.footer-bottom a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-bottom a:hover {
  color: #1a97a7;
  transform: translateY(-2px);
  text-shadow: none;
}

/* Audience Section */
.audience-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
.audience-card {
  flex: 0 0 100%;
  background: var(--surface);
  border: 1px solid rgba(230,232,238,.05);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-icon {
  width: 64px;
  height: 64px;
  background: rgba(26,151,167,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.audience-card h3 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 20px;
}
.audience-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .carousel-btn:hover {
    background: #1a97a7 !important;
    border-color: #1a97a7 !important;
    color: #fff !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "copy";
    text-align: center;
  }
  .hero-copy { text-align: center }
  .hero .hero-actions { justify-content: center }
  .trust-badges { justify-content: center }
  .hero h1 { font-size: 25px }
  
  .section#metodo {
    padding: 0 24px 40px 24px;
  }
  .steps {
    margin-top: 0;
  }
  .modules-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .modules-text {
    order: 1;
    text-align: center;
  }
  .modules-wrapper {
    order: 2;
    width: 100%;
    display: block;
  }
  .modules-wrapper .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: var(--surface);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .modules-wrapper .carousel-btn.prev {
    left: -10px;
  }
  .modules-wrapper .carousel-btn.next {
    right: -10px;
  }
  .video-container {
    order: 3;
  }
  
  .cta-box {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .cta-left-content { display: contents; }
  .cta-copy { 
    order: 1; 
    text-align: center;
  }
  .cta-copy h2 { font-size: 25px; }
  .pricing-card { 
    order: 2; 
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .faq-container { 
    order: 3; 
    text-align: center;
  }
  .faq-container h2 { 
    text-align: center;
    font-size: 25px;
  }
  .price-to { font-size: 30px; }
  
  .faq details summary,
  .faq details p {
    text-align: center;
    justify-content: center;
  }
  .faq details summary::after {
    margin-left: 10px; /* Adjust spacing for centered icon */
  }
  
  .nav { display: none }
  .nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(230,232,238,.08);
  }
  .nav-toggle { display: block }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 25px !important;
  }
  .site-footer .brand-text { font-size: 25px; }
}

@media (max-width: 480px) {
  .hero { padding: 32px 20px }
  .hero h1 { font-size: 25px }
  .section { padding: 48px 0 }
  .section h2 { font-size: 28px }
  .pricing-card { padding: 24px }
  .benefit-item strong { font-size: 16px }
  .cta { padding: 50px 25px; }
  .footer-grid { padding: 25px 25px 50px 25px !important; }
  
  .feedback-carousel .carousel-btn {
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }
}
