.contact-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info-description {
    color: rgba(255, 255, 255, 0.8);
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Mapa */
.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Formulario */
.contact-form-wrapper {
    padding: 3rem;
}

.contact-form-submit {
    width: 100%;
}

/* Checkbox Legal */
.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.form-checkbox a {
    color: var(--accent);
    text-decoration: underline;
}

/* RESPONSIVE CONTACT */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}