:root{
  --fg: #0f1012;
  --muted: #1e1818;
  --brand: #d9b6a3;
  --brand-ink: #b36891;
  --maxw: 1120px;
}

/* ===== Reset base ===== */
*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fg);
  background: #ede8e4;
}

.container{ width: min(92vw, var(--maxw)); margin: 0 auto; }
.section-pad{ padding: 72px 0; }

/* ===== Header / Nav ===== */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,0));
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled{
  background: rgba(10,10,12,.9);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  backdrop-filter: saturate(120%) blur(6px);
}
.nav-wrap{
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand{
  color: #d9b6a3; text-decoration: none; font-weight: 600; letter-spacing: 0.5px; font-size: 1.15rem;
  font-family: 'Playfair Display', serif; transition: color .3s ease;
}
.brand:hover { color: var(--brand); }

.nav ul{ list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.nav a{ color: #d9b6a3; text-decoration: none; font-weight: 500; opacity: .9; }
.nav a:hover{ opacity: 1; }

/* Toggle móvil */
.nav-toggle{ display: none; width: 42px; height: 38px; background: transparent; border: 0; cursor: pointer; }
.nav-toggle span{ display: block; height: 2px; background: #fff; margin: 7px 0; transition: transform .25s, opacity .25s; }

@media (max-width: 860px){
  .nav-toggle{ display: inline-block; }
  .nav{ position: absolute; right: 4vw; top: 64px; background: rgba(14,14,18,.95);
        border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 10px 14px; display: none; }
  .nav.open{ display: block; }
  .nav ul{ flex-direction: column; gap: 12px; }
}

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 100dvh;
  display: grid; place-items: center;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(0,0,0,.55), transparent 60%),
    radial-gradient(800px 600px at 20% 90%, rgba(0,0,0,.45), transparent 60%),
    #111;
  isolation: isolate;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image: url("../assets/hero.jpg");
  background-size: cover; background-position: center;
  filter: blur(2px) brightness(.6); transform: scale(1.02);
  z-index: -2;
}
.hero__overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(236, 230, 230, 0.293), rgba(248, 243, 243, 0.468)); z-index:-1; }

.hero__content{ text-align: center; margin-top: 40px; }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100%{ opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw + 1rem, 4rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  animation: fadeUp 1.5s ease-out forwards;
  animation-delay: 0.2s;
}
.hero__lead{
  color: var(--muted);
  font-size: clamp(1rem, .9rem + .5vw, 1.15rem);
  max-width: 900px; margin: 0 auto 32px;
  animation: fadeUp 1.6s ease-out forwards;
  animation-delay: 0.2s;
}

/* Botones */
.btn{ display:inline-block; padding:14px 28px; border-radius:999px; text-decoration:none; font-weight:600; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; }
.btn-primary{ background: var(--brand); color: var(--brand-ink); box-shadow: 0 10px 24px rgba(0,0,0,.35); animation: fadeUp 1.7s ease-out forwards; animation-delay: .2s; }
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 12px 28px rgba(221,22,161,.577); }

/* Logos hero */
.hero__logo{
  position: absolute; top: 20%;
  width: 250px; opacity: .85;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.3));
  transition: transform .3s ease, opacity .3s ease;
  z-index: 2;
}
.hero__logo--left{ left: 1%; top: 1%; }
.hero__logo--right{ right: 1%; top: 1%; }
.hero__logo:hover{ transform: scale(1.05); opacity: 1; }
@media (max-width: 860px){ .hero__logo{ display: none; } }

/* Indicador scroll */
.scroll-indicator{
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  animation: floatY 2.2s ease-in-out infinite;
  transition: opacity .25s ease, transform .25s ease;
}
.scroll-indicator:hover{ transform: translateX(-50%) translateY(-2px); }
.scroll-indicator.hide{ opacity: 0; transform: translateX(-50%) translateY(12px); pointer-events: none; }
@keyframes floatY{ 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }
@media (prefers-reduced-motion: reduce){ .scroll-indicator{ animation: none; } }

/* ===== Sobre Nosotros ===== */
.about{
  background: #f4ede8;
  color: #3a2e28;
  padding: 100px 0;
}
.about__content{
  display: flex; justify-content: space-between; align-items: center; gap: 60px;
  max-width: 1100px; margin: 0 auto;
}
.about__text-block{ flex: 1 1 55%; text-align: left; }
.about__title{
  font-family: 'Playfair Display', serif; font-size: 2.4rem; color: #3a2e28;
  margin-bottom: 22px; letter-spacing: .5px;
}
.about__text{
  font-size: 1.1rem; line-height: 1.8; color: #4a3b33; text-align: justify; max-width: 95%;
}
.about__text strong{ font-family: 'Playfair Display', serif; color: #2e1f18; font-weight: 600; }

.about__image{ flex: 1 1 40%; display: flex; justify-content: flex-end; }
.about__image img{
  width: 100%; max-width: 480px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.25);
  animation: fadeUp 1.2s ease-out;
}

