/* Fuente y reseteo */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #015e58 0%, #018a7a 100%);
  color: #fff;
  text-align: center;
  padding: 80px 10% 60px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.logo {
  height: 200px;      /* controla la altura del logo en el header */
  width: auto;       /* mantiene la proporción original del PNG */
  display: block;
}

.brand h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}

.brand sup {
  font-size: 0.6rem;
  vertical-align: super;
}

.headline h2 {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.headline span {
  color: #afffe8;
}

/* SUBTEXTO */
.subtext {
  background: #fff;
  text-align: center;
  padding: 40px 10%;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

.subtext strong {
  font-weight: 700;
}


/* ===== VSL SECTION ===== */
.vsl-section {
  text-align: center;
  padding: 60px 8%;
  background: #ffffff;
  animation: fadeInUp 1s ease;
}

.vsl-text p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
  margin-bottom: 30px;
}

.vsl-text strong {
  font-weight: 700;
}

.vsl-video {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.vsl-video video {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
  object-fit: cover; /* para que el video horizontal se vea bien */
}

/* BOTÓN */
.vsl-button {
  background: linear-gradient(90deg, #00C2A8, #019C7A);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 35px;
  transition: all 0.3s ease;
}

.vsl-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00a590, #01735e);
}

/* Responsive */
@media (max-width: 768px) {
  .vsl-video video {
    height: 300px;
  }
}


/* ===== CASES SECTION ===== */
.cases {
  background: linear-gradient(135deg, #015e58 0%, #018a7a 100%);
  color: #fff;
  text-align: center;
  padding: 100px 10% 120px;
}

.cases-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}

.cases-header span {
  color: #afffe8;
}

.cases-header strong {
  color: #b5fff0;
}

.cases-header p {
  font-size: 1.1rem;
  color: #e2fffa;
  margin-bottom: 70px;
}

/* CARD */
.case-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e8fdf5;
  color: #1a1a1a;
  border-radius: 22px;
  padding: 50px;
  max-width: 1100px;
  margin: 0 auto 50px;
  text-align: left;
  gap: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease;
}

.case-img {
  width: 45%;
  height: 320px; /* un poco más alto para arte vertical */
  border-radius: 18px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tierra-maestra {
  background-image: url("/galeria/4.jpeg");
  background-position: center; /* MUY IMPORTANTE para esta imagen */
}

.principios {
  background-image: url("/galeria/3.jpeg");
  background-position: center;
}



.case-text {
  width: 55%;
}

.case-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.case-text h3 span {
  color: #018a7a;
}

.case-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* CTA FINAL */
.extra-cta {
  margin-top: 60px;
}

.extra-cta p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Reusa el botón */
.extra-cta .vsl-button {
  background: linear-gradient(90deg, #00C2A8, #019C7A);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.extra-cta .vsl-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00a590, #01735e);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .case-card {
    flex-direction: column;
    text-align: center;
  }

  .case-img,
  .case-text {
    width: 100%;
  }

  .case-img {
    width: 100%;
    height: 260px;
    background-position: center;
  }
}


/* ===== SOBRE NOSOTROS ===== */
/* ===== SOBRE MÍ ===== */
.about-section {
  background: #ffffff;
  padding: 100px 10%;
  color: #0e3a34;
}

.about-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #013933;
  margin-bottom: 70px;
  text-align: center;
}

.about-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0e3a34;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #111;
}

.about-text strong {
  font-weight: 700;
  color: #000;
}

