/* ================= RESET ================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.6), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(198,169,107,0.07), transparent 50%),
    linear-gradient(to bottom, #faf7f2 0%, #f2eee8 100%);
  font-family: 'Montserrat', sans-serif;
  color: #4f483f;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

/* ================= SECTIONS ================= */

section {
  padding: 200px 12%;
  text-align: center;
  scroll-margin-top: 140px;
}

/* ================= TYPO ================= */

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 400;
  letter-spacing: -0.5px;
 margin-bottom: 80px;
  color: #3f3932;
  line-height: 1.05;
}

/* ================= INTRO ================= */

.intro {
  position: fixed;
  inset: 0;
  background: #faf7f2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  transition: opacity 1.6s cubic-bezier(.19,1,.22,1);
}

.intro img {
  width: 280px;
}

.intro-hide {
  opacity: 0;
  pointer-events: none;
}

/* ================= NAV ================= */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding:  24px 80px;
  background: rgba(250, 247, 242, 0.708);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  transition: all 0.6s ease;
}

.nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo {
  text-align: center;
  font-size: 26px;
  letter-spacing: 12px;
  font-weight: 300;
  color: #4f483f;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 60px;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 300;
  color: #3f3932;
  position: relative;
  transition: opacity 0.4s ease;
}
/* ================= ABOUT ================= */

#about {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;

  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}

#about h2 {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

#about p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1px;
  color: #6b6661;
  max-width: 650px;
  margin: 0 auto;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 1px;
  background: #c6a96b;
  transition: width 0.6s cubic-bezier(.19,1,.22,1);
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  opacity: 0.7;
}

/* ================= MOBILE MENU OVERLAY ================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #4f483f;
  transition: 0.4s ease;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #faf7f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;

  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;

  transition: all 0.6s cubic-bezier(.19,1,.22,1);
  z-index: 900;
}

.nav-mobile a {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 6px;
  color: #4f483f;
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* ================= HERO ================= */

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
    url("./images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 180px;
  text-align: center;
}


.hero-content {
  max-width: 800px;
  width: 100%;
}

.hero-logo {
  width: 420px;
  max-width: 90%;
  margin-bottom: 40px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  margin-bottom: 50px;
  line-height: 1.4;
}

/* ================= BUTTON ================= */
.btn-outline {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
text-decoration: none;
  border: 1px solid #c6a96b;
  padding: 18px 54px;
  border-radius: 50px;

  font-size: 12px;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;

  color: #3f3932;
  cursor: pointer;
  display: inline-block;

  transition: all 0.5s cubic-bezier(.19,1,.22,1);
}

.btn-outline:hover {
  background: #c6a96b;
  color: #faf7f2;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(198,169,107,0.18);
}
/* ORIGEN */

.atelier-origen {
  padding: 120px 8%;
  background: #fcfaf7;
  text-align: center;
}

.origen-container {
  max-width: 900px;
  margin: 0 auto;
}

.origen-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b9a48c;
}

.atelier-origen h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  margin: 25px 0 50px;
  letter-spacing: -0.5px;
}

.origen-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 300;
  color: #444;
  max-width: 720px;
  margin: 0 auto 28px;
}

.origen-signature {
  margin-top: 80px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
}

.origen-signature strong {
  display: block;
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 4px;
}
/* ANIMACIÓN CINEMATOGRÁFICA */

/* ANIMACIÓN CINEMATOGRÁFICA PRO */

.atelier-origen {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(6px);
  transition: opacity 1.4s ease, transform 1.4s ease, filter 1.4s ease;
}

.atelier-origen.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Elementos internos */

.atelier-origen h2,
.origen-text,
.origen-signature {
  opacity: 0;
  transform: translateY(30px);
}

.atelier-origen.visible h2 {
  animation: cinematicFade 1.4s ease forwards;
  animation-delay: 0.3s;
}

