/* Importar fuentes elegantes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --color-oscuro: #1A1A1A;
    --color-claro: #FAFAFA;
    --color-gris-suave: #F2F2F2;
    --color-oro: #D4AF37; /* El toque premium */
    --fuente-titulos: 'Playfair Display', serif;
    --fuente-texto: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--fuente-texto);
    background-color: var(--color-claro);
    color: var(--color-oscuro);
    line-height: 1.6;
}

/* Cabecera / Menú */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background-color: transparent;
}
.site-header .logo a {
    font-family: var(--fuente-titulos);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--color-oscuro);
    font-weight: 600;
}
.navigation a {
    text-decoration: none;
    color: var(--color-oscuro);
    margin-left: 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.navigation a:hover {
    color: var(--color-oro);
}

/* Sección Hero */
.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 4rem;
}
.hero-content {
    max-width: 700px;
}
.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-oro);
    display: block;
    margin-bottom: 1rem;
}
.hero-content h1 {
    font-family: var(--fuente-titulos);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.btn-premium {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-oscuro);
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background-color 0.3s;
}
.btn-premium:hover {
    background-color: var(--color-oro);
}

/* Secciones generales */
section {
    padding: 6rem 4rem;
}
.container { max-width: 1200px; margin: 0 auto; }
.container-small { max-width: 600px; margin: 0 auto; }

h2 {
    font-family: var(--fuente-titulos);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Grid de Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.service-card {
    background-color: var(--color-gris-suave);
    padding: 3rem 2rem;
    text-align: center;
}
.service-card h3 {
    font-family: var(--fuente-titulos);
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Formulario */
.form-premium .form-group {
    margin-bottom: 1.5rem;
    margin-top:1.5rem;
}
.form-premium label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.form-premium input, .form-premium textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #CCC;
    background-color: transparent;
    font-family: var(--fuente-texto);
}
.form-premium input:focus, .form-premium textarea:focus {
    outline: none;
    border-color: var(--color-oro);
}
.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-oscuro);
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-submit:hover {
    background-color: var(--color-oro);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid var(--color-gris-suave);
}

/* --- Ajustes para interactividad con JS --- */

/* Cabecera fija y estilizada al hacer scroll */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.site-header.header-scrolled {
    padding: 1rem 4rem;
    background-color: rgba(250, 250, 250, 0.95); /* Blanco roto con ligera transparencia */
    backdrop-filter: blur(10px); /* Efecto esmerilado premium */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Margen superior en el hero para que no lo tape la cabecera fija */
.hero-section {
    padding-top: 120px;
}

/* Estados para la animación de revelación */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.215, 0.610, 0.355, 1), 
                transform 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.reveal-hidden.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Retraso progresivo para las tarjetas de servicios (efecto cascada) */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.5s; }

/* --- ESTILOS DEL PORTAFOLIO --- */
.section-subtitle {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-oro);
    margin-bottom: 0.5rem;
}
.portfolio-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-weight: 300;
    color: #666;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
/* El primer elemento ocupará las dos columnas del grid (Efecto revista) */
.portfolio-item.wide {
    grid-column: span 2;
}
.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #EEE;
    height: 450px; /* Altura fija para mantener control visual */
}
.portfolio-item.wide .portfolio-img-wrapper {
    height: 550px;
}
.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
/* Efecto hover en la imagen */
.portfolio-img-wrapper:hover img {
    transform: scale(1.03);
}

/* Capa elegante al pasar el ratón */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4); /* Sutil oscurecido */
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-img-wrapper:hover .portfolio-overlay {
    opacity: 1;
}
.overlay-content h3 {
    font-family: var(--fuente-titulos);
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 300;
}
.view-project {
    color: var(--color-oro);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mensajes de feedback del Formulario PHP */
.alert {
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.alert-success {
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #CEEAD6;
}
.alert-error {
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}

/* Responsive para pantallas móviles */
@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item.wide { grid-column: span 1; }
    .portfolio-img-wrapper, .portfolio-item.wide .portfolio-img-wrapper { height: 350px; }
    .site-header { padding: 1.5rem 2rem; }
    section { padding: 4rem 2rem; }
}

/* --- ADAPTACIÓN MÓVIL (RESPONSIVE) --- */

/* Botón Hamburguesa (Oculto en desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 1px; /* Línea fina ultra elegante */
    background-color: var(--color-oscuro);
    transition: all 0.3s ease;
}

