/* ============================================================
   DANZARETTI · Sueños que Bailan
   Paleta (del logo y la tarjeta digital):
   rosa #EDC6CF · rosa suave #FBF3F5 · gris #737373 · gris logo #9A9A9A
   Tipografía: Montserrat 500 · 13px · line-height 24px
   ============================================================ */

:root {
  --rosa: #edc6cf;
  --rosa-medio: #f2d5db;
  --rosa-suave: #fbf3f5;
  --rosa-fuerte: #db8697;
  --gris: #737373;
  --gris-claro: #9a9a9a;
  --negro: #1e1e1e;
  --blanco: #ffffff;
  --font: 'Montserrat', sans-serif;
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Beau Rivage', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  color: var(--gris);
  background: var(--blanco);
  overflow-x: hidden;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-alt { padding: 90px 0; background: var(--rosa-suave); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--negro);
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1 { font-size: 44px; line-height: 54px; }
h2 { font-size: 34px; line-height: 44px; margin-bottom: 18px; }
h3 { font-size: 19px; line-height: 26px; letter-spacing: 2px; }
h4 { font-size: 17px; margin-bottom: 12px; }

a { color: var(--gris); text-decoration: none; transition: color .3s; }
a:hover { color: var(--negro); }

.script {
  font-family: var(--script);
  font-size: 42px;
  line-height: 1.2;
  color: var(--gris-claro);
  text-transform: none;
  letter-spacing: 0;
}
.script.big { font-size: 56px; color: var(--gris); }
.center { text-align: center; }
.top { padding-top: 1%;}
.narrow { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- Botones ---------- */
.btn-outline, .btn-solid {
  display: inline-block;
  margin-top: 24px;
  padding: 13px 38px;
  border: 1px solid var(--negro);
  background: transparent;
  color: var(--negro);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}
.btn-outline:hover { background: var(--negro); color: var(--blanco); }
.btn-solid { background: var(--rosa); border-color: var(--rosa); color: var(--negro); }
.btn-solid:hover { background: var(--negro); border-color: var(--negro); color: var(--blanco); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--rosa);
  font-size: 10px;
  line-height: 22px;
  padding: 8px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gris);
}
.topbar a {
  color: var(--negro);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .3s;
}
.topbar a:hover { border-color: var(--negro); }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-welcome { display: flex; align-items: center; }
.topbar-brand {
  font-family: var(--script);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--negro);
  margin-left: 7px;
  line-height: 1;
}
.topbar-dot {
  font-style: normal;
  font-size: 8px;
  color: var(--blanco);
  margin: 0 14px;
}
.topbar-right a { letter-spacing: 2px; font-variant-numeric: tabular-nums; }

/* ---------- Navegación ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blanco);
  border-bottom: 1px solid #f0e4e7;
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.brand span {
  font-family: var(--script);
  font-size: 30px;
  color: var(--gris);
}
.menu { display: flex; align-items: center; gap: 28px; }
.menu a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--negro);
}
.menu a:hover { color: var(--gris-claro); }
.menu .btn-reserva {
  background: var(--rosa);
  padding: 9px 22px;
  color: var(--negro);
}
.menu .btn-reserva:hover { background: var(--negro); color: var(--blanco); }
.burger { display: none; background: none; border: none; cursor: pointer; }
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--negro);
  margin: 5px 0;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  height: 88vh;
  max-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--rosa-suave);
}
.hero-shape {
  position: absolute;
  right: -12%;
  top: -25%;
  width: 65%;
  height: 150%;
  background: var(--rosa);
  border-radius: 0 0 0 55%;
}
.hero-media {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}
.hero-content { position: relative; z-index: 2; max-width: 560px; margin-left: 8%; }
.hero-content .script { font-size: 54px; }
.hero-content h1 { margin: 10px 0 18px; }
.hero-sub { max-width: 420px; }

/* ---------- La experiencia ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.about-text .lead { color: var(--negro); margin: 6px 0 18px; }
.steps { margin: 0 0 16px 18px; }
.steps li { margin-bottom: 12px; }
.steps strong { color: var(--rosa-fuerte); }
.about-media { position: relative; }
.about-media::before {
  content: '';
  position: absolute;
  top: -28px; right: -28px;
  width: 95%; height: 95%;
  background: var(--rosa);
  z-index: 0;
}
.about-media img { position: relative; z-index: 1; }

/* ---------- ¿Por qué? ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 55px;
}
.why-card {
  background: var(--blanco);
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(115,115,115,.08);
  transition: transform .3s;
}
.why-card:hover { transform: translateY(-6px); }
.why-card img { width: 56px; margin: 0 auto 16px; }
.why-card h3 { margin-bottom: 8px; }

/* ---------- Galería ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 45px;
  padding: 0 10px;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
}
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(30, 30, 30, .55), transparent);
  color: var(--blanco);
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-grid figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-quote {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 30px 40px;
  background: var(--rosa-suave);
  border: 1px solid var(--rosa-medio);
}
.gallery-quote .script { font-size: 38px; color: var(--rosa); }
.gallery-quote blockquote {
  font-family: var(--display);
  font-size: 22px;
  line-height: 32px;
  color: var(--negro);
  letter-spacing: 1px;
}
.gallery-quote cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gris-claro);
}

/* ---------- Fechas ---------- */
.dates-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 45px;
}
.date-card {
  width: 190px;
  background: var(--blanco);
  text-align: center;
  box-shadow: 0 10px 35px rgba(115,115,115,.10);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.date-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(115,115,115,.16);
}
.date-month {
  background: var(--rosa);
  color: var(--negro);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  padding: 12px 0 10px;
}
.date-month span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gris);
}
.date-days {
  font-family: var(--display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--negro);
  letter-spacing: 1px;
  padding: 24px 0 16px;
}
.date-days em { font-style: normal; color: var(--rosa); }
.date-times {
  border-top: 1px solid var(--rosa-suave);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gris);
  padding: 12px 0 14px;
}