.atelier-origen.visible .origen-text {
  animation: cinematicFade 1.4s ease forwards;
  animation-delay: 0.8s;
}

.atelier-origen.visible .origen-signature {
  animation: signatureReveal 1.6s ease forwards;
  animation-delay: 1.4s;
}

@keyframes cinematicFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signatureReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ================= SAVE THE DATE MINIMAL ================= */

.std-minimal {
    padding: 100px 12%;
    background: #fcfaf7;
    text-align: center;
}

.std-minimal-header {
    margin-bottom: 70px;
}

.std-intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #888;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.std-minimal-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ================= SAVE THE DATE CON BORDE DORADO (REVISADO) ================= */

.std-minimal-card {
    flex: 1;
    display: flex;
    gap: 30px;
    text-align: left;
    padding: 50px;
    background: #fff;
    /* BORDE INICIAL SUTIL (casi invisible) */
    border: 1px solid rgba(0,0,0,0.02); 
    text-decoration: none;
    color: inherit;
    /* TRANSICIÓN SUAVE PARA EL BORDE */
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* EL EFECTO: Cuando el usuario se para (hover) en la tarjeta */
.std-minimal-card:hover {
    /* El borde cambia al dorado Atelier */
    border-color: #c6a96b; 
    /* Levanta sutilmente la tarjeta para dar profundidad */
    transform: translateY(-5px);
    /* Una sombra suave para complementar */
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

/* Tip para que los números dorados no distraigan en el hover */
.std-minimal-card:hover .std-number-small {
    color: #c6a96b; /* Mantiene su color sin cambios */
}

.std-number-small {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: #c6a96b;
    margin-top: 5px;
}

.std-minimal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 400;
}

.std-minimal-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Reutilización de tus estilos de precio existentes */
.std-minimal-content .price-box {
    display: flex;
    flex-direction: column;
    letter-spacing: 1px;
}

.std-minimal-content .price-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.std-minimal-content .price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
}
/* Contenedor de botones para que no se pegoteen */
.std-button-group {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px; /* Espacio entre el 'Ver ejemplo' y 'Solicitar propuesta' */
    align-items: flex-start;
}
.std-minimal-content .btn-minimal {
    display: block;
    width: fit-content;
    margin-top: 20px; /* Espacio entre links */
}
/* Responsive */
@media (max-width: 900px) {
    .std-minimal-grid {
        flex-direction: column;
        padding: 0 5%;
    }
    .std-minimal-card {
        padding: 40px 30px;
    }
}
/* ============================= */
/* PORTFOLIO MINIMAL EDITORIAL */
/* ============================= */

.portfolio-luxe {
padding: 160px 4% 140px;  background: #fcfaf7;
}

.section-header {
  margin-bottom: 110px;
}

.section-header .subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #c6a96b;
  display: block;
  margin-bottom: 18px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 400;
  color: #1a1a1a;
}
.price-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.price-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
}
/* GRID */

.portfolio-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* CARD BASE */

.portfolio-card {
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 1s cubic-bezier(.19,1,.22,1),
              opacity .6s ease;
}

/* IMAGE */

.image-container {
  margin-bottom: 40px;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 35px 70px rgba(0,0,0,0.08);
}

/* META */

.card-meta {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.card-meta .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: #c6a96b;
}

.card-titles .tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
}

.card-titles h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-top: 6px;
  color: #222;
  transition: letter-spacing .6s ease;
}

.portfolio-card:hover .card-titles h3 {
  letter-spacing: 1px;
}

/* ============================= */
/* EDITORIAL EXPANSION EFFECT */
/* ============================= */

/* Cuando el mouse entra al grid, todas se atenúan */
.portfolio-grid-v2:hover .portfolio-card {
  opacity: 0.4;
}