/* Evitar scroll con menú abierto */
body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    /* Mostrar botón hamburguesa */
    .menu-toggle {
        display: flex;
    }

    /* Transformación del botón a una "X" cuando está activo */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Navegación móvil de pantalla completa (Full Screen Overlay) */
    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(250, 250, 250, 0.98); /* Fondo claro premium */
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem; /* Espacio generoso entre enlaces */
        z-index: 1050;
        
        /* Estado inicial oculto (Desplazado hacia la derecha) */
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    /* Estado activo (Entrada suave) */
    .navigation.active {
        transform: translateX(0);
    }

    .navigation a {
        margin-left: 0; /* Reseteamos el margen de desktop */
        font-size: 1.5rem; /* Tipografía más grande en móvil */
        font-family: var(--fuente-titulos);
        text-transform: none;
        letter-spacing: 2px;
    }

    /* Optimización de espaciados generales en móvil */
    .site-header {
        padding: 1.5rem 2rem;
    }
    .site-header.header-scrolled {
        padding: 1rem 2rem;
    }
    .hero-section {
        padding: 0 2rem;
        padding-top: 140px;
        height: auto;
        min-height: 80vh;
    }
    .hero-content h1 {
        font-size: 2.3rem; /* Texto escalado para pantallas pequeñas */
    }
    section {
        padding: 4rem 2rem;
    }
    
    /* Ajustes del Grid de servicios a 1 sola columna */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- NUEVA SECCIÓN HERO EDITORIAL EN BLANCO Y DOS COLUMNAS --- */
.hero-section {
    min-height: 90vh;
    background-color: var(--color-claro); /* Fondo blanco puro/roto */
    display: flex;
    align-items: center;
    padding: 140px 4rem 4rem 4rem; /* Añadimos espacio arriba para la cabecera fija */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* La columna de texto es ligeramente más ancha */
    gap: 4rem;
    align-items: center;
}

.hero-content {
    /* Mantenemos el estilo de tipografía premium pero sobre fondo blanco */
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-oro);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-content h1 {
    font-family: var(--fuente-titulos);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-oscuro); /* Texto oscuro para máxima legibilidad */
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 550px;
}

/* Columna de la Imagen */
.hero-image-wrapper {
    width: 100%;
    height: 550px; /* Altura fija elegante */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04); /* Sombra muy sutil, casi imperceptible */
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la foto sin deformarla */
    display: block;
}

/* --- AJUSTE RESPONSIVE PARA EL HERO MÓVIL --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* En tablets y móviles pasa a ser una sola columna */
        gap: 3rem;
    }
    
    .hero-section {
        padding-top: 120px;
    }

    .hero-image-wrapper {
        height: 400px; /* Reducimos la altura de la foto en pantallas pequeñas */
        grid-row: 1; /* Hacemos que en móvil la foto se coloque ARRIBA del texto */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}
/* --- SECCIÓN DE TARIFAS / INVERSIÓN --- */
.pricing-section {
    background-color: var(--color-claro);
    border-top: 1px solid var(--color-gris-suave);
}

.pricing-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem auto;
    font-weight: 300;
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

/* Tarjeta de precio estándar */
.price-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    padding: 4rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.price-card h3 {
    font-family: var(--fuente-titulos);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.price-amount {
    font-family: var(--fuente-texto);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-oro);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.card-desc {
    font-size: 0.9rem;
    color: #777;
    font-weight: 300;
    margin-bottom: 2.5rem;
    min-height: 60px; /* Alinea los textos */
}

/* Lista de características */
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3.5rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1; /* Empuja el botón al fondo de la tarjeta */
}

.price-features li {
    font-size: 0.9rem;
    color: var(--color-oscuro);
    font-weight: 300;
    position: relative;
    padding-left: 1.5rem;
}

/* Viñeta minimalista premium (una simple línea fina dorada) */
.price-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background-color: var(--color-oro);
}

/* Botón estilo línea para planes estándar */
.btn-line {
    display: block;
    padding: 1rem;
    border: 1px solid var(--color-oscuro);
    color: var(--color-oscuro);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-line:hover {
    background-color: var(--color-oscuro);
    color: #FFFFFF;
}

/* --- TARJETA DESTACADA (ATELIER) --- */
.price-card.featured {
    border-color: var(--color-oro);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.05);
    transform: scale(1.03); /* Ligeramente más alta para destacar */
}

.badge-premium {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-oro);
    color: var(--color-claro);
    padding: 0.4rem 1.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn-premium-dark {
    display: block;
    padding: 1rem;
    background-color: var(--color-oscuro);
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
}

.btn-premium-dark:hover {
    background-color: var(--color-oro);
}

/* --- RESPONSIVE DE TARIFAS --- */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Una columna en tablets y móviles */
        gap: 3rem;
    }
    .price-card.featured {
        transform: scale(1); /* Quitamos el escalado en móvil */
    }
}

/* --- SECCIÓN DE PREGUNTAS FRECUENTES (FAQ) --- */
.faq-section {
    background-color: var(--color-claro);
    border-top: 1px solid var(--color-gris-suave);
}

.faq-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    color: #666;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #EAEAEA;
}

.faq-item {
    border-bottom: 1px solid #EAEAEA;
}

