:root {
    /*  Principales */
    --primary-color: #0A2E4D;
    --primary-dark: #002749;
    --primary-light: #0D4068;
    
    /*   Acento */
    --accent-color: #013263;
    --accent-light: #5A9BD5;
    --sky-blue: #87CEEB;
    
    /*   Texto */
    --text-dark: #0A0A0A;
    --text-medium: #3D3D3D;
    --text-light: #6B7280;
    
    /*   Fondo */
    --bg-light: #F8FAFB;
    --bg-lighter: #FFFFFF;
    
    /*  Interfaz */
    --border-color: #E5E7EB;
    
    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(10, 46, 77, 0.08);
    --shadow-md: 0 4px 12px rgba(10, 46, 77, 0.12);
    --shadow-lg: 0 10px 30px rgba(10, 46, 77, 0.15);
    --shadow-xl: 0 20px 50px rgba(10, 46, 77, 0.20);
}

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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-lighter);
}

/* 
   NAVBAR
*/
.navbar-corporate {
    background: rgba(10, 46, 77, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-corporate.scrolled {
    background: rgba(5, 26, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-lighter) !important;
    letter-spacing: 0.3px;
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
    position: relative;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.navbar-brand i {
    font-size: 1.7rem;
    color: var(--sky-blue);
}

.navbar-nav {
    gap: 0.3rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1.3rem 1.1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link {
    position: relative; 
}

.nav-link.active {
    color: var(--sky-blue) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 8px; 
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--sky-blue);
    border-radius: 2px;
}
.nav-link:hover {
    color: var(--sky-blue) !important;
}

.dropdown-menu {
    background: rgba(10, 46, 77, 0.97);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-top: 0;
    padding: 0.5rem 0;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    font-size: 0.94rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(135, 206, 235, 0.12);
    color: var(--sky-blue);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

.btn-navbar {
    background: var(--accent-color);
    color: var(--bg-lighter);
    padding: 0.65rem 1.6rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.94rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.5rem;
    display: inline-block;
}

.btn-navbar:hover {
    background: var(--accent-light);
    color: var(--bg-lighter);
}


.btn-navbar-lighting {
    background: transparent;
    color: var(--bg-lighter);
   padding: 0.65rem 1.6rem;
    border-radius: 3px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    font-size: 0.94rem;
    display: inline-block;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-navbar-lighting:hover {
    border-color: var(--sky-blue);
    color: var(--sky-blue);
}

.navbar-mobile-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    position: relative;
}

.navbar-toggler {
    padding: 0.5rem;
    border: none;
    background: transparent;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
}

.navbar-toggler-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--bg-lighter);
    transition: all 0.3s ease;
}

.navbar-toggler-icon .bi-list {
    opacity: 1;
    visibility: visible;
}

.navbar-toggler-icon .bi-x {
    opacity: 0;
    visibility: hidden;
}

/* Cuando el menú está abierto */
.navbar-toggler[aria-expanded="true"] .bi-list {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) rotate(90deg);
}

.navbar-toggler[aria-expanded="true"] .bi-x {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-brand {
        padding: 0.8rem 0;
        font-size: 1.2rem;
    }

    .navbar-brand-text {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .navbar-logo {
        height: 32px;
    }

   /* .btn-navbar {
         padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
*/
    /*  MENÚ PANTALLA COMPLETA CON SCROLL */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 46, 77, 0.98);
        backdrop-filter: blur(20px);
        margin: 0;
        padding: 100px 2rem 2rem;
        border: none;
        border-radius: 0;
        overflow-y: auto;
        height: 100vh;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-collapse.collapsing {
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link {
        padding: 1.2rem 0 !important;
        font-size: 1.1rem;
        width: 100%;
    }

     .nav-link.active {
        color: var(--sky-blue) !important;
        font-weight: 600;
        padding-left: 1.2rem; 
        border-left: 3px solid var(--sky-blue);
        background: rgba(135, 206, 235, 0.08);
    }

    .nav-link.active::after {
        display: none; 
    }

     

    /* DROPDOWN EN MÓVIL */
    .navbar-nav .dropdown-menu {
        background: rgba(5, 26, 46, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin: 0;
        padding: 0.5rem 0;
        position: static !important;
        transform: none !important;
        width: 100%;
        float: none;
    }

    .navbar-nav .dropdown-menu.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }

    .dropdown-item {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .navbar-nav .dropdown-toggle::after {
        transition: transform 0.3s ease;
        float: right;
        margin-top: 0.5rem;
    }

    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* Botón contacto en el navbar */
    .nav-item.ms-lg-3 {
        margin: 0 !important;
        margin-top: 1rem !important;
    }

    /*  SCROLL PARA MÓVIL */
    .navbar-collapse::-webkit-scrollbar {
        width: 6px;
    }

    .navbar-collapse::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .navbar-collapse::-webkit-scrollbar-thumb {
        background: rgba(135, 206, 235, 0.5);
        border-radius: 3px;
    }

    .navbar-collapse::-webkit-scrollbar-thumb:hover {
        background: rgba(135, 206, 235, 0.7);
    }
}

@media (max-width: 576px) {
    .navbar-brand-text {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }

    .navbar-logo {
        height: 28px;
    }

   /* .btn-navbar {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }*/

    .navbar-toggler-icon i {
        font-size: 1.6rem;
    }

    .navbar-collapse {
        padding: 90px 1.5rem 2rem;
    }

    .nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .navbar-brand-text {
        font-size: 0.7rem;
    }

    .navbar-logo {
        height: 26px;
    }

    .navbar-collapse {
        padding: 80px 1rem 2rem;
    }
}
/* 
   HERO SECTION
    */
.hero-section {
    background: linear-gradient(135deg, rgba(5, 26, 46, 0.95) 0%, rgba(10, 46, 77, 0.92) 100%),
                url('../img/Backgorund.png'),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"%3E%3Cdefs%3E%3ClinearGradient id="grad1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%230A2E4D;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%230D4068;stop-opacity:1" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="1920" height="1080" fill="url(%23grad1)"/%3E%3Cg opacity="0.4"%3E%3Ccircle cx="400" cy="300" r="200" fill="%2387CEEB" opacity="0.1"/%3E%3Ccircle cx="1500" cy="700" r="300" fill="%233B7EBF" opacity="0.1"/%3E%3Ccircle cx="900" cy="500" r="150" fill="%235A9BD5" opacity="0.08"/%3E%3C/g%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(135, 206, 235, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(59, 126, 191, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 40px, rgba(255,255,255,0.03) 41px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 40px, rgba(255,255,255,0.03) 41px);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(135, 206, 235, 0.05);
    animation: float-background 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 40%;
    animation-delay: 10s;
}

@keyframes float-background {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.05;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.08;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.06;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(135, 206, 235, 0.15);
    color: var(--sky-blue);
    padding: 0.45rem 1.1rem;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(135, 206, 235, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bg-lighter);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--sky-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

/* BOTONES HERO */
.btn-get-started {
    background: var(--accent-color);
    color: var(--bg-lighter);
    padding: 0.85rem 2.2rem;
    border-radius: 3px;
    font-weight: 600;
    border: none;
    margin-right: 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
}

.btn-get-started:hover {
    background: var(--accent-light);
    color: var(--bg-lighter);
}

.btn-watch-video {
    background: transparent;
    color: var(--bg-lighter);
    padding: 0.85rem 2.2rem;
    border-radius: 3px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-watch-video:hover {
    border-color: var(--sky-blue);
    color: var(--sky-blue);
}


/* 
   SECTIONS
    */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(59, 126, 191, 0.08);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

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

/* CARDS */
.card-clean {
    background: var(--bg-lighter);
    border-radius: 4px;
    padding: 2.2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.card-clean:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(10, 46, 77, 0.08);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.6rem;
    color: var(--bg-lighter);
}

.card-clean h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.card-clean p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.97rem;
}

/* ALERT SECTION*/
.alert-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.alert-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.alert-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.alert-icon i {
    font-size: 2rem;
    color: var(--sky-blue);
}

/*STATS */
.stat-box {
    background: var(--bg-lighter);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(10, 46, 77, 0.08);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
}

/*  TEAM*/
.team-member {
    background: var(--bg-lighter);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(10, 46, 77, 0.08);
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.team-image i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.15;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 500;
}

/* BADGES DE CERTIFICACIÓN */
.certification-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge-item {
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.badge-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 3px 15px rgba(10, 46, 77, 0.08);
    transform: translateY(-2px);
}

.badge-logo {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.badge-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/*ACCORDION */
.accordion-clean .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.8rem;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-lighter);
}

.accordion-clean .accordion-button {
    background: var(--bg-lighter);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 1.3rem 1.5rem;
    font-size: 1rem;
    border: none;
}

.accordion-clean .accordion-button:not(.collapsed) {
    background: var(--primary-dark);
    color: var(--bg-lighter);
    box-shadow: none;
}

.accordion-clean .accordion-button:focus {
    box-shadow: none;
}

.accordion-clean .accordion-body {
    padding: 1.3rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* FOOTER */
.footer-clean {
    background: var(--bg-lighter);
    padding: 70px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--accent-color);
    font-size: 1.7rem;
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 3px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    background: var(--primary-dark);
    color: var(--bg-lighter);
    border-color: var(--primary-dark);
}

.footer-heading {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.93rem;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding-top: 25px;
}

.footer-copy {
    color: var(--text-light);
    font-size: 0.93rem;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 3px;
    background: var(--primary-dark);
    color: var(--bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
}


@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .navbar-container { padding: 0 1.5rem; }
}

@media (max-width: 768px) {
    .hero-section { 
        padding: 120px 0 60px; 
        background-attachment: scroll;
    }
    
    .hero-title { 
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle { 
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .section-title { font-size: 1.9rem; }
    
   
    
    .btn-get-started,
    .btn-watch-video {
        display: block;
        width: 100%;
        margin: 0 0 0.8rem 0;
        text-align: center;
        justify-content: center;
    }
    
    .floating-shape { display: none; }
    
    .navbar-brand {
        padding: 1rem 0;
    }
    
    .certification-badges {
        gap: 1rem;
    }
    
    .badge-item {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .badge-logo {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title { 
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.98rem;
    }
    
    .section-title { font-size: 1.65rem; }
    .navbar-container { padding: 0 1rem; }
    
    
}

/* UTILIDADES */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-light-custom { background: var(--bg-light) !important; }
.border-primary { border-color: var(--primary-color) !important; }




html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}


.hero-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.hero-section .row.gx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-section .row.gx-0 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}


.hero-main-image {
    animation: float-image 6s ease-in-out infinite;
}

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


@media (max-width: 768px) {
    .hero-section .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .hero-section .row.gx-0 > [class*="col-"] {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}