@media (max-width: 900px){
  .about__content{ flex-direction: column; text-align: center; }
  .about__text-block{ text-align: center; }
  .about__text{ text-align: center; max-width: 90%; margin: 0 auto; }
  .about__image img{ max-width: 380px; }
}

.about__team{
  margin-top: 35px; border-left: 4px solid #d9b6a3; padding-left: 16px;
  font-family: 'Playfair Display', serif; color: #3a2e28; line-height: 1.7; animation: fadeUp 1.3s ease-out;
}
.about__team p{ margin: 8px 0; font-size: 1.05rem; }
.about__title-decor{
  display:flex; align-items:center; justify-content:center; gap:18px; margin-bottom:25px; position:relative;
}
.circle{
  width:14px; height:14px; border-radius:50%; background-color:#d9b6a3;
  box-shadow:0 0 10px rgba(217,182,163,.5); animation:pulse 2.8s infinite ease-in-out;
}
@keyframes pulse{ 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.3); opacity:.6; } }

/* ===== Stats ===== */
.stats{ background:#e1ddd5; padding:60px 0; text-align:center; }
.stats__content{ display:flex; justify-content:center; align-items:center; gap:100px; flex-wrap:wrap; }
.stat{ animation: fadeUp 1.2s ease-out; }
.stat__number{ font-family:'Playfair Display', serif; font-size:3rem; font-weight:700; color:#d9b6a3; margin:0; }
.stat__label{ font-size:1.1rem; color:#5c5c5c; margin-top:8px; }
@media (max-width:900px){ .stats__content{ gap:50px; } .stat__number{ font-size:2.4rem; } }

/* ===== Galería – carrusel (antes/después) ===== */
.gallery{ background:#f4efe9; color:#3a2e28; }
.gallery .section-title{ text-align:center; margin-bottom:6px; }
.gallery__lead{ text-align:center; color:#6b5b52; margin:0 0 30px; }

.carousel{ position:relative; overflow:hidden; border-radius:18px; }
.carousel__track{ display:flex; transition: transform .5s ease; will-change: transform; }
.slide{ min-width:100%; padding:10px; box-sizing:border-box; }

.carousel__btn{
  position:absolute; top:50%; transform:translateY(-50%); z-index:5;
  width:44px; height:44px; border-radius:999px; border:1px solid rgba(0,0,0,.15);
  background:rgba(255,255,255,.7); backdrop-filter: blur(6px); cursor:pointer;
  display:grid; place-items:center; transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.carousel__btn:hover{ background:#fff; transform: translateY(-50%) scale(1.04); }
.carousel__btn.prev{ left:12px; } .carousel__btn.next{ right:12px; }

.carousel__dots{ display:flex; gap:8px; justify-content:center; margin-top:16px; }
.carousel__dots button{
  width:8px; height:8px; border-radius:999px; border:0; background:#cdb7a9; opacity:.6; cursor:pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.carousel__dots button.active{ opacity:1; transform:scale(1.2); background:#b69682; }

/* Antes / Después */
.ba{
  margin:0; display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:stretch;
}
.ba__item{
  position:relative; border-radius:16px; overflow:hidden; box-shadow:0 12px 30px rgba(0,0,0,.22); background:#000;
}
.ba__item img{
  display:block; width:100%; height:420px; object-fit:cover;
  filter: saturate(1.03) contrast(1.02);
}
.badge{
  position:absolute; left:12px; top:12px; padding:6px 10px; border-radius:999px;
  font-size:.8rem; font-weight:600; background:rgba(0,0,0,.55); color:#fff; border:1px solid rgba(255,255,255,.2);
}
.badge--after{ background:rgba(255,255,255,.75); color:#2e1f18; border-color:rgba(0,0,0,.08); }
.ba figcaption{ grid-column:1/-1; text-align:center; margin-top:10px; font-family:'Playfair Display', serif; font-weight:600; color:#3a2e28; }

@media (max-width:980px){ .ba__item img{ height:340px; } }
@media (max-width:740px){
  .ba{ grid-template-columns:1fr; }
  .ba__item img{ height:300px; }
  .carousel__btn{ display:none; } /* flechas fuera en móvil */
}

/* ===== Servicios (tabs + carrusel horizontal) ===== */
.services{
  background: linear-gradient(180deg, #f3ede8, #efe8e1);
  text-align: center;
}
.services .section-title{ font-family:'Playfair Display', serif; font-weight:700; letter-spacing:.2px; }

.services__tabs{
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
  margin: 10px 0 24px;
}
.services__tab{
  border:1px solid rgba(0,0,0,.08);
  background:#fff; color:#3a2e28; padding:10px 16px; border-radius:999px;
  font-weight:700; cursor:pointer; transition: box-shadow .2s ease, transform .15s ease, background .2s;
}
.services__tab:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.12); }
.services__tab.is-active{ background: var(--brand); color: var(--brand-ink); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

.services__panels{ margin-top: 2px; }
.services__panel{ display:none; animation: fadeUp .45s ease both; }
.services__panel.is-active{ display:block; }

.services-carousel{ position:relative; overflow:hidden; width:100%; }
.services-track{ display:flex; gap:20px; overflow-x:auto; scroll-behavior:smooth; padding:10px; }

.service-card{
  min-width:280px; background:#fff; border-radius:16px;
  box-shadow:0 8px 18px rgba(0,0,0,.1); overflow:hidden; transition: transform .3s ease;
}
.service-card:hover{ transform: translateY(-4px); }
.service-card img{ width:100%; height:180px; object-fit:cover; }
.service-card h3{ font-family:'Playfair Display', serif; font-weight:700; margin:12px 0 6px; }
.service-card p{ margin:0 0 12px; color:#5c524b; }

.carousel-btn{
  position:absolute; top:45%; background:var(--brand); color:#fff; border:0;
  font-size:24px; border-radius:50%; width:40px; height:40px; cursor:pointer; opacity:.85; transition:.3s;
}
.carousel-btn:hover{ opacity:1; }
.carousel-btn.prev{ left:0; } .carousel-btn.next{ right:0; }

/* ===== Footer ===== */
.site-footer{ border-top: 1px solid rgba(255,255,255,.06); padding: 40px 0; color: #bdbdc4; background: #0f1013; }


/* ==== Tarjeta de servicio rectangular y consistente ==== */
.services-track{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  align-items: stretch;           /* todas las tarjetas misma altura */
}

.service-card{
  min-width: 300px;               /* ancho de cada slide */
  width: 300px;
  height: 360px;                  /* ALTURA FIJA del rectángulo */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
  overflow: hidden;
  display: grid;                  /* 2 filas: media + contenido */
  grid-template-rows: 190px 1fr;  /* alto del área de imagen + resto para texto */
  transition: transform .3s ease;
}
.service-card:hover{ transform: translateY(-4px); }

/* Área de imagen (si una imagen no carga, mantiene el alto) */
.service-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;              /* recorta sin deformar */
  display: block;
  background: #f3f0ed;           /* color de “placeholder” */
}

/* Contenido */
.service-card h3,
.service-card p{
  margin: 0;
  padding: 0 16px;
}
.service-card h3{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-top: 12px;
  line-height: 1.2;
  /* Si quieres limitar a 1–2 líneas sin desbordar: */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card p{
  color: #5c524b;
  margin-bottom: 14px;
  line-height: 1.45;
  /* Limita a 3 líneas en móviles/laptops para que nunca “crezca” */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Opcional: ajustes responsivos */
@media (max-width: 900px){
  .service-card{ min-width: 260px; width: 260px; height: 340px; grid-template-rows: 170px 1fr; }
}
@media (max-width: 600px){
  .service-card{ min-width: 240px; width: 240px; height: 320px; grid-template-rows: 160px 1fr; }
}

/* Oculta la barra gris del scroll horizontal */
.services-track {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer / Edge */
}
.services-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* ======== SECCIÓN MISIÓN Y VISIÓN ======== */
.mision-vision {
  background: #f7f3ef;
  color: #3a2e28;
  text-align: center;
  padding: 90px 0;
}

.mision-vision__title-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
}

.mision-vision .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #3a2e28;
  letter-spacing: 0.5px;
}

.mision-vision__content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mv-box {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  padding: 32px 26px;
  max-width: 460px;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  text-align: left;
}

.mv-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.mv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brand-ink);
  margin-bottom: 14px;
  text-align: center;
}

.mv-box p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4c3f36;
  text-align: justify;
}

/* Responsive */
@media (max-width: 900px) {
  .mv-box {
    max-width: 90%;
  }
}

/* ======== Barra lateral de redes sociales ======== */
.social-sidebar {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #3a2e28;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  font-size: 1.4rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

/* Efecto hover suave */
.social-link:hover {
  transform: translateY(-2px) scale(1.05);
  color: #fff;
}

/* Colores personalizados */
.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.tiktok:hover {
  background: linear-gradient(45deg, #25f4ee, #000000, #fe2c55);
}
.whatsapp:hover {
  background: #25d366;
}

.facebook:hover {
  background: #1877f2;
  color: #fff;
}


/* Adaptación a pantallas pequeñas */
@media (max-width: 768px) {
  .social-sidebar {
    right: 10px;
    top: auto;
    bottom: 16px;
    transform: none;
    flex-direction: row;
    background: rgba(255,255,255,0.8);
    padding: 8px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  }
}

.bg-soft {
  background: #f6f5f4;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.videos-grid video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.videos-grid h3 {
  font-size: 1.2rem;
  margin: 10px 0 4px;
  text-align: center;
}

/* ===== TESTIMONIOS EN VIDEO ===== */
.testimonials {
  background: #f4efe9;
  color: #3a2e28;
  text-align: center;
}

.testimonials .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.testimonials .subtitle {
  font-size: 1rem;
  color: #6b5b52;
  margin-bottom: 36px;
}

.video-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.video-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.video-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.video-slide h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.video-slide video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: var(--brand);
  color: var(--brand-ink);
  border: none;
  font-size: 24px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.85;
  transition: 0.3s;
  z-index: 5;
}
.carousel-btn:hover { opacity: 1; transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cdb7a9;
  opacity: 0.6;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.carousel-dots button.active {
  background: var(--brand);
  opacity: 1;
  transform: scale(1.3);
}

/* ====== Tamaño más compacto para Testimonios ====== */
.testimonials .video-carousel{
  max-width: 680px;        /* antes 900px */
  border-radius: 16px;
}

.testimonials .video-slide{
  padding: 14px;           /* menos padding interno */
}

.testimonials .video-slide video{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;    /* mantiene proporción sin deformar */
  border-radius: 12px;
}

/* Botones un poco más pequeños */
.testimonials .carousel-btn{
  width: 36px;
  height: 36px;
  font-size: 20px;
}

/* En móviles, aún más compacto si quieres */
@media (max-width: 480px){
  .testimonials .video-carousel{ max-width: 92vw; }
  .testimonials .video-slide{ padding: 10px; }
}

/* ===== Misión/Visión inline bajo Sobre Nosotros ===== */
.mv-inline{
  margin-top: 26px;
}

.mv-inline__tabs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0 18px;
}

.mv-btn{
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: #3a2e28;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .15s ease, background .2s ease;
}
.mv-btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.12); }
.mv-btn.is-active{
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.mv-inline__panels{
  display: grid;
  gap: 14px;
}

.mv-panel{
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  padding: 22px 20px;
  text-align: left;
  transition: transform .25s ease, box-shadow .3s ease, opacity .2s ease;
}
.mv-panel.is-active{ opacity: 1; transform: translateY(0); }
.mv-panel[hidden]{ display: none !important; }

.mv-panel .mv-title{
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--brand-ink);
  margin: 4px 0 10px;
  text-align: center;
}
.mv-panel p{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4c3f36;
  text-align: justify;
}

/* Compacto en móvil */
@media (max-width: 900px){
  .mv-panel{ padding: 18px 16px; }
}

/* ===== Título + botones a la derecha ===== */
.about__title-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.about-switch{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.about-switch__btn{
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: #3a2e28;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .15s ease, background .2s ease;
  font-size: .95rem;
}
.about-switch__btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.12); }
.about-switch__btn.is-active{
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* Paneles (solo muestra uno) */
.about-panels{ display: grid; }
.about-panel{ animation: fadeUp .35s ease both; }
.about-panel[hidden]{ display: none !important; }

/* Título interno de Misión/Visión */
.mv-title{
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--brand-ink);
  margin: 6px 0 10px;
  text-align: left;
}

/* Responsive: botones debajo del título en móvil */
@media (max-width: 900px){
  .about__title-row{ flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== Unificar estilo de texto en Sobre, Misión y Visión ===== */
.about-panel p {
  text-align: justify;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3a2e28;
  margin-bottom: 16px;
}

/* Mejor presentación de los títulos internos */
.mv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #b36891;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
}

/* Suavizar transición al cambiar */
.about-panel {
  animation: fadeUp .35s ease both;
  transition: opacity .25s ease, transform .25s ease;
}
.about-panel[hidden] {
  display: none !important;
  opacity: 0;
  transform: translateY(15px);
}
.about-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Botones activos con degradado suave */
.about-switch__btn.is-active {
  background: linear-gradient(135deg, var(--brand), #e4c3b2);
  color: var(--brand-ink);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
