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

        .custom-body { /* Selector de elemento */
            font-family: 'Arial', sans-serif;
            background: #f5f5f5;
            background-image: url('https://intercharge.com.mx/wp-content/uploads/2025/11/Background0.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            margin-top: 180px;
        }

        .custom-body::after { /* Selector de pseudoelemento */
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://intercharge.com.mx/wp-content/uploads/2025/11/Background2_1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            opacity: 0;
            visibility: hidden;
            transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
            pointer-events: none;
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .custom-body.custom-scroll-effect::after {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
            filter: brightness(1);
        }

        .custom-body.custom-scroll-effect.custom-fade-out::after {
            opacity: 0;
            visibility: hidden;
            transform: scale(0.95);
            filter: brightness(0.9);
            transition: all 4s ease-in-out;
        }


        

        /* Navbar con degradado - Versión expandida */
        .custom-navbar { /* Reemplazado .my-navbar */
            background: linear-gradient(135deg, #a66bd3 10%, #5267D9 50%, #3a2097 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-radius: 10px;
            margin: 10px auto;
            width: 92%;
            left: 50%;
            transform: translateX(-50%);
            height: 160px; /* Altura aumentada */
            display: flex;
            align-items: center;
        }

        .custom-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            width: 100%;
            transition: all 0.3s ease;
        }

        .custom-logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .custom-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .custom-logo-img { /* Reemplazado .my-logo-img */
            width: 100px; /* Logo más grande */
            height: auto;
        }

        .custom-nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .custom-nav-link { /* Reemplazado .my-nav-link */
            text-decoration: none;
            color: white;
            font-weight: 500;
            padding: 0.8rem 1.5rem; /* Botones más grandes */
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.1rem; /* Texto más grande */
        }

        .custom-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .custom-nav-content {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .custom-gif-container {
            width: 180px; /* Espacio para el GIF */
            height: 120px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px dashed rgba(255, 255, 255, 0.3);
        }

        .custom-gif-placeholder {
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 0.9rem;
        }

        .custom-nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .custom-btn { /* Reemplazado .my-btn */
            padding: 0.8rem 1.8rem; /* Botones más grandes */
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1rem;
        }

        .custom-btn-outline { /* Reemplazado .my-btn-outline */
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .custom-btn-outline:hover {
            background: white;
            color: #667eea;
            transform: translateY(-2px);
        }

        .custom-btn-primary { /* Reemplazado .my-btn-primary */
            background: white;
            color: #667eea;
            border: 2px solid white;
        }

        .custom-btn-primary:hover {
            background: #f8f9fa;
            border-color: #f8f9fa;
            transform: translateY(-2px);
        }

        /* Clase para cuando haga scroll - versión compacta */
        .custom-navbar.custom-scrolled { /* Reemplazado .my-navbar.scrolled */
                        background:  linear-gradient(  

            135deg,
            #ffffff 10%,
            #5267D9 50%,
            #694AD9 100%
            #694AD9 100% );

            width: 0px;
            height: 60px;
        }

        .custom-navbar.custom-scrolled .custom-nav-actions { /* Reemplazado .my-nav-actions */
            display: none;
        }

        .custom-navbar.custom-scrolled .custom-gif-container {
            display: none; /* Ocultar GIF en scroll */
        }

        .custom-navbar.custom-scrolled .custom-nav-menu { /* Reemplazado .my-nav-menu */
            display: flex;
            gap: 10px;
            margin: 0;
            padding: 0;
        }

        .custom-navbar.custom-scrolled .custom-nav-menu li {
            list-style: none;
        }

        .custom-navbar.custom-scrolled .custom-nav-link { /* Reemplazado .my-nav-link */
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: bold;
            transition: all 0.3s ease;
            padding: 0;
        }

        .custom-navbar.custom-scrolled .custom-nav-link:hover { /* Reemplazado .nav-link */
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .custom-navbar.custom-scrolled .custom-nav-link.custom-active { /* Añadido custom-nav-link y .custom-active */
            background: rgba(87, 86, 86, 0.3);
        }

        .custom-navbar.custom-scrolled .custom-nav-container {
            justify-content: center;
            padding: 0 10px;
            height: 70px;
        }

        .custom-navbar.custom-scrolled .custom-logo-img {
            width: 50px; /* Logo más pequeño en scroll */
        }

        /* Contenido de ejemplo */


     /*   .custom-content {
            margin-top: 180px;
            padding: 0;
            max-width: 100%;
            width: 100%;
        }   */

        .custom-section {
            min-height: 100vh;
            align-items: center;
            justify-content: space-between;
            display: flex;
            padding: 0 3rem;
            gap: 3rem;
        }

        .custom-section.text-only {
            justify-content: center;

        }


        .custom-text-panel {
            width: 500px;
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(32, 32, 32, 0.95));
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 
            0 20px 40px rgba(0,0,0,0.4)
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }








        .custom-section.text-only .custom-text-panel {
            width: 700px;
        }

        .custom-content-panel {
            width: 500px;
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(32, 32, 32, 0.95));
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4)
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);

        }


        .custom-text-panel:hover,
        .custom-content-panel:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
            box-shadow: 
            0 25px 50px rgba(0,0,0,0.5)
            inset 0 1px 0 rgba(255, 255, 255, 0.15);

        }

/*
        .custom-section-content-right {
            flex: 1;
            padding: 2rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            min-width: 300px;
            grid-area: right;
            padding: 2rem;
        }

*/


        #inicio { /* Selector de ID */
            height: 105vh;
            display: center;
            align-items: center;
            justify-content: space-between;
            padding: 0 2.5rem;
            gap: 2rem;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%)
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
            margin-bottom: 0%;
            border-radius: 10px;
            max-width: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.8s ease-out;
            opacity: 1;
            transform: translateY(0);


        }