/* ---------- Cifras ---------- */
.stats { background: var(--rosa); padding: 70px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 54px;
  line-height: 1.2;
  color: var(--negro);
  letter-spacing: 2px;
}
.stat p { color: var(--negro); text-transform: uppercase; font-size: 11px; letter-spacing: 2px; }

/* ---------- Tarjetas de información ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.info-card {
  position: relative;
  background: var(--blanco);
  border: 1px solid var(--rosa-medio);
  padding: 42px 30px 34px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rosa);
  transform: scaleX(0);
  transition: transform .35s;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(115,115,115,.12);
}
.info-card:hover::before { transform: scaleX(1); }
.info-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rosa-suave);
  border-radius: 50%;
}
.info-icon img { width: 46px; }
.info-card h3 { margin-bottom: 10px; }
.info-highlight {
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--negro);
  margin-bottom: 4px;
}

/* ---------- Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 45px;
}
.video-frame {
  position: relative;
  padding-top: 56.25%;
  background: var(--negro);
  box-shadow: 0 10px 35px rgba(115,115,115,.15);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-title {
  margin-top: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--negro);
}

/* ---------- Cita ---------- */
.quote {
  background: var(--rosa);
  padding: 80px 0;
  text-align: center;
}
.quote .script { color: var(--rosa-fuerte); }
.quote blockquote {
  font-family: var(--display);
  max-width: 680px;
  margin: 18px auto;
  font-size: 24px;
  line-height: 36px;
  color: var(--negro);
  font-style: italic;
}
.quote-author {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: var(--negro);
}

/* ---------- Contacto ---------- */
.contact-form { max-width: 640px; margin: 40px auto 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rosa);
  background: var(--rosa-suave);
  font-family: var(--font);
  font-size: 13px;
  line-height: 24px;
  color: var(--negro);
  outline: none;
  transition: border-color .3s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gris); background: var(--blanco); }
.contact-form ::placeholder { color: var(--gris-claro); }
.contact-form .btn-solid { display: block; margin: 24px auto 0; }

/* ---------- Footer ---------- */
.footer { background: var(--negro); color: #cfcfcf; padding: 70px 0 0; }
.footer h4 { color: var(--blanco); }
.footer a { color: #cfcfcf; }
.footer a:hover { color: var(--rosa); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
}
.footer-grid > div:first-child { text-align: left; }
.footer-grid > div:last-child { text-align: right; }
.footer-brand img { width: 180px; margin: 0 auto 10px; border-radius: 50%; }
.footer-brand .script { color: var(--rosa); font-size: 34px; }
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  font-size: 11px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 15, 17, .94);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  text-align: center;
  color: var(--blanco);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .95;
  pointer-events: none;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--blanco);
  cursor: pointer;
  font-family: var(--font);
  opacity: .8;
  transition: opacity .3s, transform .3s;
  z-index: 201;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close {
  top: 18px;
  right: 24px;
  font-size: 44px;
  line-height: 1;
}
.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  padding: 18px;
}
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
body.lb-lock { overflow: hidden; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Animación de entrada ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-media { opacity: .35; width: 80%; }
  .hero-content { margin-left: 0; }
}

