/* ==========================================================================
   Adhequim Llamado Acción 1 Addon Stylesheet
   ========================================================================== */

/* Contenedor Principal */
.adhequim-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}

/* Título */
.adhequim-cta-title {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin: 0 0 16px 0;
    text-wrap: balance;
    max-width: 800px;
    letter-spacing: -0.015em;
}

/* Descripción secundaria */
.adhequim-cta-desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.625;
    color: #64748b;
    margin: 0 0 36px 0;
    text-wrap: balance;
    max-width: 780px;
}

/* Fila de Botones */
.adhequim-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

/* Botones Base */
.adhequim-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    cursor: pointer;
}

/* Botón Primario (Azul) */
.adhequim-cta-btn-primary {
    color: #ffffff;
    background-color: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.adhequim-cta-btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* Botón Secundario (Gris) */
.adhequim-cta-btn-secondary {
    color: #1e293b;
    background-color: #f1f5f9;
    border-color: #f1f5f9;
}

.adhequim-cta-btn-secondary:hover {
    color: #0f172a;
    background-color: #e2e8f0;
    border-color: #e2e8f0;
    transform: translateY(-2px);
}

/* Iconos de los Botones */
.adhequim-cta-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.adhequim-cta-btn-icon i,
.adhequim-cta-btn-icon svg {
    font-size: 12px;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* Animación de flecha en Hover */
.adhequim-cta-btn:hover .adhequim-cta-btn-icon {
    transform: translateX(3px);
}

/* ==========================================================================
   Diseño Responsivo (Media Queries)
   ========================================================================== */

@media (max-width: 768px) {
    .adhequim-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    /* En móviles pequeños los botones se apilan verticalmente */
    .adhequim-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .adhequim-cta-btn {
        width: 100%;
    }
    
    .adhequim-cta-title {
        font-size: 28px;
    }
    
    .adhequim-cta-wrapper {
        padding: 60px 16px;
    }
}
