﻿ 
.contact-page {
    padding: 80px 0 100px;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('/Image/Fondos/Contacto.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f4f7f8;
}


    /* Capa transparente con tu color actual */
    .contact-page::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(6 23 28 / 68%);
        z-index: 0;
    }

    /* Para que el contenido quede arriba de la capa */
    .contact-page > * {
        position: relative;
        z-index: 1;
    }

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 460px;
    gap: 42px;
    align-items: center;
}

.contact-copy span {
    display: block;
    color: #ffaaa5;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 14px;
}

.contact-copy h1 {
    font-size: clamp(48px, 7vw, 88px);
    line-height: .92;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -.06em;
    margin: 0 0 22px;
}

.contact-copy p {
    color: #c99b96;
    max-width: 680px;
    font-size: 20px;
    line-height: 1.6;
}

.contact-card {
    background: rgba(19, 34, 40, .96);
    border: 1px solid rgba(255,255,255,.08);
    padding: 34px;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.contact-logo-box {
    width: 112px;
    height: 112px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

    .contact-logo-box img {
        width: 88px;
        height: 88px;
        object-fit: contain;
    }

.contact-info span {
    color: #ffaaa5;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    font-weight: 950;
}

.contact-info h2 {
    margin: 10px 0 24px;
    font-size: 28px;
    font-weight: 950;
    text-transform: uppercase;
    color: #fff;
}

.contact-link {
    display: block;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
}

    .contact-link small {
        display: block;
        color: #c99b96;
        text-transform: uppercase;
        letter-spacing: .14em;
        font-size: 10px;
        font-weight: 900;
        margin-bottom: 5px;
    }

    .contact-link strong {
        color: #fff;
        font-size: 18px;
    }

.contact-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.btn-contact-main,
.btn-contact-secondary {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 950;
}

.btn-contact-main {
    background: linear-gradient(135deg, #ffaaa5, #e53035);
    color: #250909;
}

.btn-contact-secondary {
    background: #26343b;
    color: #fff;
}

    .btn-contact-main:hover,
    .btn-contact-secondary:hover {
        opacity: .9;
        color: inherit;
    }

.contact-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px;
}

    .contact-extra-grid article {
        background: rgba(19, 34, 40, .78);
        border: 1px solid rgba(255,255,255,.06);
        padding: 26px;
    }

    .contact-extra-grid h3 {
        color: #fff;
        text-transform: uppercase;
        font-weight: 950;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-extra-grid p {
        color: #c99b96;
        margin: 0;
    }

@media (max-width: 991px) {
    .contact-hero {
        grid-template-columns: 1fr;
    }

    .contact-card {
        max-width: 560px;
    }

    .contact-extra-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .contact-page {
        padding: 52px 0 70px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-copy h1 {
        font-size: 44px;
    }
}
 