@media (max-width: 720px) {
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanco);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid #f0e4e7;
    display: none;
  }
  .menu.open { display: flex; }
  .menu a { padding: 12px 24px; width: 100%; text-align: center; }
  .burger { display: block; }
  .topbar { font-size: 9px; letter-spacing: 2px; }
  .topbar-inner { justify-content: center; }
  .topbar-welcome { flex-wrap: wrap; justify-content: center; }
  .topbar-brand { font-size: 17px; }
  .topbar-dot { margin: 0 8px; }
  .topbar-right { display: none; }
  .about-media::before { top: -12px; right: -12px; }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    display: block;
    padding: 0;
    text-align: center;
  }
  .hero-shape { display: none; }
  .hero-media {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 1;
    margin: 0;
  }
  .hero-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  .hero-content {
    max-width: none;
    padding: 26px 24px 44px;
  }
  .hero-content .script { font-size: 40px; }
  .hero-content h1 { font-size: 25px; line-height: 33px; letter-spacing: 2px; }
  .hero-sub { margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }
  .gallery-grid figcaption {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: .5px;
    padding: 20px 8px 8px;
  }
  .gallery-quote { grid-column: span 2; padding: 30px 24px; gap: 8px; }
  .gallery-quote .script { font-size: 34px; }
  .gallery-quote blockquote { font-size: 17px; line-height: 26px; }
  .gallery-quote cite { font-size: 10px; }
  .gallery-grid figure:last-child { grid-column: span 2; aspect-ratio: 3 / 2; }
  .info-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child { text-align: center; }
  h1 { font-size: 32px; line-height: 40px; }
  h2 { font-size: 26px; line-height: 34px; }
  .section, .section-alt { padding: 60px 0; }

  

}

/* ===================================
   CTA - Problema Real
=================================== */

.problem-cta{

    width:100%;
    padding:50px 30px;

    background: var(--rosa);

    text-align:center;

}

.problem-overlay{

    max-width:900px;
    margin:auto;

}

.problem-cta .script{

    font-size:54px;
    color:var(--gris);

}

.problem-cta h2{

    margin:20px auto 35px;
    max-width:800px;
    color: var(--gris);

    font-size:48px;
    line-height:58px;

}

.problem-text{

    max-width:760px;

    margin:auto;

    font-size:16px;

    line-height:1.9;

    color:var(--gris);

}
/*=========================
        HISTORIA
=========================*/

.story{
    padding:90px 0;
}

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

.story-image img{
    width:100%;
    display:block;
    border-radius:6px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.story-content{
    max-width:520px;
}

.story-content .script{
    margin-bottom:10px;
}

.story-content h2{
    margin-bottom:30px;
}

.story-lead{
    font-size:22px;
    line-height:1.8;
    color:var(--negro);
    margin-bottom:25px;
}

.story-line{
    width:400px;
    height:2px;
    background:var(--rosa);
    margin-bottom:30px;
}

.story-content p{
    margin-bottom:20px;
}

.story-highlight{
    font-family:var(--display);
    font-size:30px;
    color:var(--negro);
    margin:40px 0;
}

.story-end{
    margin:50px 0 30px;
    padding-left:20px;
    border-left:4px solid var(--rosa);
    background-color: var(--blanco);
}

.story-end span{
    display:block;
    color:var(--gris);
}

.story-end h3{
    margin:0;
}

@media (max-width: 720px) {

  /* Evita cualquier desbordamiento horizontal */
  .story,
  .story .container,
  .story-grid,
  .story-content,
  .story-image,
  .story-end {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .story {
    padding: 55px 0;
    overflow: hidden;
  }

  .story .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Una sola columna */
  .story-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Imagen completa */
  .story-image {
    order: 1;
    width: 100%;
  }

  .story-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 4px;
  }

  /* Texto debajo */
  .story-content {
    order: 2;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .story-content .script {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .story-content h2 {
    width: 100%;
    margin: 0 auto 22px;
    font-size: 25px;
    line-height: 34px;
    letter-spacing: 2px;
    overflow-wrap: anywhere;
  }

  .story-lead {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* Esta regla corrige uno de los errores principales */
  .story-line {
    width: 75px;
    max-width: 100%;
    margin: 0 auto 25px;
  }

  .story-content p {
    width: 100%;
    margin: 0 auto 18px;
    font-size: 14px;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }

  .story-highlight {
    margin: 28px 0;
    font-size: 23px;
    line-height: 1.4;
  }

  .story-end {
    margin: 32px 0 24px;
    padding: 22px 18px;
    border-left: 4px solid var(--rosa);
    text-align: left;
    overflow: hidden;
  }

  .story-end span {
    font-size: 13px;
  }

  .story-end h3 {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 2px;
    overflow-wrap: anywhere;
  }

  .story .btn-outline {
    display: inline-block;
    width: auto;
    max-width: 100%;
    padding: 12px 24px;
    margin: 8px auto 0;
  }

  .problem-cta h2 {
    font-size: 30px;
    line-height: normal;
  }

}

.testimonial-slider{
    position:relative;
    max-width:850px;
    margin:auto;
}

.testimonial{
    display:none;
    animation:fade .5s ease;
}

.testimonial.active{
    display:block;
}

.testimonial-controls{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.testimonial-controls button{

    width:45px;
    height:45px;

    border:none;
    border-radius:50%;

    background:white;

    color:var(--negro);

    cursor:pointer;

    transition:.3s;

}

.testimonial-controls button:hover{

    background:var(--negro);

    color:white;

}

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:none;

    }

}

.contenedor-boton {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;    /* Centra verticalmente (opcional) */
  width: 100%;
}