/* Contenedor principal del CTA */
.cla-cta-container {
    margin: 30px 0;
}

.cla-general {
    font-family: 'Roboto', sans-serif;
    text-align: left;
}

.cla-cta-box {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 28px;
    margin-top: 22px !important;
    margin-bottom: 35px !important;
    background-color: #2fcfde !important;
    border-radius: 10px !important;
    border: 2px solid #000000 !important;
    box-shadow: 10px 13px 12px 0px rgba(0,0,0,0.19);
    -webkit-box-shadow: 10px 13px 12px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: 10px 13px 12px 0px rgba(0,0,0,0.19);
}

/* Icono */
.cla-icons {
    flex-shrink: 0;
}

.cla-icon-element {
    display: inline-block;
}

.cla-icon-inner {
    margin-right: 10px;
}

.cla-icono-dental {
    color: #000000;
    font-size: 5em;
    line-height: 1;
    display: inline-block;
}

/* Contenedor de contenido */
.cla-content-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 1 !important;
    gap: 30px !important;
}

.cla-content {
    flex: 1 !important;
}

.cla-content-header {
    margin-bottom: 10px;
}

/* Títulos */
.cla-h2 {
    font-size: 28px !important;
    font-weight: 800;
    color: #000000;
    margin: 0;
    line-height: 33px;
}

.cla-h3 {
    font-size: 18px !important;
    font-weight: 700;
    color: #000000;
    margin: 10px 0 0 0;
}

/* Acciones y botones */
.cla-actions {
    flex-shrink: 0 !important;
}

.cla-btn-container {
    display: inline-block;
}

.cla-btn {
    display: inline-block !important;
    padding: 15px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    transition: background 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Asegurar visibilidad de botones en todos los estados */
.cla-actions .cla-btn,
.cla-actions .cla-btn:hover,
.cla-actions .cla-btn:focus,
.cla-actions .cla-btn:active {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    pointer-events: auto !important;
}

/* Botón WhatsApp */
.cla-btn-whatsapp {
    background-color: #25D366 !important;
    color: white !important;
    font-weight: 900;
    border: 2px solid #000000 !important;
}

.cla-btn-whatsapp:hover {
    background-color: #1ebe5d !important;
    color: white !important;
    border: 2px solid #000000 !important;
}

/* Botón normal (turquesa/negro) */
.cla-btn-turquesa {
    background-color: #000000 !important;
    color: white !important;
    font-weight: 900;
    border: 2px solid #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

.cla-btn-turquesa:hover {
    background-color: #1e1e1e !important;
    color: white !important;
    border: 2px solid #1e1e1e !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* Font Awesome */
#page .fa, 
#page .fas,
#page .fab {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

#page .fab {
    font-family: 'Font Awesome 5 Brands';
}

/* RESPONSIVE - MÓVIL */
@media only screen and (max-width: 768px) {
    .cla-general {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
        gap: 20px;
    }

    .cla-cta-box {
        flex-direction: column;
        padding: 24px 16px;
    }

    .cla-h2 {
        font-size: 22px !important;
        text-align: center;
    }

    .cla-icons {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .cla-content {
        order: 2;
        width: 100%;
    }

    .cla-content-header .cla-h2 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 12px;
        text-align: center;
        color: #000000;
    }

    .cla-content .cla-h3 {
        font-size: 16px;
        color: #000000;
        margin-bottom: 20px;
        text-align: center;
    }

    .cla-content {
        margin-bottom: 22px;
    }

    .cla-actions {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cla-btn-container {
        width: 100%;
    }

    .cla-actions .cla-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        font-size: 18px !important;
        padding: 16px 24px !important;
        border-radius: 8px;
        text-align: center;
        box-sizing: border-box;
    }

    .cla-actions .cla-btn i,
    .cla-actions .cla-btn span {
        margin: 0 auto;
        display: block;
    }

    .cla-content-container {
        display: flex;
        flex-direction: column;
        padding-left: 2px;
        gap: 20px;
    }

    i.fab.fa-whatsapp {
        font-size: 73px;
    }
}