﻿:root {
    --de-navy: #002855;
    --de-navy-dark: #001933;
    --de-navy-light: #003d7a;
    --de-steel: #4a5568;
    --de-steel-light: #718096;
    --de-silver: #e2e8f0;
    --de-white: #ffffff;
    --de-success: #059669;
    --de-success-light: #10b981;
    --de-trust-blue: #1e3a5f;
    --de-accent: #0066cc;
    --de-accent-light: #0080ff;
    --de-warning: #dc2626;
    --de-gold-subtle: #fbbf24;
    --de-bg-primary: #f8fafc;
    --de-bg-secondary: #f3f4f6;
    --de-border: #e5e7eb;
    --de-shadow: rgba(0, 40, 85, 0.08);
    --de-shadow-dark: rgba(0, 40, 85, 0.15);
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #e5e7eb 100%);
    min-height: 100vh;
    color: var(--de-navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.professional-container {
    background: var(--de-white);
    box-shadow: 
        0 20px 50px rgba(0, 40, 85, 0.12),
        0 0 0 1px rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.trust-header {
    background-image: url('../image/Frame_439.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* border-bottom: 4px solid #0066cc; */
}

.trust-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 26, 61, 0.85) 0%, 
        rgba(0, 51, 102, 0.9) 50%,
        rgba(0, 26, 61, 0.95) 100%);
    pointer-events: none;
}

.trust-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shine 10s linear infinite;
}

@keyframes shine {
    to { left: 100%; }
}

@keyframes subtle-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--de-white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 6px 20px rgba(239, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: badge-attention 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes badge-attention {
    0%, 100% { 
        transform: scale(1) translateY(0);
        box-shadow: 
            0 6px 20px rgba(239, 68, 68, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.05) translateY(-2px);
        box-shadow: 
            0 10px 30px rgba(239, 68, 68, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--de-white);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.main-title {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: .6rem;
    /* margin-top: 0.5rem; */
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 3px 10px rgba(0,0,0,0.7),
        0 0 40px rgba(0, 102, 204, 0.4);
}

.subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.subtitle strong {
    color: #fde047;
    font-weight: 800;
    text-shadow: 
        0 0 20px rgba(253, 224, 71, 0.5),
        0 2px 4px rgba(0,0,0,0.5);
    font-size: 1.3rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.trust-item i {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 0;
    background: #e5e7eb;
    border-bottom: none;
    position: relative;
    margin: 0;
}

.metric-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    background: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.metric-item:hover {
    background: #f8fafc;
    z-index: 1;
}

.metric-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--de-navy);
    margin-bottom: 0.375rem;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.metric-item:first-child {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.metric-item:first-child .metric-value {
    color: #059669;
    font-size: 2.75rem;
    position: relative;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(5, 150, 105, 0.15);
}

.metric-item:first-child .metric-value::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid #10b981;
    margin-right: 0.375rem;
    vertical-align: middle;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-2px) scale(1.1);
        opacity: 0.8;
    }
}

.metric-item:nth-child(3) .metric-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-top: 0.25rem;
}

.metric-stars {
    display: inline-flex;
    align-items: center;
    margin-left: 0.25rem;
    font-size: 0.75rem;
    vertical-align: middle;
}

.metric-stars i {
    color: #fbbf24;
    margin: 0 0.02em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.metric-item:nth-child(2) .metric-value {
    color: #002855;
    font-size: 2.5rem;
}

.metric-item:nth-child(3) {
    position: relative;
}

.metric-item:nth-child(3) .metric-value {
    color: #002855;
    font-size: 2rem;
    font-weight: 900;
}

.metric-item:nth-child(3) .metric-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.social-proof-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem 1.5rem;
    background: #f8f9fa;
    border-top: 2px solid #e5e7eb;
}

.social-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--de-steel);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.social-proof-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.countdown-item {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    animation: countdown-pulse 1.5s ease-in-out infinite;
}

@keyframes countdown-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }
}

.countdown-item span {
    color: #92400e !important;
    font-weight: 700;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--de-success);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.modal-content {
    padding: 1rem;
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--de-success);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.question-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--de-navy);
    line-height: 1.4;
    margin-bottom: .8rem;
    text-align: center;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.option-card {
    background: var(--de-bg-primary);
    border: 2px solid var(--de-border);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-card:hover {
    border-color: var(--de-accent-light);
    background: var(--de-white);
    box-shadow: 0 4px 12px var(--de-shadow);
}

.option-card.active {
    background: var(--de-navy);
    border-color: var(--de-navy);
    box-shadow: 0 6px 16px var(--de-shadow-dark);
}

.option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--de-steel-light);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    background: var(--de-white);
    transition: all 0.2s ease;
}