.about-photo {
  flex-shrink: 0;
  width: 420px;
  height: 560px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-cta {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .about-person {
    gap: 40px;
  }

  .about-photo {
    width: 340px;
    height: 460px;
  }
}


@media (max-width: 768px) {
  .about-section {
    padding: 80px 6%;
  }

  .about-section h2 {
    font-size: 2.1rem;
    margin-bottom: 50px;
  }

  .about-person {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .about-photo {
    width: 100%;
    max-width: 320px;
    height: 380px;
    margin: 0 auto;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-cta {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .about-section h2 {
    font-size: 1.9rem;
  }

  .about-photo {
    height: 320px;
  }
}





.about-cta .vsl-button {
  background: linear-gradient(90deg, #00C2A8, #019C7A);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-cta .vsl-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00a590, #01735e);
}

/* Responsive */
@media (max-width: 900px) {
  .about-person {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    width: 100%;
  }

  .about-photo {
    width: 250px;
    height: 280px;
  }

  .about-section h2 {
    text-align: center;
  }
}


/* ===== CASOS DE ÉXITO ===== */
.success-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4fffb 100%);
  padding: 100px 8%;
  text-align: center;
}

.success-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #012f2a;
  margin-bottom: 15px;
}

.success-section span {
  color: #00b49b;
}

.success-intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 80px;
}

.success-grid {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.success-card {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px;
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0, 180, 155, 0.2);
  position: relative;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}




.success-card::before {
  content: "";
  position: absolute;
  left: -10px;
  right: auto;
  top: 40px;
  bottom: 40px;
  width: 4px;
  background: linear-gradient(180deg, #00b49b, #018a7a);
  border-radius: 4px;
}

.success-card.reverse::before {
  left: auto;
  right: -10px;
}

.success-video {
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  position: relative;
}
.success-video::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  pointer-events: none;
}


.success-video.vertical {
  width: 320px;
  height: 560px;
}

.success-video.vertical video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.success-video.horizontal {
  width: 560px;
  height: 315px; /* 16:9 exacto */
}

.success-video.horizontal video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}


.success-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.success-text {
  text-align: left;
}

.success-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0e3a34;
  margin-bottom: 14px;
}



.success-text p:first-of-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: #015e58;
}




.success-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  margin-bottom: 12px;
}

.success-cta {
  margin-top: 80px;
}

.success-card.reverse {
  flex-direction: row-reverse;
}

.success-card.reverse .success-text {
  text-align: right;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .success-card,
  .success-card.reverse {
    flex-direction: column;
    text-align: center;
    gap: 35px;
    padding: 40px 22px;
  }

  .success-video {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .success-video.horizontal {
    aspect-ratio: 16 / 9;
  }

  .success-text {
    text-align: center;
  }

  .success-text h3 {
    font-size: 1.7rem;
  }

  .success-card::before {
    display: none;
  }
}



/* ===== QUÉ VAMOS A TRABAJAR ===== */
.work-section {
  background: #ffffff;
  text-align: center;
  padding: 100px 8%;
}

.work-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #012f2a;
  margin-bottom: 60px;
}

.work-section span {
  color: #00b49b;
}

/* GRID: 2 columnas x 2 filas */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px; /* espacio horizontal y vertical */
  justify-items: center;
  margin-bottom: 60px;
}

.work-item {
  background: #e8fdf5;
  border-radius: 12px;
  padding: 40px 30px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.work-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.work-item .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 12px;

  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;

}

.work-icon-1 {
  background-image: url("images/iconos/7.jpeg");
}

.work-icon-2 {
  background-image: url("images/iconos/8.jpeg");
}

.work-icon-3 {
  background-image: url("images/iconos/9.jpeg");
}

.work-icon-4 {
  background-image: url("images/iconos/10.jpeg");
}



.work-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e3a34;
  margin-bottom: 12px;
}

.work-item p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
}

/* CTA */
.work-cta {
  margin-top: 30px;
}

.work-cta .vsl-button {
  background: linear-gradient(90deg, #00C2A8, #019C7A);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.work-cta .vsl-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00a590, #01735e);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr; /* una debajo de otra */
    gap: 25px;
  }

  .work-section h2 {
    font-size: 1.9rem;
  }

  .work-item {
    max-width: 100%;
    padding: 30px 20px;
  }

  .work-item h3 {
    font-size: 1.1rem;
  }
}


