﻿
/* CONTACT HERO */
.contact-hero {
    background: linear-gradient(rgba(46,22,143,0.85), rgba(46,22,143,0.85)), url('/images/hero.png') center/cover no-repeat;
    color: #fff;
    padding: 90px 20px;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* CONTACT SECTION */
.contact-section {
    background: #f8f9fa;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(46,22,143,0.08);
}

    .contact-info-card h3,
    .contact-form-card h3 {
        color: #2E168F;
        margin-bottom: 20px;
        font-weight: 700;
    }

.contact-item {
    margin-bottom: 18px;
}

    .contact-item h5 {
        margin-bottom: 4px;
        color: #C9A45C;
        font-weight: 600;
    }

    .contact-item p {
        margin: 0;
        color: #555;
    }

/* FORM */
.contact-form-card .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
}

    .contact-form-card .form-control:focus {
        border-color: #2E168F;
        box-shadow: none;
    }

/* BUTTONS */
.btn-send {
    background: #C53030;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 8px;
}

    .btn-send:hover {
        background: #a82626;
        color: #fff;
    }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
}

    .btn-whatsapp:hover {
        background: #1ebe5d;
        color: #fff;
    }