/* El botón de la pregunta */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--fuente-titulos);
    font-size: 1.2rem;
    color: var(--color-oscuro);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-oro);
}

/* Icono minimalista de apertura (Líneas finas) */
.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background-color: currentColor; /* Hereda el color del texto */
    transition: transform 0.3s ease;
}

/* Línea horizontal del "+" */
.faq-icon::before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 1px;
}

/* Línea vertical del "+" */
.faq-icon::after {
    left: 7px;
    top: 0;
    width: 1px;
    height: 100%;
}

/* Cuando la pregunta está activa, la línea vertical rota y se esconde para formar un "-" */
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

/* Contenedor de la respuesta (Oculto por defecto con max-height para animar con JS) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
    padding-bottom: 2rem;
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
}

/* --- ESTILOS DE LOS MOCKUPS DEL PORTAFOLIO --- */

.mockup-wedding-web {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    transition: transform 0.6s ease;
}

/* 1. Estilo Nórdico (Sofía & Mateo): Tonos tierra suaves, limpios y orgánicos */
.style-nordic {
    background-color: #F4F0EA; /* Fondo arena suave */
}
.style-nordic .mockup-bg-graphic {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}
.style-nordic .m-date {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #8A857C;
}
.style-nordic .m-title {
    font-family: var(--fuente-titulos);
    font-size: 3rem;
    font-weight: 300;
    color: #4A4641;
    margin: 1rem 0;
}
.style-nordic .m-sub {
    font-size: 0.9rem;
    font-style: italic;
    color: #7A756E;
    margin-bottom: 2rem;
}
.style-nordic .m-btn {
    padding: 0.8rem 2rem;
    border: 1px solid #4A4641;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4A4641;
}

/* 2. Estilo Clásico (Valeria & Lucas): Monocromático, elegante, limpio e imperial */
.style-classic {
    background-color: #FFFFFF;
    border: 12px solid #F9F9F9; /* Margen interior simulando papel premium */
}
.style-classic .m-title {
    font-family: var(--fuente-titulos);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-oscuro);
}
.style-classic .m-divider {
    width: 40px;
    height: 1px;
    background-color: var(--color-oro);
    margin: 1.5rem auto;
}
.style-classic .m-sub {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.8rem;
}
.style-classic .m-date {
    font-size: 0.75rem;
    color: var(--color-oro);
    letter-spacing: 1px;
}

/* 3. Estilo Moderno (Claudia & Alejandro): Contraste radical y tipografía masiva */
.style-modern {
    background-color: #111111; /* Fondo oscuro vanguardista */
}
.style-modern .m-badge {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.5rem;
}
.style-modern .m-title {
    font-family: var(--fuente-titulos);
    font-size: 2rem;
    line-height: 1.1;
    color: #FFFFFF;
   
    font-weight: 300;
}
.style-modern .m-sub {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--color-oro);
    margin-top: 1.5rem;
}

/* Asegurar que al hacer hover la maqueta del fondo reaccione sutilmente */
.portfolio-img-wrapper:hover .mockup-wedding-web {
    transform: scale(1.02);
}
/* Asegura que el contenedor del overlay cubra todo el item y sea relativo */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Corta lo que el video desborde */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Control total sobre el video de fondo */
.portfolio-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto es magia: hace que el video llene el espacio sin deformarse */
    z-index: 1; /* Se queda al fondo */
}

/* Asegura que el texto se ponga por encima del video */
.overlay-content {
    position: relative;
    z-index: 2; /* Mayor que el del video para que flote encima */
    text-align: center;
    color: #ffffff; /* Ajusta el color para que contraste con tu video */
    /* Aquí puedes añadir un fondo semitransparente si el video es muy claro y no se lee el texto */
    /* background: rgba(0, 0, 0, 0.4); */ 
}

/* 1. Forzar al video a rellenar y recortar los bordes sobrantes */
.portfolio-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Hace el zoom automático manteniendo la proporción */
    object-position: center;      /* Centra el video para que el recorte sea simétrico */
    z-index: 1;
}

/* 2. Asegurar que el contenedor padre no deje escapar el contenido del zoom */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden !important; /* Esencial: oculta las partes del video que se salen por el zoom */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3. Asegurar que el contenedor de la imagen/mockup tenga una posición relativa */
.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 21rem;
    overflow: hidden;
}
.form-boda textarea {
    padding: 1.2rem;
    border: 1px solid var(--lineas-finas);
    background: var(--bg-blanco);
    font-family: var(--fuente-sans);
    font-size: 0.85rem;
    color: var(--text-principal);
    outline: none;
    resize: vertical; /* Permite estirarlo solo hacia abajo */
    transition: border-color 0.3s ease;
}

.form-boda textarea:focus {
    border-color: var(--text-secundario);
}