/* Imagen de fondo */


        #inicio.custom-fade-out {
            opacity: 0.9;
            transform: translateY(-1000px);
        }



         /* Otras secciones SIN efectos de scroll */








        #nosotros, #contacto { /* Selector de ID */
            background: rgba(32, 32, 32, 0.7); 
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3rem;
            gap: 2rem;
            min-height: 100vh;
        }


        /* SECCIÓN NOSOTROS UNIFICADA */
#nosotros.custom-section {
    background: rgba( 0, 0, 0, 0.);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    gap: 0;
    min-height: 100vh;
}

.nosotros-container {
    max-width: 1200px;
    width: 100%;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.nosotros-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nosotros-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #feca57;
}

.nosotros-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    color: #667eea;
}

.nosotros-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.nosotros-content strong {
    color: #feca57;
    font-size: 1.2rem;
}

/* Grid para equipo e imagen */
.nosotros-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.nosotros-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nosotros-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Team features */
.team-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.team-features h3 {
    margin-top: 0;
    color: #feca57;
}

.custom-features {
    list-style: none;
    margin-top: 1rem;
}

.custom-features li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #e0e0e0;
}

.custom-features li:before {
    content: "🔒";
    margin-right: 10px;
    color: #feca57;
}

/* Responsive */
@media (max-width: 968px) {
    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nosotros-image {
        order: -1;
    }
    
    .nosotros-image img {
        max-height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .nosotros-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    #nosotros.custom-section {
        padding: 0 1rem;
    }
    
    .nosotros-content h1 {
        font-size: 2rem;
    }
}





        /* Estilos para el GIF cuando se agrega */
        .custom-gif-content {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }


        

        /* Panel de texto lado izquierdo */

        .custom-text-panel {
            width: 600px;
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(32, 32, 32, 0.95));
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .custom-text-panel.custom-active {
            transform: translate(0);
            opacity: 1;
        }



        .custom-text-panel h1,
        .custom-content-panel h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .custom-text-panel p,
        .custom-content-panel p {
            font-size: 1.2rem;
            line-height: 1.5;
            margin-bottom: 1.6rem;
            color: #e0e0e0;
            
        }



        @media (max-width: 1200px) {
            .custom-section {
                flex-direction: column;
                padding: 0 2rem;
            }
        }

        .costum-text-panel,
        .custom-content-panel {
            width: 90%;
            max-width: 600px;
        }

        .custom-section.text-only .costum-text-panel {
            width: 90px;
            max-width: 700px;
        }



        .custom-features {
            list-style: none;
            margin-top: 2rem;
        }

        .custom-features li {
            padding: 0.8rem 0;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .custom-features li:before {
            content: "🔒";
            margin-right: 10px;
        }

       /* Inicio sección */

       .custom-hero-content {
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            background: rgba(102, 126, 234, 0.4);

       }

       .hero-badge {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            color: rgba(255, 119, 198, 0.9);
            font-weight: 500;
       }

       .custom-panel-inicio h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-animation-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
       }

       .custom-panel-inicio p {
        display: flex;
        background: rgba(0.7);
        backdrop-filter: blur(10px);
        font-size: 1.3rem;
        line-height: 1.6;
        color: rgb(0, 0, 0);
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
       }

       .hero-actions {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 4rem;
       }

       .hero-btn {
        padding: 1rem 2.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
        border: none;
        cursor: pointer;
       }

       .hero-btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
       }

       .hero-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
       }

       .hero-btn-secondary {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
       }

       .hero-btn-secundary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
       }

       .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
       }

       .floating-element {
        position: absolute;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        animation: float 8s ease-in-out infinite;
       }

       .floating-element:nth-child(1) {
        width: 150px;
        height: 150px;
        top: 15%;
        left: 10%;
        animation-delay: 0s;
       }

       .floating-element:nth-child(2) {
        width: 100px;
        height: 100px;
        top: 65%;
        right: 15%;
        animation-delay: 2s;
       }

       .floating-element:nth-child(3) {
        width: 80px;
        height: 80px;
        bottom: 25%;
        left: 20%;
        animation-delay: 4s;
       }

       @keyframes float {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        50% {transform: translateY(-15px) rotate(180deg);
        }
       }

               /* RESPONSIVE */
        @media (max-width: 768px) {
            .custom-panel-inicio {
                width: 90%;
                padding: 3rem 2rem;
            }

            .custom-panel-inicio h1 {
                font-size: 2.5rem;
            }

            .custom-panel-inicio p {
                font-size: 1.1rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-btn {
                width: 200px;
            }
        }
        
        /* Estilos para la sección de contacto */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-item h4 {
    color: #feca57;
    margin-bottom: 0.5rem;
}

.social-links {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer */
.custom-footer {
    background: rgba(32, 32, 32, 0.9);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #feca57;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Team features */
.team-features {
    margin-top: 2rem;
}

.team-features h3 {
    color: #feca57;
    margin-bottom: 1rem;
}





/* Estilos para mensajes del formulario */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
}

.form-message-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

/* Estilos para botón loading */
#submitBtn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}








