/* public_html/assets/css/sections/contacto.css */
.section-contacto {
    padding: 120px 80px;
    background: linear-gradient(135deg, #f6edd6 0%, #e4d1a4 50%, #cdae6f 100%);
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contacto-info {
    flex: 1;
    max-width: 500px;
}

.contacto-info h4 {
    font-family: 'Good Times', sans-serif;
    font-size: 14px;
    color: #83673c;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contacto-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #1c2430;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contacto-info p {
    font-size: 18px;
    color: #3b4554;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contacto-details {
    list-style: none;
    padding: 0;
}

.contacto-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 16px;
    color: #1c2430;
}

.contacto-details i {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #CAA874;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 18px;
    transition: all 0.3s;
}

.contacto-details li:hover i {
    background: #2F3B4A;
    color: var(--white);
}

.contacto-form-container {
    flex: 1.2;
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(120, 90, 40, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    font-family: 'Avenir Next', 'Avenir', 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2F3B4A;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #CAA874;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: #2F3B4A;
    color: var(--white);
    border: none;
    font-family: 'Good Times', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #CAA874;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(202, 168, 116, 0.2);
}

@media (max-width: 1100px) {
    .section-contacto {
        flex-direction: column;
        padding: 80px 40px;
        gap: 60px;
    }

    .contacto-info,
    .contacto-form-container {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-contacto {
        padding: 60px 16px;
        gap: 36px;
    }

    .contacto-info h2 {
        font-size: 34px;
    }

    .contacto-info p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .contacto-details li {
        align-items: flex-start;
        gap: 14px;
        font-size: 15px;
    }

    .contacto-details i {
        width: 40px;
        height: 40px;
        margin-right: 0;
        flex: 0 0 40px;
    }

    .contacto-form-container {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .submit-btn {
        padding: 18px 16px;
        letter-spacing: 1.2px;
    }
}