/**
 * Cuidándote Presupuestos - Estilos
 * Version: 2.1.0
 */

/* Variables */
:root {
    --cdp-primary: #2c8cbe;
    --cdp-primary-dark: #1a5276;
    --cdp-accent: #667eea;
    --cdp-accent-dark: #764ba2;
    --cdp-success: #27ae60;
    --cdp-warning: #ffc107;
    --cdp-text: #333;
    --cdp-text-light: #555;
    --cdp-bg: #f8f9fa;
    --cdp-border: #e0e0e0;
}

/* Reset básico para contenedores */
.cdp-desglose *,
.cdp-gracias-container * {
    box-sizing: border-box;
}

/* Estilos de impresión */
@media print {
    .cdp-desglose {
        box-shadow: none !important;
        max-width: 100% !important;
    }
    
    .cdp-cta-box {
        display: none !important;
    }
    
    .cdp-desglose-header {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* Animaciones */
@keyframes cdp-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cdp-desglose,
.cdp-gracias-container {
    animation: cdp-fadeIn 0.5s ease-out;
}

/* Botones hover */
.cdp-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

/* Links */
.cdp-desglose a,
.cdp-gracias-container a {
    transition: all 0.2s ease;
}

/* Responsive adicional */
@media (max-width: 480px) {
    .cdp-desglose-header h1 {
        font-size: 22px !important;
    }
    
    .cdp-total-value {
        font-size: 24px !important;
    }
    
    .cdp-gracias-title {
        font-size: 22px !important;
    }
    
    .cdp-gracias-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
