/* ================================
   MÓDULO: CTA (Call To Action)
   Estilos exclusivos del CTA
   ================================ */

/* Reset específico del módulo */
.cta,
.cta * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container principal */
.cta {
    width: 100%;
    padding: 6rem 0;
    background: linear-gradient(135deg, #A67B5B 0%, #8B6A4F 100%);
    position: relative;
    overflow: hidden;
}

/* Efecto de textura sutil (opcional) */
/* Efecto de textura con tu imagen */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cta1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

.cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Título del CTA */
.cta__title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Texto del CTA */
.cta__text {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Botón de WhatsApp */
.cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: #25D366;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

.cta__button svg {
    width: 22px;
    height: 22px;
}

.cta__button:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Sección de horarios */
.cta__hours {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta__hours p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cta__hours p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.cta__hours p:last-child {
    margin-bottom: 0;
}

.cta__hours strong {
    font-weight: 700;
}

/* ================================
   RESPONSIVE: TABLET
   ================================ */
@media screen and (max-width: 968px) {
    .cta {
        padding: 5rem 0;
    }

    .cta__title {
        font-size: 2.5rem;
    }

    .cta__text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta__button {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .cta__hours {
        padding: 1.8rem 2rem;
    }

    .cta__hours p {
        font-size: 0.95rem;
    }

    .cta__hours p:first-child {
        font-size: 1.05rem;
    }
}

/* ================================
   RESPONSIVE: MÓVIL
   ================================ */
@media screen and (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }

    .cta__container {
        padding: 0 1.5rem;
    }

    .cta__title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .cta__text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta__button {
        width: 100%;
        max-width: 350px;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .cta__hours {
        padding: 1.5rem 1.5rem;
    }

    .cta__hours p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .cta__hours p:first-child {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .cta {
        padding: 3.5rem 0;
    }

    .cta__container {
        padding: 0 1rem;
    }

    .cta__title {
        font-size: 1.8rem;
    }

    .cta__text {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }

    .cta__button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .cta__button svg {
        width: 20px;
        height: 20px;
    }

    .cta__hours {
        padding: 1.3rem 1.2rem;
    }

    .cta__hours p {
        font-size: 0.85rem;
    }

    .cta__hours p:first-child {
        font-size: 0.95rem;
    }
}