﻿/* ===== CONTENEDOR ===== */
.contacto-wrapper {
    width: 100%;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 20px 20px;
}

.contacto-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 56px 40px;
    width: 600px;
    border: 1.5px solid var(--header-border);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    background: var(--header-bg);
}

/* ===== LOGO Y TITULO ===== */
#contacto-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.contacto-titulo {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
    text-align: center;
}

/* ===== ITEMS DE CONTACTO ===== */
.contacto-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--bg-suave);
    border-radius: 14px;
    width: 100%;
}

.contacto-item-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contacto-item-icon i {
        color: var(--accent);
        font-size: 26px;
    }

.contacto-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contacto-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contacto-item a {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .contacto-item a:hover {
        color: var(--accent);
    }

.contacto-sep {
    margin: 0 6px;
    color: var(--text-muted);
}

/* ===== REDES SOCIALES ===== */
.contacto-social {
    display: flex;
    gap: 12px;
}

    .contacto-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-suave);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 16px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .contacto-social a:hover {
            background: var(--accent);
            color: #ffffff;
        }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .contacto-box {
        padding: 32px 24px;
        width: 100%;
        border: none;
        box-shadow: none;
    }
}
