/* Reset y Variables */
:root {
    --primary-blue: #0A2463;
    --secondary-blue: #1E5BA8;
    --accent-blue: #3E92CC;
    --light-blue: #6CB4EE;
    --ultra-light-blue: #E8F4F8;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-color: #E0E7FF;
    --shadow: 0 4px 6px rgba(10, 36, 99, 0.1);
    --shadow-hover: 0 8px 16px rgba(10, 36, 99, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 24px 0;
    box-shadow: var(--shadow);
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.logo-codegenia,
.logo-faro {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.separator {
    font-size: 32px;
    color: var(--white);
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.highlight {
    color: var(--light-blue);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background: var(--ultra-light-blue);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 24px;
}

.highlight-box i {
    font-size: 48px;
    color: var(--light-blue);
}

.highlight-box p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
}

/* Strategic Plan */
.strategic-plan {
    padding: 80px 0;
    background: var(--white);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.plan-icon i {
    font-size: 36px;
    color: var(--white);
}

.plan-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.plan-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Metrics Section */
.metrics {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--ultra-light-blue) 0%, var(--white) 100%);
}

.metrics-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.metric-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.metric-value {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 16px;
}

.metric-description {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.95;
}

.metric-text {
    font-size: 18px;
    line-height: 1.8;
}

.emphasis {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 24px;
}

/* ROI Section */
.roi {
    padding: 80px 0;
    background: var(--white);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.roi-card {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.roi-card:hover {
    transform: translateY(-8px);
}

.roi-number {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 16px;
}

.roi-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.roi-description {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

.roi-objective {
    background: var(--ultra-light-blue);
    border-left: 6px solid var(--accent-blue);
    padding: 40px;
    border-radius: 12px;
    margin-top: 48px;
}

.roi-objective h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.roi-objective i {
    color: var(--accent-blue);
}

.objective-box {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.objective-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.highlight-number {
    color: var(--accent-blue);
    font-size: 32px;
}

.objective-sub {
    font-size: 18px;
    color: var(--text-gray);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--ultra-light-blue) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.benefit-card i {
    font-size: 48px;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Question Section */
.question {
    padding: 80px 0;
    background: var(--primary-blue);
}

.question-box {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.question-box i {
    font-size: 64px;
    color: var(--light-blue);
    margin-bottom: 32px;
}

.question-box h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 48px;
}

.question-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.question-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.stat-big {
    font-size: 56px;
    font-weight: 900;
    color: var(--light-blue);
}

.stat-small {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 8px;
}

.question-divider {
    width: 2px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
}

.question-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-4px);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.footer-info p,
.footer-contact p {
    margin: 8px 0;
    opacity: 0.9;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--light-blue);
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .metrics-content {
        grid-template-columns: 1fr;
    }

    .question-stats {
        flex-direction: column;
        gap: 32px;
    }

    .question-divider {
        width: 100px;
        height: 2px;
    }

    .question-text {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .logos {
        gap: 16px;
    }

    .logo-codegenia,
    .logo-faro {
        height: 36px;
    }

    .separator {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .plan-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.intro-content,
.plan-card,
.roi-card,
.benefit-card {
    animation: fadeInUp 0.8s ease-out;
}