@font-face {
  font-family: 'IntroBlackAlt';
  src: url('fonts/IntroBlackAlt.woff2') format('woff2'),
       url('fonts/IntroBlackAlt.woff') format('woff'),
       url('fonts/IntroBlackAlt.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IntroBlackAlt';
  src: url('fonts/IntroLightAlt.woff2') format('woff2'),
       url('fonts/IntroLightAlt.woff') format('woff'),
       url('fonts/IntroLightAlt.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IntroBlackAlt';
  src: url('fonts/IntroBoldAlt.woff2') format('woff2'),
       url('fonts/IntroBoldAlt.woff') format('woff'),
       url('fonts/IntroBoldAlt.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
 h1,h2, h3{
  font-family: 'IntroBlackAlt', sans-serif;
 
}
 
p, strong {
  font-family: 'IntroBlacAlt', sans-serif;
  
}



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

        :root {
            --primary-blue: #0E155B;
            --light-blue: #1e3a5f;
            --accent-orange: #F11A2A;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --text-gray: #6c757d;
            --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
            --shadow-md: 0 4px 16px rgba(11, 37, 69, 0.12);
            --shadow-lg: 0 8px 32px rgba(11, 37, 69, 0.16);
        }

        body {
             font-family: 'IntroBlackAlt', sans-serif;
            line-height: 1.6;
            color: var(--primary-blue);
            background-color: var(--white);
        }

        /* Header */
        header {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
          
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            color: var(--accent-orange);
        }

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

        .nav-links a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--accent-orange);
        }

        .cta-nav {
            background: var(--accent-orange);
            color: var(--white) !important;
            padding: 0.625rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .cta-nav:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* /* Hero Section */
.hero {
    position: relative;
    background: url('img/hero.jpg') center center / cover no-repeat;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Oscurece la imagen */
    z-index: 1;
}

/* Asegura que el texto quede encima del overlay */
.hero * {
    position: relative;
    z-index: 2;
}


        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 400;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-microcopy {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-ctas {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

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

        .btn-primary {
            background: var(--accent-orange);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background: #e55a2b;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-blue);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            background: var(--light-gray);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
         
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-icon {
            font-size: 3rem;
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Trust Section */
        .trust-section {
            background: var(--light-gray);
        }

        .trust-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.15rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .trust-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            text-align: center;
        }

        .trust-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .trust-card i {
            font-size: 3rem;
            color: var(--accent-orange);
            margin-bottom: 1.5rem;
        }

        .trust-card h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .trust-card p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-orange);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-orange), #ff8c5a);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.75rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .service-card p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            padding: 0.75rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-bottom: 1px solid var(--light-gray);
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features i {
            color: var(--accent-orange);
            font-size: 1.1rem;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
            color: var(--white);
        }

        .about-section .section-title {
            color: var(--white);
        }

        .about-section .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

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

        .about-text {
            font-size: 1.15rem;
            line-height: 1.9;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .about-mission {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 3rem;
        }

        .about-mission h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .about-mission i {
            color: var(--accent-orange);
        }

        /* Resources Section */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .resource-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .resource-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-orange);
        }

        .resource-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            padding: 2.5rem 2rem;
            text-align: center;
            color: var(--white);
        }

        .resource-header i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--accent-orange);
        }

        .resource-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .resource-body {
            padding: 2rem;
        }

        .resource-body p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .resource-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-orange);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .resource-link:hover {
            gap: 0.75rem;
            color: #e55a2b;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c5a 100%);
            color: var(--white);
            text-align: center;
            border-radius: 30px;
            margin: 5rem 2rem;
            padding: 5rem 2rem;
            box-shadow: var(--shadow-lg);
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: var(--white);
            color: var(--accent-orange);
        }

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

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

        .btn-outline:hover {
            background: var(--white);
            color: var(--accent-orange);
        }

        /* Footer */
        footer {
            background: var(--primary-blue);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section i {
            color: var(--accent-orange);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-orange);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-orange);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-float i {
            color: var(--white);
            font-size: 2rem;
        }

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

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

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .hero-subtitle {
                font-size: 1.15rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-ctas {
                flex-direction: column;
            }

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

            .cta-section h2 {
                font-size: 2rem;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-float i {
                font-size: 1.5rem;
            }
        }