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

body {
    font-family: 'Inter', sans-serif;
    background: #0d1117;
    color: #eaeaea;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ---------------- HEADER ---------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0d1117;
    border-bottom: 1px solid #1e2530;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    height: 50px;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    display: block;
    border-radius: 2px;
}

.menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-wrapper a {
    background: #2563EB;
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

.btn-wrapper a:hover {
    background: #1E3A8A;
}

#menu-toggle {
    display: none;
}

.overlay-menu {
    display: none;
}

.close-menu-mobile {
    display: none;
}

/* Menu Mobile */
@media (max-width: 768px) {
    .menu {
        position: fixed;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        background: #0d1117;
        height: 100vh;
        width: 100%;
        top: 0;
        left: -100%;
        padding-top: 100px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    #menu-toggle:checked ~ .menu {
        left: 0;
    }

    .menu-icon {
        display: flex;
    }

    .close-menu-mobile {
        display: block;
        width: 100%;
        text-align: right;
        padding: 20px;
        position: absolute;
        top: 0;
        right: 0;
    }

    .btn-close-menu {
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }

    .overlay-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    #menu-toggle:checked ~ .overlay-menu {
        display: block;
    }
}

/* ---------------- HERO SWIPER ---------------- */
.hero-pro {
    position: relative;
    height: 100vh;
    background: radial-gradient(circle at center, #1e2530 0%, #0d1117 100%);
    overflow: hidden;
    margin-top: 70px;
}

.hero-pro .swiper {
    width: 100%;
    height: 100%;
}

.hero-pro .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s, visibility 1s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero-pro .swiper-slide-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}


.hero-pro h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    max-width: 800px;
}
.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFF;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}
.hero-pro p {
    font-size: 1.4rem;
    color: #cfcfcf;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-primary {
    background: #2563EB;
    color: #fff;
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3
);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1E3A8A;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
}

.hero-pro .swiper-button-next,
.hero-pro .swiper-button-prev {
    color: #2563EB;
}

.hero-pro .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero-pro .swiper-pagination-bullet-active {
    background: #2563EB;
    opacity: 1;
}
.hero-pro .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
    opacity: 0 !important;
    transition: opacity 1s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero-pro .swiper-slide-active {
    opacity: 1 !important;
    position: relative;
}

/* ---------------- GENERAL SECCIONES ---------------- */
.section {
    padding: 120px 20px;
}

.section.light {
    background: #f9f9f9;
    color: #333;
}

.section.dark {
    background: #161b22;
    color: #fff;
}

.section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: #aaa;
}

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-card, .step-card {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563EB;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Sectores Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sector-card {
    background: white;
    color: #333;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.sector-icon {
    height: 70px;
    margin-bottom: 20px;
}

/* CTA FINAL */
.section.cta-final {
    background: linear-gradient(45deg, #2563EB, #1E3A8A);
    text-align: center;
    color: white;
}

.cta-final-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-final-content p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.btn-cta-pro {
    background: #fff;
    color: #2563EB;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-cta-pro:hover {
    background: #f9f9f9;
    color: #1E3A8A;
    transform: scale(1.05);
}
.cta-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
}

/* FOOTER */
.footer {
    background: #0d1117;
    color: #888;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #222;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
    .hero-pro h1 {
        font-size: 2.5rem;
    }

    .hero-pro p {
        font-size: 1.1rem;
    }

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

    .cta-final-content h2 {
        font-size: 2.2rem;
    }

    .cta-final-content p {
        font-size: 1rem;
    }

    .btn-primary, .btn-cta-pro {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .sector-icon {
        height: 50px;
    }
}