/* ===== RESULTADOS (FINAL) ===== */
.results-true {
  background: linear-gradient(135deg, #015e58 0%, #018a7a 100%);
  padding: 100px 10%;
  color: #fff;
}

.results-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.results-left {
  flex: 1 1 55%;
  text-align: left;
}

.results-left h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 35px;
}

.results-left h2 span {
  color: #afffe8;
}

.results-left h2 strong {
  color: #afffe8;
  font-weight: 800;
}

.results-left p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e4fffa;
  margin-bottom: 18px;
}

.results-left strong {
  color: #fff;
}

.results-right {
  flex: 1 1 45%;
  text-align: center;
}

.results-image {
  width: 100%;
  height: 360px;
  border-radius: 14px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.camino-diferente {
  background-image: url("images/camino-diferente.jpeg");
  background-position: center ;
}


.chart-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #baf5e8;
}

/* Botón reutilizado */
.results-left .vsl-button {
  margin-top: 25px;
  background: linear-gradient(90deg, #00C2A8, #019C7A);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.results-left .vsl-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00a590, #01735e);
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .results-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .results-left h2 {
    font-size: 2rem;
  }

  .results-image {
    height: 280px;
    width: 100%;
    background-position: center top;
  }
  
  .chart-note {
    text-align: center;
  }

  .results-left {
    text-align: center;
  }
}


/* ===== BENEFICIOS ===== */
.benefits-section {
  background: #ffffff;
  text-align: center;
  padding: 100px 8%;
}

.benefits-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #012f2a;
  margin-bottom: 70px;
}

.benefits-section span {
  color: #00b49b;
}

/* GRID 3x2 */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  justify-items: center;
  margin-bottom: 60px;
}

.benefit-item {
  background: #e8fdf5;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 420px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;

  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;


}

.icon-1 {
  background-image: url("images/iconos/1.jpeg");
}

.icon-2 {
  background-image: url("images/iconos/2.jpeg");
}

.icon-3 {
  background-image: url("images/iconos/3.jpeg");
}

.icon-4 {
  background-image: url("images/iconos/4.jpeg");
}

.icon-5 {
  background-image: url("images/iconos/5.jpeg");
}

.icon-6 {
  background-image: url("images/iconos/6.jpeg");
}



.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e3a34;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
}

/* CTA */
.benefits-cta {
  margin-top: 40px;
}

.benefits-cta .vsl-button {
  background: linear-gradient(90deg, #00C2A8, #019C7A);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefits-cta .vsl-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00a590, #01735e);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    max-width: 100%;
  }

  .benefits-section h2 {
    font-size: 2rem;
  }
}

/* ===== CONSULTORÍA ===== */
.consulting-section {
  background: linear-gradient(135deg, #015e58 0%, #018a7a 100%);
  text-align: center;
  padding: 100px 8%;
  color: #fff;
}

.consulting-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 50px;
}

.consulting-section h2 span {
  color: #afffe8;
}

.consulting-form {
  display: flex;
  justify-content: center;
}

.consulting-form iframe {
  width: 100%;
  max-width: 900px;
  height: 700px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .consulting-section h2 {
    font-size: 2rem;
  }

  .consulting-form iframe {
    height: 750px;
  }
}


