/* ========================================
   CONTACT SECTION
   Sección de contacto final
   ======================================== */

.contact-section {
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.95),
            rgba(45, 26, 61, 0.9),
            rgba(10, 10, 10, 1));
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 0, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.contact-section>* {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: var(--font-titulos);
    color: var(--color-dorado-antiguo);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow:
        2px 2px 10px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(212, 175, 55, 0.4);
}

.contact-section p {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: #e8e8e8;
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: var(--font-cuerpo);
}

.contact-section p strong {
    color: var(--color-rojo-intenso);
    font-size: 1.1em;
    text-shadow: 0 0 10px rgba(185, 28, 28, 0.5);
}

/* CTA Container */
.contact-cta {
    margin: 50px 0 40px 0;
}

.btn-whatsapp {
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(135deg,
            var(--color-verde-esmeralda) 0%,
            var(--color-verde-brillante) 100%);
    color: #fff;
    padding: 25px 45px;
    border-radius: 15px;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    font-family: var(--font-subtitulos);
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 35px rgba(28, 115, 17, 0.5),
        0 0 40px rgba(30, 188, 90, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
    animation: pulse 3s infinite;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp i {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

.btn-whatsapp div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.btn-whatsapp span {
    color: var(--color-dorado-suave);
    font-size: 0.85em;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
    letter-spacing: 1px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg,
            var(--color-verde-brillante) 0%,
            #28d65f 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 50px rgba(28, 115, 17, 0.7),
        0 0 60px rgba(30, 188, 90, 0.5),
        0 0 30px rgba(212, 175, 55, 0.4);
    border-color: var(--color-dorado-antiguo);
}

.btn-whatsapp:active {
    transform: translateY(-2px) scale(1.02);
}

/* Información de llamada */
.call-info {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #d0d0d0;
    margin-top: 40px;
    font-family: var(--font-cuerpo);
}

.call-info strong {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--color-dorado-antiguo);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer-section {
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 1),
            rgba(26, 26, 26, 1));
    color: #f5f5f0;
    padding: 60px 20px 30px 20px;
    text-align: center;
    border-top: 2px solid rgba(212, 175, 55, 0.4);
}

.footer-content {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-content p {
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-family: var(--font-subtitulos);
    margin-bottom: 20px;
    color: var(--color-dorado-antiguo);
    letter-spacing: 1.5px;
}

.footer-content ul {
    padding: 0;
    list-style: none;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.footer-content ul li {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.9;
    color: #c8c8c8;
    font-family: var(--font-cuerpo);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.footer-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-dorado-antiguo);
    font-size: 1.2em;
}

.footer-bottom {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: #999;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-cuerpo);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 600px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-cta .btn-whatsapp {
        flex-direction: column;
        padding: 20px 25px;
        gap: 10px;
    }

    .btn-whatsapp div {
        align-items: center;
    }

    .btn-whatsapp i {
        font-size: 2rem;
    }

    .footer-content ul {
        text-align: center;
    }

    .footer-content ul li {
        padding-left: 0;
    }

    .footer-content ul li::before {
        position: static;
        margin-right: 8px;
    }
}