/* La activa crece fuerte */
.portfolio-grid-v2 .portfolio-card:hover {
  transform: scale(1.20);
  opacity: 1;
  z-index: 5;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .portfolio-grid-v2 {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  /* En mobile desactivamos expansión */
  .portfolio-grid-v2:hover .portfolio-card {
    opacity: 1;
  }

  .portfolio-grid-v2 .portfolio-card:hover {
    transform: none;
  }
}
/* --- DETALLE V2 (ESTILO BOUTIQUE) --- */
.detail-v2 { padding: 180px 8%; border-top: 1px solid rgba(198, 169, 107, 0.1); }

.detail-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 350px 1fr; gap: 80px;
}

.detail-aside { position: sticky; top: 120px; height: fit-content; text-align: left; }
.aside-label { color: #c6a96b; font-size: 11px; letter-spacing: 5px; text-transform: uppercase; }
.aside-title { 
  font-size: 72px !important; margin: 20px 0 !important; 
  text-align: left !important; line-height: 0.9 !important;
}
.aside-desc { font-size: 15px; line-height: 1.8; color: #888; font-weight: 300; }

.detail-main-image { grid-column: 2; margin-bottom: 80px; }
.detail-main-image img { width: 100%; max-height: 700px; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,0.05); }

.detail-content-grid { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; text-align: left; }
.content-tag { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 25px; color: #c6a96b; }
.content-col p { font-size: 16px; line-height: 1.9; color: #555; font-weight: 300; }

.luxe-list { list-style: none; padding: 0; }
.luxe-list li {
  font-size: 12px; text-transform: uppercase; margin-bottom: 15px;
  letter-spacing: 1.5px; color: #555; position: relative; padding-left: 25px;
}
.luxe-list li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 15px; height: 1px; background: #c6a96b;
}

.detail-footer { grid-column: 2; text-align: left; margin-top: 60px; }
.btn-minimal {
  text-decoration: none; color: #333; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  border-bottom: 1px solid #c6a96b; padding-bottom: 10px;
  transition: 0.4s ease;
}
.btn-minimal:hover { color: #c6a96b; letter-spacing: 6px; }
#premium .aside-title {
  font-size: 78px !important;
}
/* Responsive */
@media (max-width: 1024px) {
  .portfolio-grid-v2 { grid-template-columns: 1fr; gap: 80px; }
  .card-short, .card-medium { margin-top: 0; }
  .detail-container { grid-template-columns: 1fr; }
  .detail-aside, .detail-main-image, .detail-content-grid, .detail-footer { grid-column: 1; position: relative; top: 0; }
  .aside-title { font-size: 50px !important; }
}

/* ===== DETALLES DE PLANES ===== */
/* DETALLES DE PLANES REFINADOS */
.collection-detail {
  padding: 150px 20px; /* Más espacio vertical */
  border-bottom: 1px solid rgba(198, 169, 107, 0.1); /* Separación sutil entre planes */
}

.collection-hero {
  max-height: 600px;
  margin-bottom: 80px;
}

.collection-text h3 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: -1px;
}

.collection-block .label {
  font-size: 11px;
  letter-spacing: 4px;
  border-left: 2px solid #c6a96b; /* Una pequeña marca vertical de diseño */
  padding-left: 15px;
  margin-bottom: 20px;
}

.collection-block p {
  font-size: 17px;
  color: #555;
  font-weight: 300;
  padding-left: 17px; /* Alineado con la marca del label */
}

/* El botón de "Ver invitación" debe ser más exclusivo */
.collection-text .btn-outline {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  padding: 20px 60px;
  font-weight: 400;
}
/* ================= PROCESS ================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 120px;
}

.process-card span {
  font-size: 22px;
  letter-spacing: 6px;
  color: #c6a96b;
}

.process-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  margin: 20px 0;
}

.process-card p {
  font-size: 18px;
  line-height: 1.7;
}
/* 1. ESTILO BASE (Igual para todos) */
.centralizar-demo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background: none !important;
}

.demo-celular-simple {
  position: relative;
  display: inline-block;
  width: 65%; 
  max-width: 300px;
  background: transparent !important;
  text-decoration: none;
}

