:root {
    --primary-color: #1C3D5A;
    --cta-color: #2ECC71;
    --black: #0A0A0A;
    --gray-light: #F5F7FA;
    --white: #FFFFFF;
    --text-color: #333;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.1;
}

h1 { font-size: 4rem; font-weight: 700; }
h2 { font-size: 2.75rem; font-weight: 600; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; font-weight: 500; }

p { font-size: 1.125rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

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

.btn-primary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
header {
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header styles updated */

.logo-img {
    height: 90px;
    width: auto;
}

.logo-img-gc {
    height: 45px;
    width: auto;
}

.problem-intro-image {
    text-align: center;
    margin: 40px 0;
}

.problem-intro-image img {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #fff 0%, #f0f4f8 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
}

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

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Features/Problem Section */
.problem {
    background-color: var(--white);
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--gray-light);
    border-radius: 20px;
    transition: var(--transition);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background: white;
}

.feature-card i {
    font-size: 2rem;
    color: var(--cta-color);
    margin-bottom: 1.5rem;
    display: block;
}

/* Consequences */
.consequences {
    background-color: var(--gray-light);
}

.consequence-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.consequence-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #e74c3c;
}

/* Solution / GC Index */
.solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-image img {
    width: 100%;
    border-radius: 24px;
}

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

.checklist li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist li i {
    color: var(--cta-color);
}

/* Benefits */
.benefits {
    background-color: var(--primary-color);
    color: white;
}

.benefits h2 {
    color: white;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefit-item h3 {
    color: var(--cta-color);
    margin-bottom: 1rem;
}

.benefit-item ul {
    list-style: none;
}

.benefit-item li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}



/* New Sections from Backup */
.market-value-card {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    margin: 40px 0;
}

.impact-bar {
    border-left: 5px solid var(--cta-color);
    padding-left: 25px;
    margin-bottom: 40px;
}

.progress-container {
    margin-bottom: 30px;
    max-width: 800px;
}

.progress-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.progress-bar-bg {
    width: 100%;
    background: #f0f0f0;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--cta-color) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.roadmap-grid::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 0;
}

.roadmap-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.roadmap-tag {
    color: var(--cta-color);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.roadmap-dot {
    width: 20px;
    height: 20px;
    background: var(--cta-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0.1);
}

.roadmap-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.roadmap-item p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    .roadmap-grid::before {
        display: none;
    }
    .market-value-card {
        padding: 30px;
    }
}

/* Lead Magnet */
.lead-magnet {
    background: var(--gray-light);
}

.lead-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.lead-image img {
    width: 100%;
    transform: rotate(5deg);
    transition: var(--transition);
}

.lead-image:hover img {
    transform: rotate(0deg) scale(1.05);
}

/* Authority */
.authority-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.authority-image img {
    width: 100%;
    border-radius: 24px;
}

.quote-highlight {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--cta-color);
    padding-left: 20px;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    position: relative;
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* CTA Final */
.cta-final {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-final h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .hero-grid, .solution, .lead-grid, .authority-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-grid, .consequence-list, .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .hero-image, .solution-image, .lead-image, .authority-image {
        order: -1;
    }
}

/* About Section */
.about-section {
    background: #fdfdfd;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.perfil-circular {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* Footer Improvements */
.main-footer {
    background: #0a0a0a;
    color: #999;
    padding: 80px 0;
    border-top: 1px solid #222;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--cta-color);
}

.footer-contact i {
    color: var(--cta-color);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.neon-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
    transition: all 0.3s ease;
    animation: neon-float 3s infinite ease-in-out;
}

.footer-meta a:hover .neon-logo {
    filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #fff);
    transform: scale(1.1);
}

@keyframes neon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-header {
        flex-direction: column;
    }
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

