/**
 * Estilos de la Página de Contacto y Reservaciones - Versión 2
 *
 * Basado estrictamente en las maquetas oficiales del diseñador:
 * - Desktop: /version2/temporal/bodas/Ceremonias Laicas BODAS FORMS FAQ_03.png
 * - Mobile:  /version2/temporal/bodas/Ceremonias Laicas BODAS FORMS FAQ_05.png
 *
 * Paleta de colores y tokens del sistema v2:
 * - Terracota oscuro acento: #9F6D4A
 * - Terracota melocotón: #E1AA8C (hover: #D69777)
 * - Texto títulos: #2C2C2C / #FFFFFF
 * - Texto cuerpo: #555555 / #726D6A
 */

/* ==========================================================================
   1. HERO SECTION DE CONTACTO
   ========================================================================== */
.hero-contacto {
    position: relative;
    width: 100%;
    min-height: 350px;
    height: 380px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Corte decorativo en punta central inferior característico de v2 */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(50% + 30px) calc(100% - 24px), 50% 100%, calc(50% - 30px) calc(100% - 24px), 0 calc(100% - 24px));
    padding-bottom: 24px;
}

.hero-contacto-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-contacto-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 2;
}

.hero-contacto-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
}

.hero-contacto-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-contacto-rama-wrapper {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.hero-contacto-rama-white {
    width: 44px;
    height: 44px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero-contacto-title {
    font-family: 'Muli-Bold', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

@media only screen and (max-width: 767px) {
    .hero-contacto {
        height: 300px;
        min-height: 300px;
        clip-path: none;
        padding-bottom: 0;
    }

    .hero-contacto-title {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }

    .hero-contacto-rama-white {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   2. ENCABEZADO DE INTRODUCCIÓN
   ========================================================================== */
.contacto-intro-section {
    background-color: #ffffff;
    padding: 45px 20px 25px 20px;
    text-align: center;
}

.contacto-star-icon {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 auto 22px auto;
}

.contacto-title-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 14px;
}

.contacto-header-rama {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: block;
}

.contacto-page-title {
    font-family: 'Muli-Light', sans-serif;
    font-size: 2.3rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2c2c2c;
    margin: 0;
    font-weight: 300;
    text-align: center;
}

.contacto-page-subtitle {
    font-family: 'Cormorant-Italic', serif;
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.4;
    color: #9f6d4a;
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .contacto-intro-section {
        padding: 35px 15px 15px 15px;
    }

    .contacto-title-wrap {
        gap: 12px;
    }

    .contacto-header-rama {
        width: 44px;
        height: 44px;
    }

    .contacto-page-title {
        font-size: 1.6rem;
    }

    .contacto-page-subtitle {
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   3. SECCIÓN DE FORMULARIOS A DOS COLUMNAS
   ========================================================================== */
.dos-columnas-formularios {
    display: flex;
    flex-direction: row;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 80px 20px;
}

.col-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border: 1px solid #e1aa8c;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@media only screen and (max-width: 767px) {
    .dos-columnas-formularios {
        flex-direction: column;
        gap: 30px;
        padding: 10px 15px 50px 15px;
    }

    .col-form {
        padding: 25px 18px;
    }
}