.img-celu-png {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.06)); 
}

.capa-boton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
}

/* 2. EL BOTÓN (Con el ajuste de Essential por defecto) */
.boton-demo-texto {
  background-color: #fcfaf7;
  color: #1a1a1a;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;

  /* Ajuste para el primero (Essential) */
  margin-top: -10px; 
  margin-left: 20px; 
}

/* 3. AJUSTES INDIVIDUALES (Aquí es donde corregís los que quedaron mal) */

/* Si Signature quedó corrido, este margen de 25px lo arregla solo a él */
.ajuste-signature .boton-demo-texto {
  margin-left: 5px; 
}

/* Si Premium también está corrido, hacés lo mismo aquí */
.ajuste-premium .boton-demo-texto {
  margin-left: 5px; /* Ajustá este número a ojo */
}

/* Hover suave */
.demo-celular-simple:hover .boton-demo-texto {
  transform: scale(1.08);
  letter-spacing: 3px;
  background-color: #fcfaf7;
}
/* ================= ATELIER DIFERENCIAL ================= */

.atelier-diferencial {
  padding: 200px 12%;
  text-align: center;
  background: linear-gradient(to bottom, #f7f4ef, #f3efe9);
}

.atelier-diferencial h2 {
  max-width: 900px;
  margin: 0 auto 120px auto;
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.atelier-grid div {
  position: relative;
  padding-top: 40px;
}

/* línea editorial superior sutil */
.atelier-grid div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: rgba(198,169,107,0.6);
}

/* títulos */
.atelier-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #3f3932;
  letter-spacing: 0.5px;
}

/* textos */
.atelier-grid p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 1px;
  color: #6b6661;
  max-width: 280px;
  margin: 0 auto;
}

/* ================= EXPERIENCIA ================= */

.experiencia {
  padding: 120px 20px;
  text-align: center;
  background: #f3efe9;
}

.experiencia h2 {
  margin-bottom: 70px;
}

.experiencia-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.experiencia-item {
  max-width: 260px;
}

.experiencia-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: #5f584f;
}

.experiencia-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.7;
  color: #6b6661;
}

/* ================= CUPOS ================= */

.cupos {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b89b5e;
  margin-bottom: 40px;
}
.manifesto {
  padding: 180px 12%;
  background: #f3efe9;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #3f3932;
}

.manifesto-line.emphasis {
  font-size: 42px;
  color: #2f2a25;
}

.manifesto-text {
  margin-top: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.9;
  color: #6b6661;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .manifesto-line {
    font-size: 28px;
  }

  .manifesto-line.emphasis {
    font-size: 32px;
  }

  .experiencia-grid {
    gap: 40px;
  }

}

/* ================= TESTIMONIALS ================= */

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.testimonial {
  max-width: 420px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
}

.testimonial span {
  display: block;
  margin-top: 25px;
  font-size: 12px;
  letter-spacing: 3px;
}

/* ================= FAQ ================= */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #d8cfc2;
  padding: 25px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #4f483f;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 17px;
  padding: 0 10px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 10px;
}
.atelier-disponibilidad {
padding: 4rem 2rem 2rem !important;
  background: #f0ebe3;
  text-align: center;
}

.disponibilidad-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.disponibilidad-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8a98a;
}

.disponibilidad-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #3a3a3a;
  margin: 0;
}

.disponibilidad-inner p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
/* ================= FORM ================= */

