/* =====================
   CONTACTO SPLIT
===================== */

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #111;
    padding-top: 100px; /*usar este mismo apra los edmas*/
}

.contacto-split {
    min-height: calc(100vh - 100px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

/* =====================
   LEFT
===================== */
.contacto-left {
    background: linear-gradient(135deg, #0f0f0f, #1b1b1b);
    padding: 100px 80px;
    color: #ffffff;
}

.contacto-left h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.contacto-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    color: #d1d1d1;
}

.contacto-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contacto-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1rem;
}

.contacto-list i {
    color: #d4af37;
    font-size: 18px;
}

.contacto-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* =====================
   RIGHT (FORM)
===================== */
.contacto-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #f7f7f7;
}

.contacto-form {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 50px 44px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.contacto-form h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 16px;
    font-size: .95rem;
}

.contacto-form button {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.contacto-form small {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: #666;
    font-size: .85rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
    .contacto-split {
        grid-template-columns: 1fr;
    }

    .contacto-left {
        padding: 80px 30px;
        text-align: center;
    }

    .contacto-list li {
        justify-content: center;
    }
}
.contacto-form .tratamiento-datos {
    display: grid;
    grid-template-columns: 18px 1fr;
    row-gap: 6px;
    column-gap: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 20px 0 24px;
}

.contacto-form .tratamiento-datos input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #d4af37;
}

.contacto-form .tratamiento-texto {
    grid-column: 2 / 3;
}

.contacto-form .tratamiento-datos a {
    grid-column: 2 / 3;
    color: #1a73e8;
    font-weight: 500;
    text-decoration: underline;
}

.contacto-form .tratamiento-datos a:hover {
    text-decoration: none;
}

/* ===============================
   BLOQUE DE VALOR – CONTACTO
=============================== */

.contacto-valor {
    margin-top: 80px;
    max-width: 480px;
    animation: fadeUp 0.8s ease-out both;
}

.contacto-valor h3 {
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 18px;
}

.contacto-valor p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d1d1d1;
    margin-bottom: 30px;
}

/* BENEFICIOS */
.contacto-beneficios {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contacto-beneficios li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: #e5e5e5;
}

/* Ícono check dorado */
.contacto-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: bold;
}

/* ANIMACIÓN SUAVE */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
