
:root {
    
    --brand-blue: #003B70;      
    --brand-blue-light: #0056A4; 
    --brand-red: #D0021B;       
    --brand-yellow: #FFCC00;    
    --brand-green: #008A4B;     
    
    
    --bg-light: #F4F6F9;
    --bg-white: #FFFFFF;
    --text-primary: #333333;
    --text-secondary: #555555;
    --border-color: #E2E8F0;
    
    
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}


h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--brand-blue);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

.gradient-text {
    color: var(--brand-red);
}


.background-blobs {
    display: none;
}


.glass {
    background: var(--bg-white);
    box-shadow: var(--header-shadow);
    border: none;
}

.glass-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--card-shadow);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--brand-blue-light);
    color: white;
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.btn-secondary:hover {
    background-color: var(--brand-blue);
    color: white;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: var(--brand-yellow);
    color: var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}


main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 3px solid var(--brand-red);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand-blue);
}

.logo .material-symbols-rounded {
    color: var(--brand-red);
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--brand-blue);
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 8rem;
}

.hero-content {
    flex: 1;
}

.hero-content p {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-card {
    text-align: center;
    padding: 3rem;
    max-width: 350px;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-top: 5px solid var(--brand-yellow);
}

.showcase-card h3 {
    color: white;
    margin-top: 1rem;
}

.showcase-card p {
    color: rgba(255, 255, 255, 0.9);
}

.showcase-card .time {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--brand-yellow);
    margin: 1rem 0 0.5rem;
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-inline: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
}

.card-icon .material-symbols-rounded {
    font-size: 32px;
}

.card-icon.red { color: var(--brand-red); }
.card-icon.yellow { color: #D4A017; } 
.card-icon.green { color: var(--brand-green); }
.card-icon.warning { color: var(--brand-yellow); background: rgba(255, 255, 255, 0.1); }


.solidaria-container {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    border-left: 5px solid var(--brand-green);
}

.solidaria-content {
    flex: 1;
}

.solidaria-content h2 {
    color: var(--brand-green);
}

.solidaria-content .subtitle {
    color: var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0 3rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list .check {
    color: var(--brand-green);
    font-size: 28px;
    flex-shrink: 0;
}

.benefits-list div {
    display: flex;
    flex-direction: column;
}

.benefits-list strong {
    font-size: 1.125rem;
    color: var(--text-primary);
}

.benefits-list span {
    font-size: 0.95rem;
}

.solidaria-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.info-card {
    text-align: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.big-icon {
    font-size: 64px;
    color: var(--brand-green);
    margin-bottom: 1rem;
}


.footer {
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--brand-blue);
    color: white;
    margin-top: 4rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo .material-symbols-rounded {
    color: var(--brand-yellow);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}


.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .solidaria-container {
        flex-direction: column;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .section {
        padding: 4rem 0;
    }
}


.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
}

.whatsapp-text {
    font-size: 1rem;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #128C7E;
    color: white;
    animation: none; 
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15); 
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}


.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 450px;
    background-color: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2000;
    border-radius: 16px;
    border-top: 6px solid var(--brand-blue);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.cookie-content {
    margin-right: 0;
    margin-bottom: 1.5rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.cookie-buttons .btn {
    padding: 0.75rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 8px;
    width: 100%;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 2rem 1.5rem;
    }
}