.luxury-form {
  max-width: 650px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.luxury-form input,
.luxury-form textarea {
  border: none;
  border-bottom: 1px solid #d8cfc2;
  background: transparent;
  padding: 14px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: border-color 0.4s ease;
}

.luxury-form input:focus,
.luxury-form textarea:focus {
  outline: none;
  border-color: #c6a96b;
}
.form-success {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #3f3932;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.8s ease;
  pointer-events: none;
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

.submit-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}
.flatpickr-calendar {
  border: none;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  font-family: 'Montserrat', sans-serif;
}

.flatpickr-day.selected {
  background: #c6a96b;
  border-color: #c6a96b;
}
/* ===== CALENDARIO ATELIER ===== */


.form-group {
  position: relative;
  margin-bottom: 60px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfc7bb;
  background: transparent;
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  outline: none;
}

#clear-date {
  position: absolute;
  right: 0;
  top: 12px;
  background: none;
  border: none;
  font-size: 18px;
  color: #c6a96b;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

#clear-date:hover {
  opacity: 1;
}
/* ===== FOOTER ATELIER BOUTIQUE - WHITE VERSION ===== */

.atelier-footer {
  background: #ffffff;
  color: #1a1a1a;
  padding: 100px 20px 70px;
  text-align: center;
  border-top: 1px solid rgba(198, 169, 107, 0.15);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* Logo */
.footer-logo {
  width: 90px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Claim */
.footer-claim {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c6a96b;
  margin-bottom: 40px;
}

/* Contacto */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 50px;
}

.footer-contact a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: #c6a96b;
  letter-spacing: 4px;
}

/* Firma */
.footer-signature {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
}

/* Responsive Desktop */
@media (min-width: 768px) {

  .atelier-footer {
    padding: 120px 20px 80px;
  }

  .footer-logo {
    width: 80px;
  }

  .footer-contact {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

}
.atelier-testimonios {
  padding: 6rem 2rem;
  background: #faf8f5;
  text-align: center;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.testimonio-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonio-texto {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: #3a3a3a;
}

.testimonio-firma {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonio-nombres {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a3a3a;
}

.testimonio-lugar {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #999;
}

@media (max-width: 768px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* ================= WHATSAPP ================= */

.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: rgba(198,169,107,0.95);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
}

/* ================= ANIMATIONS ================= */

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: 1.6s cubic-bezier(.19,1,.22,1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .nav {
    padding: 30px 30px;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-logo {
    text-align: left;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  section {
    padding: 160px 12%;
  }

  .portfolio-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    flex-direction: column;
    gap: 60px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-logo {
    width: 260px;
  }

  .btn-outline {
    width: 85%;
    padding: 18px 0;
  }

  .atelier-diferencial {
    padding: 160px 10%;
  }

  .atelier-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .atelier-grid h3 {
    font-size: 26px;
  }

  .atelier-grid p {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  /* En lugar de centrar, mantenemos la alineación a la izquierda pero con aire */
  .detail-v2 {
    padding: 80px 10%;
  }

  .detail-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* El título sigue siendo el protagonista: grande pero sin desbordar */
  .aside-title {
    font-size: 54px !important;
    text-align: left !important;
    line-height: 0.85 !important;
    letter-spacing: -2px !important;
    margin-top: 10px !important;
  }

  /* La imagen: le quitamos el exceso de sombra para que no se vea pesada */
  .detail-main-image {
    margin: 20px 0;
  }

  .detail-main-image img {
    max-height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  }

  /* Mantenemos las dos columnas de texto solo si hay espacio, 
     sino las dejamos fluir con elegancia */
  .detail-content-grid {
    display: block; /* Una sola columna para que el texto respire */
  }

  .content-col {
    margin-bottom: 50px; /* Espacio editorial entre bloques */
  }

  .content-col p {
    font-size: 16px; /* Mantener el tamaño para que se sienta Premium */
    line-height: 1.8;
    max-width: 100%;
  }

  /* El botón de abajo, lo dejamos pegado a la izquierda como el resto */
  .detail-footer {
    text-align: left;
    margin-top: 0;
  }
}
/* Agrégalo a tu CSS general */
.detail-main-image {
  overflow: hidden; /* Corta el exceso */
}

.detail-main-image img {
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Si usas JS para el fade-up, puedes hacer que la imagen se agrande un poco */
.fade-up.visible .detail-main-image img {
  transform: scale(1.05);
}