/* ===== FAQ ===== */
.faq-section {
  background: #000;
  color: #fff;
  padding: 100px 10%;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.faq-section span {
  color: #00b49b;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #0e3f3a;
}

.faq-question {
  background: #062b28;
  color: #fff;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1.05rem;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "▼";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-question:hover {
  background: #0c3d38;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: #d4f8f2;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 700px) {
  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}



/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(90deg, #0d0d0d, #1b1b1b);
  color: #eaeaea;
  text-align: center;
  padding: 25px 10%;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a {
  text-decoration: none;
}

.aires-soft {
  font-weight: 600;
  background: linear-gradient(90deg, #00b49b, #4bffd5, #00b49b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: colorShift 3s linear infinite;
  transition: transform 0.3s ease;
}

.aires-soft:hover {
  transform: scale(1.08);
}

@keyframes colorShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}





/* ^modal */

/* ===== MODAL DE PAGOS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 30px 30px;
  max-width: 900px;
  width: 90%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  text-align: center;
  animation: modalIn 0.3s ease-out;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #012f2a;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #555;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.1);
  color: #000;
}

.modal-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-option {
  flex: 1 1 260px;
  background: #e8fdf5;
  border-radius: 14px;
  padding: 24px 20px 26px;
  border: 1px solid rgba(0, 194, 168, 0.2);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modal-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.modal-option h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e3a34;
  margin-bottom: 14px;
}

.modal-option p {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 18px;
}

.modal-logo {
  height: 150px;
  width: auto;
  margin-bottom: 14px;
}

.modal-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00C2A8, #019C7A);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(1, 140, 120, 0.5);
  background: linear-gradient(90deg, #00a590, #01735e);
}

@keyframes modalIn {
  from {
    transform: translateY(15px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Responsive modal */
@media (max-width: 700px) {
  .modal-content {
    padding: 26px 18px 22px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-option {
    padding: 20px 16px 22px;
  }
}

/* Pasos dentro del modal */
.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
}

/* Área de pago Mercado Pago */
.modal-mp-wrapper {
  margin: 20px auto 24px;
  max-width: 800px;
}

.modal-mp-iframe {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.modal-back-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #00a590;
  background: #ffffff;
  color: #00a590;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-back-btn:hover {
  background: #00a590;
  color: #ffffff;
  transform: translateY(-1px);
}

.modal-content{
  max-height: 90vh;
  overflow-y: auto;
}

.mp-result{
  margin-top: 14px;
  font-size: 0.95rem;
  color: #0e3a34;
}

.mp-result.error{
  color: #b00020;
}




/* ===== FIX FULLSCREEN VIDEOS ===== */

video:fullscreen {
  object-fit: contain !important;
  background: #000;
}

video:-webkit-full-screen {
  object-fit: contain !important;
  background: #000;
}

video:-moz-full-screen {
  object-fit: contain !important;
  background: #000;
}

/* Fullscreen SOLO para videos verticales */
video.is-vertical-video:fullscreen {
  width: auto !important;
  height: 100vh !important;
}

video.is-vertical-video:-webkit-full-screen {
  width: auto !important;
  height: 100vh !important;
}


/* ===============================
   A <= 570px: lista → texto
   =============================== */
@media (max-width: 570px) {

  .case-text ul {
    list-style: none;     /* chau bullets */
    padding: 0;
    margin: 0;
  }

  .case-text li {
    display: block;
    margin-bottom: 14px; /* separación tipo párrafo */
    font-size: 1rem;
    line-height: 1.6;
  }

}

/* ===============================
   CTA PRINCIPAL: lista sin bullets
   =============================== */
   #cta-principal .results-left ul{
    list-style: none;      /* ✅ saca los puntitos */
    padding-left: 0;
    margin: 22px 0 26px;
  }
  
  #cta-principal .results-left ul li{
    list-style: none;
    margin: 10px 0;        /* separación */
  }
  


  /* ===== RESULTS GALLERY (slider) ===== */
.results-gallery{
  position: relative;
  width: 100%;
  height: 360px;          /* ajustá si querés */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Track */
.results-track{
  height: 100%;
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

/* Slide */
.results-slide{
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Flechas */
.gallery-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25);
  color: #fff;

  font-size: 26px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  display: grid;
  place-items: center;

  transition: transform .2s ease, background .2s ease;
}

.gallery-btn:hover{
  background: rgba(0,0,0,.35);
  transform: translateY(-50%) scale(1.05);
}

.gallery-btn.prev{ left: 12px; }
.gallery-btn.next{ right: 12px; }

/* Dots */
.results-dots{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);

  display: flex;
  gap: 8px;
  z-index: 2;
}

.results-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.15);
}

.results-dot.active{
  background: rgba(255,255,255,.95);
}

/* Responsive */
@media (max-width: 950px) {
  .results-gallery{
    height: 280px;
  }
}