.option-card.active .option-radio {
    border-color: var(--de-white);
}

.option-radio-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--de-navy);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.option-card.active .option-radio-dot {
    background: var(--de-white);
    transform: translate(-50%, -50%) scale(1);
}

.option-content {
    flex: 1;
}

.option-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--de-navy);
    margin-bottom: 0.25rem;
}

.option-card.active .option-text {
    color: var(--de-white);
}

.option-subtext {
    font-size: 0.8rem;
    color: var(--de-steel);
    line-height: 1.3;
}

.option-card.active .option-subtext {
    color: var(--de-silver);
}

.option-check {
    width: 20px;
    height: 20px;
    color: var(--de-success);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
}

.option-card.active .option-check {
    opacity: 1;
    transform: scale(1);
    color: var(--de-success-light);
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.error-text {
    color: var(--de-warning);
    font-size: 0.875rem;
    font-weight: 600;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--de-accent) 0%, var(--de-accent-light) 100%);
    color: var(--de-white);
    border: none;
    border-radius: 12px;
    padding: .6rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--de-accent-light) 0%, var(--de-accent) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cta-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.whatsapp-icon {
    width: 46px;
    height: 26px;
    background: var(--de-white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--de-success);
}

.cta-sub {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

.security-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    border-top: 1px solid var(--de-border);
    background: var(--de-bg-primary);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--de-steel);
}

.security-icon {
    color: var(--de-success);
}

.footer-info {
    text-align: center;
    padding: 1rem;
    font-size: 0.75rem;
    color: var(--de-steel);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-separator {
    color: var(--de-steel-light);
}

@media (max-width: 640px) {
    .trust-header {
        padding: .6rem .1rem;
    }
    
    .main-title {
        font-size: 1.75rem;
        /* margin-bottom: 0.75rem; */
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .subtitle strong {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
    
    .metric-row {
        gap: 0;
    }
    
    .metric-item {
        padding: 1.25rem 0.25rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-item:first-child .metric-value {
        font-size: 2rem;
    }
    
    .metric-item:first-child .metric-value::before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 8px solid #059669;
        margin-right: 0.2rem;
    }
    
    .metric-item:nth-child(2) .metric-value {
        font-size: 1.75rem;
    }
    
    .metric-item:nth-child(3) .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }
    
    .metric-stars {
        font-size: 0.65rem;
    }
    
    .social-proof-row {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem 1rem 1rem;
    }
    
    .social-proof-item {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .exclusive-badge {
        font-size: 0.65rem;
        padding: 0.375rem 1rem;
        margin-bottom: 1rem;
    }
    
    .question-title {
        font-size: 1rem;
    }
    
    .option-card {
        padding: 0.5rem .8rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
}
@media (max-width: 400px) {
    .question-title{
        font-size:.9rem;
    }
    .question-title{
        margin-bottom:.7rem;
    }
    .option-card{
        padding:.5rem;
    }
    .option-text{
        font-size:.8rem;
    }
    .option-subtext{
        font-size:.7rem;
    }
    .cta-main{
        font-size:.8rem;
    }
    .option-group{
        margin-bottom:1.1rem;
    }
}
@media (max-width: 389px) {
    .main-title{
        font-size:1.35rem;
    }
    .modal-content{
        padding:.6rem;
    }
    .social-proof-row{
        padding:.5rem;
    }
    .modal-icon{
        width:48px;
        height:48px;
        margin:0 auto .3rem;
    }
    .question-title{
        font-size:.8rem;
    }
    .question-title{
        margin-bottom:.5rem;
    }
    .security-row{
        padding:.7rem;
        gap:1rem;
    }
    .security-item{
        gap:0.2rem;
    }
    .option-card{
        padding:.3rem;
    }
    .cta-button{
        padding:.5rem;
    }
    .option-text{
        font-size:.8rem;
    }
    .option-subtext{
        font-size:.7rem;
    }
    .cta-main{
        font-size:.8rem;
    }
    .option-group{
        margin-bottom:1rem;
    }
}
.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--de-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover .cta-shine {
    left: 100%;
}

.tap-target {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.opacity-50 {
    opacity: 0.5;
}

.animate-pulse {
    animation: pulse-attention 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-attention {
    0%, 100% {
        opacity: 1;
        border-color: var(--de-warning);
    }
    50% {
        opacity: 0.8;
        border-color: var(--de-accent);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
