@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: #f4f4f4;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    list-style: none;
    color: inherit;
}


.tituloBig {
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
}

.subTituloBig {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
}

.tituloBlack {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
}

.parrafoBlack {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
}

.tituloWhite {
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
}

.subTituloWhite {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.tituloWhiteContacto {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    transition: color 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.tituloProductsWhite {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.tituloWhiteContacto:hover {
    color: #DFBF12;
    transform: translateX(-5px);
}


.parrafoWhite {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.tituloBoxBlack {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.parrafoBoxBlack {
    font-size: 0.9rem;
    font-weight: 400;
    color: #000;
}

.tituloBoxWhite {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.parrafoBoxWhite {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
}

.txtFooterThin {
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
}

.txtFooterBold {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}


/* Sección de introducción */
.intro-section {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

/* Ocultar la intro al finalizar */
.intro-section.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Contenedor del texto */
.intro-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: flex;
    gap: 20px;
    opacity: 0;
}

/* Animación de aparición de las palabras */
.word {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Animaciones de las palabras */
.word:nth-child(1) {
    animation-delay: 0.5s;
}

.word:nth-child(2) {
    animation-delay: 1.5s;
}

.word:nth-child(3) {
    animation-delay: 2.5s;
}

/* Logo oculto al inicio */
.intro-logo {
    width: 100px;
    margin-top: 25px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 4s;
    /* Aparece después de las palabras */
}

/* Animación de fade-in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de fade-in general */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* 🔥 NAVBAR Sticky Mejorado */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    box-shadow: none;
    transform: translateY(0);
    box-sizing: border-box;
}

/* 🔥 Clases para ocultar/mostrar el navbar */
.navbar.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
}

.navbar.navbar-visible {
    transform: translateY(0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* 🔥 Efecto de peek cuando el navbar está oculto */
.navbar.navbar-hidden::after {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #DFBF12, #FFD700);
    border-radius: 0 0 2px 2px;
    opacity: 0.9;
    box-shadow: 0 2px 10px rgba(223, 191, 18, 0.6);
    animation: peekPulse 2s ease-in-out infinite;
    z-index: 999;
}

/* 🔥 Indicador adicional sutil en la parte superior */
.navbar.navbar-hidden::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(223, 191, 18, 0.4), rgba(223, 191, 18, 0.6), rgba(223, 191, 18, 0.4), transparent);
    z-index: 998;
}

/* 🔥 Indicador de flecha para sugerir scroll hacia arriba */
.navbar.navbar-hidden .navbar-scroll-indicator {
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: rgba(223, 191, 18, 0.8);
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    z-index: 1000;
    animation: indicatorBounce 1.5s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar.navbar-hidden .navbar-scroll-indicator:hover {
    background: rgba(223, 191, 18, 1);
    transform: translateX(-50%) scale(1.1);
}

@keyframes indicatorBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-3px);
    }
}

@keyframes peekPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

/* 🔥 Transición suave para el navbar */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ✅ Cambia de color al hacer scroll */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(223, 191, 18, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    padding: 15px 40px;
}

/* ✅ Logo mejorado */
.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logoHeader {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(223, 191, 18, 0.3));
    transition: filter 0.3s ease;
}

.logoHeader:hover {
    filter: drop-shadow(0 4px 20px rgba(223, 191, 18, 0.5));
}

/* ✅ LISTA DE NAVEGACIÓN EN ESCRITORIO */
.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list li {
    margin: 0;
    position: relative;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(223, 191, 18, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-list a:hover::before {
    left: 100%;
}

.nav-list a:hover {
    color: #DFBF12;
    background: rgba(223, 191, 18, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(223, 191, 18, 0.2);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DFBF12, #FFD700);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list a:hover::after {
    width: 80%;
}

/* 🔥 MENÚ HAMBURGUESA MEJORADO */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 2px solid rgba(223, 191, 18, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    box-sizing: border-box;
}

.menu-toggle:hover {
    background: rgba(223, 191, 18, 0.2);
    border-color: rgba(223, 191, 18, 0.5);
    transform: scale(1.1);
}

/* ✅ Barras del menú hamburguesa mejoradas */
.bar {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, #DFBF12, #FFD700);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(223, 191, 18, 0.3);
    flex-shrink: 0;
    display: block;
}

/* ✅ ANIMACIÓN MEJORADA DE "X" */
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: linear-gradient(90deg, #FFD700, #DFBF12);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: linear-gradient(90deg, #FFD700, #DFBF12);
}

/* 🔥 Indicador de página activa */
.nav-list a.active {
    color: #DFBF12;
    background: rgba(223, 191, 18, 0.15);
    box-shadow: 0 4px 15px rgba(223, 191, 18, 0.3);
}

.nav-list a.active::after {
    width: 80%;
}

/* 🔥 Animación de entrada para el navbar */
@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    animation: navbarSlideDown 0.6s ease-out;
}

/* 🔥 Efecto de partículas en el navbar */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(223, 191, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(223, 191, 18, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.navbar.scrolled::before {
    opacity: 1;
}

/* 🔥 Efecto de brillo en hover para enlaces del navbar */
.nav-list a:hover {
    text-shadow: 0 0 20px rgba(223, 191, 18, 0.5);
}

/* 🔥 Indicador de scroll en el navbar */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DFBF12, #FFD700);
    transition: width 0.3s ease;
}

.navbar.scrolled::after {
    width: 100%;
}

/* 🔥 Animación de entrada para los enlaces */
.nav-list a {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔥 Efecto de partículas flotantes en el navbar */
.navbar-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.navbar-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(223, 191, 18, 0.6);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

.navbar-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.navbar-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.navbar-particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.8;
    }
}

.SectionInicio {
    width: 100%;
    min-height: 100vh;
    background: url('../images/bgBlack.png') no-repeat center center/cover;
    position: relative;
    z-index: 10;
    overflow: visible;
}

/* ===== SECCIÓN HERO MEJORADA ===== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(223, 191, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(223, 191, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(223, 191, 18, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, rgba(223, 191, 18, 0.15), rgba(223, 191, 18, 0.08));
    border-radius: 50%;
    animation: float-hero-shapes 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-shape:nth-child(1) {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero-shape:nth-child(2) {
    top: 75%;
    left: 10%;
    animation-delay: 6s;
    animation-duration: 30s;
}

.hero-shape:nth-child(3) {
    bottom: 20%;
    right: 25%;
    animation-delay: 12s;
    animation-duration: 22s;
}

@keyframes float-hero-shapes {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
}

.wrapperInicio {
    width: 100%;
    min-height: 100%;
    padding: 160px 150px 120px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 11;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-header {
    margin-top: 50px;
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(223, 191, 18, 0.15);
    border: 1px solid rgba(223, 191, 18, 0.3);
    border-radius: 50px;
    margin-bottom: 2px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #DFBF12;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin: 25px 0;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.btn-primary {
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(223, 191, 18, 0.3);
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #f1c40f, #DFBF12);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(223, 191, 18, 0.4);
}

.btn-primary:active,
.btn-primary:focus {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(223, 191, 18, 0.3);
    outline: none;
}

.btn-secondary {
    background: transparent;
    color: #DFBF12;
    border: 2px solid #DFBF12;
    text-decoration: none;
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.btn-secondary .btn-text,
.btn-secondary .btn-icon {
    color: #DFBF12;
}

.btn-secondary:hover {
    background: #DFBF12;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary:hover .btn-text,
.btn-secondary:hover .btn-icon {
    color: #1a1a1a;
}

.btn-secondary:active,
.btn-secondary:focus {
    transform: translateY(0);
    outline: none;
}

.btn-icon {
    font-size: 18px;
    margin-right: 8px;
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(223, 191, 18, 0.3);
}

.hero-feature-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(223, 191, 18, 0.4));
}

.hero-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(223, 191, 18, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-hero-glow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-hero-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

.floating-element {
    position: absolute;
    font-size: 32px;
    animation: float-elements 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(223, 191, 18, 0.5));
}

.floating-element:nth-child(1) {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: -20px;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    right: 10px;
    animation-delay: 4s;
}

@keyframes float-elements {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

strong {
    font-weight: 700;
}

.ctnLeft {
    width: 50%;
}

.ctnRigth {
    width: 50%;
}

.btn {
    background: #DFBF12;
    border-radius: 100px;
    padding: 15px 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    outline: none;
    transform-origin: center;
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.btn:hover {
    background: #c2a70f;
}

.btn:active,
.btn:focus {
    transform: none;
    outline: none;
}


.btnTxt {
    font-size: 1.2rem;
    font-weight: 600;
    color: black;
    margin: 0;
    line-height: 1.2;
}

.sectionNosotros {
    width: 100%;
    height: 100vh;
    background: #fff;

}

.wrapperNosotros {
    width: 100%;
    min-height: 100vh;
    height: auto;
    padding: 80px 150px 80px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* ===== SECCIÓN NOSOTROS MEJORADA ===== */
.nosotros-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
    pointer-events: none;
}

.nosotros-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(223, 191, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(223, 191, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(223, 191, 18, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.nosotros-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.nosotros-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(223, 191, 18, 0.1), rgba(223, 191, 18, 0.05));
    border-radius: 50%;
    animation: float-shapes 20s ease-in-out infinite;
    pointer-events: none;
}

.nosotros-shape:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.nosotros-shape:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.nosotros-shape:nth-child(3) {
    bottom: 20%;
    right: 20%;
    animation-delay: 10s;
    animation-duration: 22s;
}

@keyframes float-shapes {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.nosotros-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nosotros-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.nosotros-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 10px rgba(223, 191, 18, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

.nosotros-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.nosotros-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(223, 191, 18, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(223, 191, 18, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
}

.nosotros-feature:hover {
    transform: translateY(-5px);
    background: rgba(223, 191, 18, 0.1);
    border-color: rgba(223, 191, 18, 0.4);
    box-shadow: 0 8px 25px rgba(223, 191, 18, 0.15);
}

.nosotros-feature-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 8px rgba(223, 191, 18, 0.4));
}

.nosotros-feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.3;
}

.nosotros-image-container {
    position: relative;
    display: inline-block;
}

.nosotros-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(223, 191, 18, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-image-glow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-image-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.ctnLeftNosotros {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.ctnRightNosotros {
    width: auto;
    height: auto;
}

.sectionMision {
    width: 100%;
    height: 100vh;
    background: #000;
    position: relative;
    overflow: hidden;
}

.wrapperMision {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 80px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== SECCIÓN MISIÓN MEJORADA ===== */
.mision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    z-index: 1;
    pointer-events: none;
}

.mision-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 75%, rgba(223, 191, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(223, 191, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(223, 191, 18, 0.04) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.mision-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.mision-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(223, 191, 18, 0.12), rgba(223, 191, 18, 0.06));
    border-radius: 50%;
    animation: float-mision-shapes 17s ease-in-out infinite;
    pointer-events: none;
}

.mision-shape:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
    animation-duration: 21s;
}

.mision-shape:nth-child(2) {
    top: 70%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.mision-shape:nth-child(3) {
    bottom: 25%;
    right: 30%;
    animation-delay: 10s;
    animation-duration: 19s;
}

@keyframes float-mision-shapes {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

.mision-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mision-header {
    margin-bottom: 50px;
}

.mision-icon {
    font-size: 80px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 25px rgba(223, 191, 18, 0.4));
    animation: bounce 2.5s ease-in-out infinite;
}

.mision-subtitle {
    font-size: 1.3rem;
    color: #a0a0a0;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.mision-description {
    margin-bottom: 50px;
}

.mision-highlight {
    padding: 25px 40px;
    background: rgba(223, 191, 18, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(223, 191, 18, 0.3);
    display: inline-block;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #DFBF12;
    font-style: italic;
    text-shadow: 0 0 15px rgba(223, 191, 18, 0.3);
}

.sectionProductos {
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: url('../images/bgBlack.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.wrapperProductos {
    width: 100%;
    height: 100%;
    padding: 80px 50px 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== SECCIÓN PRODUCTOS MEJORADA ===== */
.productos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.productos-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 75%, rgba(223, 191, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(223, 191, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(223, 191, 18, 0.04) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.productos-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.productos-shape {
    position: absolute;
    width: 75px;
    height: 75px;
    background: linear-gradient(45deg, rgba(223, 191, 18, 0.12), rgba(223, 191, 18, 0.06));
    border-radius: 18px;
    animation: float-productos-shapes 19s ease-in-out infinite;
    pointer-events: none;
}

.productos-shape:nth-child(1) {
    top: 18%;
    right: 18%;
    animation-delay: 0s;
    animation-duration: 23s;
}

.productos-shape:nth-child(2) {
    top: 68%;
    left: 12%;
    animation-delay: 4s;
    animation-duration: 27s;
}

.productos-shape:nth-child(3) {
    bottom: 28%;
    right: 28%;
    animation-delay: 8s;
    animation-duration: 21s;
}

@keyframes float-productos-shapes {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-18px) rotate(90deg);
        opacity: 0.6;
    }
}

.productos-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.productos-header {
    margin-bottom: 50px;
}

.productos-icon {
    font-size: 72px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(223, 191, 18, 0.4));
    animation: bounce 3s ease-in-out infinite;
}

.productos-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.productos-image-section {
    margin-bottom: 60px;
}

.productos-image-container {
    position: relative;
    display: inline-block;
}

.productos-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(223, 191, 18, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-productos-glow 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-productos-glow {

    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.imgProductos {
    width: 45%;
    transition: transform 0.3s ease;
}

.imgProductos:hover {
    transform: scale(1.05);
}

.productos-cta {
    margin-top: 60px;
}

.productos-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 45px;
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(223, 191, 18, 0.3);
    min-width: 280px;
    justify-content: center;
}

.productos-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(223, 191, 18, 0.4);
}

.productos-btn-icon {
    font-size: 24px;
}

.productos-btn-text {
    font-size: 18px;
    font-weight: 600;
}

.ctnBoxes {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 60px;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.product-link {
    text-decoration: none;
    flex: 1;
    min-width: 300px;
}

.boxProduct {
    border: 1px solid rgba(223, 191, 18, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.boxProduct::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(223, 191, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.boxProduct:hover::before {
    left: 100%;
}

.boxProduct:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 191, 18, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(223, 191, 18, 0.2);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(223, 191, 18, 0.3));
}

.product-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #DFBF12;
    opacity: 0;
    transition: all 0.3s ease;
}

.boxProduct:hover .product-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.sectionElegirnos {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    position: relative;
    overflow: visible;
}

.wrapperElegirnos {
    width: 100%;
    min-height: 100%;
    padding: 80px 50px 80px 50px;
    position: relative;
    z-index: 2;
}

/* ===== SECCIÓN ELEGIRNOS MEJORADA ===== */
.elegirnos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    z-index: 1;
    pointer-events: none;
}

.elegirnos-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(223, 191, 18, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(223, 191, 18, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(223, 191, 18, 0.03) 0%, transparent 50%);
    opacity: 0.7;
    pointer-events: none;
}

.elegirnos-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.elegirnos-shape {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(223, 191, 18, 0.08), rgba(223, 191, 18, 0.04));
    border-radius: 16px;
    animation: float-elegirnos-shapes 14s ease-in-out infinite;
    pointer-events: none;
}

.elegirnos-shape:nth-child(1) {
    top: 25%;
    right: 25%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.elegirnos-shape:nth-child(2) {
    top: 75%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.elegirnos-shape:nth-child(3) {
    bottom: 35%;
    right: 35%;
    animation-delay: 6s;
    animation-duration: 16s;
}

@keyframes float-elegirnos-shapes {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-10px) rotate(30deg);
        opacity: 0.4;
    }
}

.elegirnos-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.elegirnos-header {
    margin-bottom: 60px;
}

.elegirnos-icon {
    font-size: 72px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(223, 191, 18, 0.3));
    animation: bounce 3s ease-in-out infinite;
}

.elegirnos-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.elegirnos-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.elegirnos-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: rgba(223, 191, 18, 0.08);
    border-radius: 18px;
    border: 1px solid rgba(223, 191, 18, 0.2);
    transition: all 0.3s ease;
    min-width: 160px;
    max-width: 180px;
}

.elegirnos-feature:hover {
    transform: translateY(-5px);
    background: rgba(223, 191, 18, 0.12);
    border-color: rgba(223, 191, 18, 0.4);
    box-shadow: 0 8px 25px rgba(223, 191, 18, 0.2);
}

.elegirnos-feature-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 8px rgba(223, 191, 18, 0.4));
}

.elegirnos-feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
}

.elegirnos-cta {
    margin-top: 40px;
}

.elegirnos-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(45deg, #2563EB, #1D4ED8);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    min-width: 250px;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.elegirnos-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(223, 191, 18, 0.4);
}

.elegirnos-btn-icon {
    font-size: 20px;
}

.ctnContent {
    width: 100%;
    height: 200px;
    background: green;
}

.contenido {
    position: absolute;
    top: 50px;
    right: 0;
    width: 40%;
    display: flex;
    background: #c2a70f;
}

.texto {
    font-size: 0.9rem;
    font-weight: 400;
    color: #000;
}

.linea {
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

.ctnTexts {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
}

.boxTexts {
    width: calc(100% / 3);
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(223, 191, 18, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.boxTexts:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(223, 191, 18, 0.3);
    box-shadow: 0 12px 35px rgba(223, 191, 18, 0.15);
}

.box-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(223, 191, 18, 0.3));
}

.sectionFilosofia {
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: #000;
    position: relative;
}

.wrapperFilosofia {
    width: 100%;
    height: 100%;
    padding: 80px 150px 80px 150px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* ===== SECCIÓN FILOSOFÍA MEJORADA ===== */
.filosofia-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: 1;
    pointer-events: none;
}

.filosofia-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(223, 191, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(223, 191, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(223, 191, 18, 0.04) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.filosofia-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.filosofia-shape {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(223, 191, 18, 0.1), rgba(223, 191, 18, 0.05));
    border-radius: 12px;
    animation: float-filosofia-shapes 16s ease-in-out infinite;
    pointer-events: none;
}

.filosofia-shape:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.filosofia-shape:nth-child(2) {
    top: 70%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 24s;
}

.filosofia-shape:nth-child(3) {
    bottom: 30%;
    right: 30%;
    animation-delay: 8s;
    animation-duration: 18s;
}

@keyframes float-filosofia-shapes {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-12px) rotate(45deg);
        opacity: 0.5;
    }
}

.filosofia-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.filosofia-header {
    margin-bottom: 60px;
}

.filosofia-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(223, 191, 18, 0.4));
    animation: bounce 2.5s ease-in-out infinite;
}

.filosofia-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-top: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.filosofia-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.filosofia-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.filosofia-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DFBF12;
    text-shadow: 0 0 15px rgba(223, 191, 18, 0.4);
}

.filosofia-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ctnItems {
    margin-top: 60px;
    margin-bottom: 60px;
}

.ctnItemFilosofia {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    margin-bottom: 55px;
}

.itemFilosofia {
    width: 50%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(223, 191, 18, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.itemFilosofia:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(223, 191, 18, 0.3);
    box-shadow: 0 10px 30px rgba(223, 191, 18, 0.15);
}

.ctnHeaderItemFilosofia {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    gap: 15px
}

.roundIcon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(223, 191, 18, 0.3);
    transition: all 0.3s ease;
}

.roundIcon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(223, 191, 18, 0.4);
}




.sectionDigi {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: #fff;
}

.wrapperDigi {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 80px 150px 80px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* ===== SECCIÓN DIGI MEJORADA ===== */
.digi-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
    pointer-events: none;
}

.digi-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 75%, rgba(223, 191, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(223, 191, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(223, 191, 18, 0.04) 0%, transparent 50%);
    opacity: 0.7;
    pointer-events: none;
}

.digi-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.digi-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(223, 191, 18, 0.08), rgba(223, 191, 18, 0.04));
    border-radius: 20px;
    animation: float-digi-shapes 18s ease-in-out infinite;
    pointer-events: none;
}

.digi-shape:nth-child(1) {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
    animation-duration: 22s;
}

.digi-shape:nth-child(2) {
    top: 65%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.digi-shape:nth-child(3) {
    bottom: 25%;
    right: 25%;
    animation-delay: 8s;
    animation-duration: 20s;
}

@keyframes float-digi-shapes {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.5;
    }
}

.digi-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.digi-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.digi-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 10px rgba(223, 191, 18, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

.digi-features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.digi-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px;
    background: rgba(223, 191, 18, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(223, 191, 18, 0.2);
    transition: all 0.3s ease;
    min-width: 130px;
}

.digi-feature:hover {
    transform: translateY(-3px);
    background: rgba(223, 191, 18, 0.1);
    border-color: rgba(223, 191, 18, 0.4);
    box-shadow: 0 6px 20px rgba(223, 191, 18, 0.15);
}

.digi-feature-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 6px rgba(223, 191, 18, 0.4));
}

.digi-feature-text {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.3;
}

.digi-images-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
}

.digi-image-wrapper {
    position: relative;
    display: inline-block;
}

.digi-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(223, 191, 18, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-digi-glow 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-digi-glow {

    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.ctnLeftDigi {
    width: 50%;
}

.ctnRightDigi {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 25px;
}

.imgsDigi {
    width: 400px;
}

.sectionIa {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: #000;
    position: relative;
}

.wrapperSectionIa {
    width: 100%;
    height: 100%;
    padding: 80px 15px 80px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== SECCIÓN IA MEJORADA ===== */
.ia-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
    pointer-events: none;
}

.ia-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ia-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #DFBF12;
    border-radius: 50%;
    animation: float-ia-particles 15s linear infinite;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(223, 191, 18, 0.6);
}

.ia-particle:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.ia-particle:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.ia-particle:nth-child(3) {
    left: 35%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.ia-particle:nth-child(4) {
    left: 45%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.ia-particle:nth-child(5) {
    left: 55%;
    animation-delay: 8s;
    animation-duration: 25s;
}

.ia-particle:nth-child(6) {
    left: 65%;
    animation-delay: 10s;
    animation-duration: 19s;
}

.ia-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(223, 191, 18, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 191, 18, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes float-ia-particles {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

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

.ia-header {
    margin-bottom: 40px;
}

.ia-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.ia-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(223, 191, 18, 0.5));
    transition: all 0.3s ease;
}

.ia-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(223, 191, 18, 0.8));
}

.ia-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(223, 191, 18, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.ia-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.ia-title-main {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
}

.ia-title-accent {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #DFBF12, #f1c40f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(223, 191, 18, 0.5);
}

.ia-description {
    margin-bottom: 50px;
}

.ia-main-text {
    font-size: 1.3rem;
    color: #e2e8f0;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.ia-main-text strong {
    color: #DFBF12;
    font-weight: 600;
}

.ia-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ia-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(223, 191, 18, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ia-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(223, 191, 18, 0.4);
    box-shadow: 0 10px 30px rgba(223, 191, 18, 0.2);
}

.ia-feature-icon {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(223, 191, 18, 0.5));
}

.ia-feature-content h4 {
    color: #DFBF12;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.ia-feature-content p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

.ia-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ia-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(223, 191, 18, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(223, 191, 18, 0.3);
    transition: all 0.3s ease;
}

.ia-benefit-item:hover {
    transform: translateY(-3px);
    background: rgba(223, 191, 18, 0.2);
    border-color: rgba(223, 191, 18, 0.5);
}

.ia-benefit-icon {
    font-size: 28px;
}

.ia-benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: #DFBF12;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ia-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ia-btn {
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
}

.ia-btn-primary {
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(223, 191, 18, 0.4);
}

.ia-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(223, 191, 18, 0.6);
}

.ia-btn-secondary {
    background: transparent;
    color: #DFBF12;
    border: 2px solid #DFBF12;
}

.ia-btn-secondary:hover {
    background: #DFBF12;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.ia-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.ia-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ia-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #DFBF12;
    text-shadow: 0 0 20px rgba(223, 191, 18, 0.5);
}

.ia-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.sectionConcretar {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
}

.wrapperConcretar {
    width: 100%;
    height: 100%;
    padding: 80px 15px 80px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== SECCIÓN CONCRETAR MEJORADA ===== */
.concretar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    z-index: 1;
    pointer-events: none;
}

.concretar-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.concretar-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #DFBF12;
    border-radius: 50%;
    animation: float-particles-concretar 20s linear infinite;
    opacity: 0.6;
}

.concretar-particles .particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.concretar-particles .particle:nth-child(2) {
    left: 20%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.concretar-particles .particle:nth-child(3) {
    left: 30%;
    animation-delay: 6s;
    animation-duration: 28s;
}

.concretar-particles .particle:nth-child(4) {
    left: 40%;
    animation-delay: 9s;
    animation-duration: 20s;
}

.concretar-particles .particle:nth-child(5) {
    left: 50%;
    animation-delay: 12s;
    animation-duration: 30s;
}

@keyframes float-particles-concretar {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

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

.concretar-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

.concretar-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.concretar-title strong {
    color: #DFBF12;
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.concretar-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.concretar-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(223, 191, 18, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(223, 191, 18, 0.2);
    border-color: rgba(223, 191, 18, 0.4);
}

.feature-icon {
    font-size: 32px;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.concretar-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    color: #1a1a1a;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(223, 191, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(223, 191, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #374151;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #DFBF12;
}

.btn-secondary:hover {
    background: #DFBF12;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.concretar-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DFBF12;
    text-shadow: 0 2px 4px rgba(223, 191, 18, 0.3);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sectionContacto {
    width: 100%;
    height: autp;
    min-height: 100vh;
    background: url('../images/bgBlack.png') no-repeat center center/cover;
}

.headerContacto {
    width: 100%;
    padding: 25px;
}

.longLogo {
    width: 14%;
}

.wrapperContacto {
    width: 100%;
    height: auto;
    padding: 50px 150px 50px 150px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.ctnLeftContacto {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: flex-start;
}

.formContacto {
    width: 100%;
}

.inputContacto {
    width: 100%;
    border: solid 1px #f4f4f4;
    color: #f4f4f4;
    background: transparent;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.inputContactoTextArea {
    width: 100%;
    min-height: 200px;
    border: solid 1px #f4f4f4;
    color: #f4f4f4;
    background: transparent;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* ===== FORMULARIO DE CONTACTO MEJORADO ===== */
.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #DFBF12;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 16px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #DFBF12;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.inputContacto:focus+.input-focus-border,
.inputContactoTextArea:focus+.input-focus-border,
.selectContacto:focus+.input-focus-border {
    width: 100%;
    background: #DFBF12;
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #DFBF12;
    transition: width 0.3s ease;
}

.inputContacto:focus,
.inputContactoTextArea:focus,
.selectContacto:focus {
    border-color: #DFBF12;
    box-shadow: 0 0 0 3px rgba(223, 191, 18, 0.1);
    outline: none;
}

.selectContacto {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DFBF12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-enviar {
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(223, 191, 18, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    /* Asegurar que el texto esté por encima del efecto */
    z-index: 1;
}

.btn-enviar .btn-icon,
.btn-enviar .btn-text {
    position: relative;
    z-index: 2;
}

.btn-enviar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-enviar:hover::before {
    left: 100%;
}

.btn-enviar:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(223, 191, 18, 0.4);
}

.btn-icon {
    font-size: 18px;
}

.btn-text {
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: #888888;
}

.note-icon {
    font-size: 16px;
}

/* Animaciones de entrada para el formulario */
.form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: formSlideUp 0.6s ease forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.form-group:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes formSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive del formulario */
@media (max-width: 768px) {
    .form-title {
        font-size: 24px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    .btn-enviar {
        padding: 16px 30px;
        font-size: 15px;
        min-width: 180px;
    }

    /* Responsive de la sección concretar */
    .concretar-title {
        font-size: 2rem;
    }

    .concretar-subtitle {
        font-size: 1rem;
    }

    .concretar-features {
        gap: 20px;
    }

    .feature-item {
        padding: 15px;
    }

    .concretar-actions {
        flex-direction: column;
        gap: 15px;
    }

    .concretar-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Responsive de la sección IA */
    .ia-title-main {
        font-size: 2.5rem;
    }

    .ia-title-accent {
        font-size: 3rem;
    }

    .ia-main-text {
        font-size: 1.1rem;
    }

    .ia-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ia-feature {
        padding: 20px;
    }

    .ia-benefits {
        gap: 20px;
    }

    .ia-benefit-item {
        padding: 15px;
    }

    .ia-actions {
        flex-direction: column;
        gap: 15px;
    }

    .ia-btn {
        min-width: 180px;
        padding: 18px 30px;
    }

    .ia-stats {
        gap: 30px;
    }

    .ia-stat-number {
        font-size: 2.2rem;
    }

    /* Responsive de la sección nosotros */
    .nosotros-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .nosotros-header {
        align-items: center;
        text-align: center;
    }

    .nosotros-header .tituloBlack {
        text-align: center !important;
        width: 100%;
        margin: 0 auto;
    }

    .nosotros-header h2 {
        text-align: center !important;
        width: 100%;
    }

    .nosotros-icon {
        margin: 0 auto !important;
        display: block;
    }

    .nosotros-features {
        justify-content: center;
        gap: 20px;
    }

    .nosotros-feature {
        min-width: 120px;
        padding: 15px;
    }

    /* Responsive de la sección digi */
    .digi-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .digi-header {
        align-items: center;
    }

    .digi-features {
        justify-content: center;
        gap: 20px;
    }

    .digi-feature {
        min-width: 110px;
        padding: 15px;
    }

    .digi-images-container {
        align-items: center;
    }

    /* Responsive de la sección filosofía */
    .filosofia-content {
        text-align: center;
    }

    .filosofia-icon {
        font-size: 48px;
    }

    .ctnItemFilosofia {
        flex-direction: column;
        gap: 30px;
    }

    .itemFilosofia {
        width: 100%;
        padding: 20px;
    }

    .ctnHeaderItemFilosofia {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }

    .ctnHeaderItemFilosofia .roundIcon {
        margin: 0 auto;
    }

    .ctnHeaderItemFilosofia .tituloBoxWhite {
        text-align: center !important;
        width: 100%;
    }

    .filosofia-stats {
        gap: 30px;
    }

    .filosofia-stat-number {
        font-size: 2rem;
    }

    /* Responsive de la sección elegirnos */
    .elegirnos-content {
        text-align: center;
    }

    .elegirnos-icon {
        font-size: 56px;
    }

    .ctnTexts {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .boxTexts {
        width: 100%;
        padding: 25px 20px;
    }

    .elegirnos-features {
        gap: 25px;
        margin: 40px 0;
    }

    .elegirnos-feature {
        min-width: 130px;
        padding: 20px;
    }

    .elegirnos-btn {
        min-width: 220px;
        padding: 18px 35px;
    }

    /* Responsive de la sección misión */
    .mision-content {
        text-align: center;
        padding: 0 20px;
    }

    .mision-icon {
        font-size: 60px;
        margin-bottom: 25px;
    }

    .mision-subtitle {
        font-size: 1.1rem;
    }

    .mision-highlight {
        padding: 20px 30px;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    /* Responsive de la sección hero */
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        width: 100%;
        padding: 0;
        max-width: 100%;
    }

    .hero-header {
        margin-bottom: 25px;
        width: 100%;
        padding: 0 10px;
    }

    .hero-badge {
        margin-bottom: 15px;
        display: inline-flex;
    }

    .tituloBig {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .subTituloBig {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin: 20px 0;
        padding: 0 10px;
        line-height: 1.6;
    }

    .hero-actions {
        justify-content: center;
        gap: 12px;
        margin-bottom: 25px;
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .btnTxt {
        font-size: 1rem;
    }

    .hero-features {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 20px;
        margin-top: 20px;
    }

    .hero-feature {
        padding: 12px 10px;
        flex: 0 1 calc(50% - 6px);
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        box-sizing: border-box;
    }

    .hero-feature-icon {
        font-size: 18px;
        flex-shrink: 0;
        line-height: 1;
    }

    .hero-feature-text {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .floating-element {
        font-size: 24px;
    }

    /* Responsive de la sección productos */
    .productos-content {
        text-align: center;
        padding: 0 20px;
    }

    .productos-icon {
        font-size: 56px;
        margin-bottom: 20px;
    }

    .productos-subtitle {
        font-size: 1.1rem;
    }

    .ctnBoxes {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }

    .product-link {
        min-width: 100%;
        width: 100%;
    }

    .boxProduct {
        padding: 25px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .product-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .productos-btn {
        min-width: 250px;
        padding: 20px 40px;
        font-size: 16px;
    }

    .productos-btn-icon {
        font-size: 20px;
    }

    .productos-btn-text {
        font-size: 16px;
    }
}

/* ===== MENSAJE DE ÉXITO Y ESTADOS DE ERROR ===== */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
    animation: slideInDown 0.5s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.success-icon {
    font-size: 32px;
    animation: bounce 1s ease infinite;
}

.success-message h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.success-message p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estados de error */
.inputContacto.error,
.inputContactoTextArea.error,
.selectContacto.error {
    border-color: #e74c3c;
    animation: shake 0.5s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Mejoras en el botón deshabilitado */
.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-enviar:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(223, 191, 18, 0.3);
}

.centRightContacto {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

/* ===== TARJETA DE INFORMACIÓN DE CONTACTO ===== */
.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(223, 191, 18, 0.2);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(223, 191, 18, 0.4);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(223, 191, 18, 0.2);
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: #DFBF12;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(223, 191, 18, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(223, 191, 18, 0.1);
    transform: translateX(5px);
}

.method-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.method-content p {
    font-size: 14px;
    color: #cccccc;
    margin: 0 0 8px 0;
}

.method-link {
    color: #DFBF12;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.method-link:hover {
    color: #f1c40f;
    transform: translateX(3px);
}

.method-note {
    font-size: 12px;
    color: #888888;
    font-style: italic;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(223, 191, 18, 0.1), rgba(241, 196, 15, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(223, 191, 18, 0.2);
}

.time-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.time-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #DFBF12;
    margin: 0 0 3px 0;
}

.time-content p {
    font-size: 12px;
    color: #cccccc;
    margin: 0;
}

/* ===== ENLACES RÁPIDOS ===== */
.quick-links {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(223, 191, 18, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.links-title {
    font-size: 20px;
    font-weight: 600;
    color: #DFBF12;
    margin-bottom: 20px;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(223, 191, 18, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-link:hover {
    background: rgba(223, 191, 18, 0.1);
    border-color: rgba(223, 191, 18, 0.3);
    transform: translateY(-3px);
    color: #DFBF12;
}

.link-icon {
    font-size: 20px;
}

.quick-link span:last-child {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 50px 150px 50px 150px;
}

.ctnFooter {}

@media (max-width: 768px) {
    .SectionInicio {
        overflow: visible;
        min-height: auto;
    }

    .menu-toggle {
        display: flex !important;
        /* Se muestra solo en móviles */
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar {
        padding: 12px 15px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: visible;
        gap: 10px;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
    }

    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
    }

    .navbar>* {
        flex-shrink: 0;
    }

    .navbar-particles {
        display: none;
    }

    .navbar.scrolled {
        padding: 10px 15px;
    }

    .logoHeader {
        height: 32px;
        max-width: 120px;
        width: auto;
    }

    .logo {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 50px);
        display: flex;
        align-items: center;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
        max-width: 36px;
        flex-shrink: 0;
        position: relative;
        z-index: 100000;
        margin-left: auto;
    }

    .menu-toggle .bar {
        width: 20px;
        height: 2.5px;
        margin: 2.5px 0;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.95));
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
        border-right: 1px solid rgba(223, 191, 18, 0.2);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        padding-top: 70px;
    }

    /* ✅ Mostrar menú cuando se abre */
    .nav-list.open {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }

    .nav-list a {
        font-size: 2rem;
        font-weight: 600;
        padding: 20px 30px;
        border-radius: 30px;
        background: rgba(223, 191, 18, 0.1);
        border: 1px solid rgba(223, 191, 18, 0.2);
        min-width: 250px;
        text-align: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .nav-list a:hover {
        background: rgba(223, 191, 18, 0.2);
        border-color: rgba(223, 191, 18, 0.5);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 30px rgba(223, 191, 18, 0.3);
    }

    .nav-list a::before {
        display: none;
    }

    .nav-list a::after {
        display: none;
    }

    /* 🔥 Mejoras adicionales para móviles */
    .navbar-particles {
        display: none;
    }

    /* 🔥 Ajustes para el navbar oculto en móviles */
    .navbar.navbar-hidden {
        transform: translateY(-100%) !important;
    }

    .navbar.navbar-visible {
        transform: translateY(0) !important;
    }

    .navbar {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform;
    }

    .navbar.navbar-visible {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .navbar.navbar-hidden {
        transform: translateY(-100%) !important;
    }

    /* 🔥 Ocultar efecto peek en móviles */
    .navbar.navbar-hidden::after {
        display: none;
    }

    /* 🔥 Ocultar indicadores adicionales en móviles */
    .navbar.navbar-hidden::before {
        display: none;
    }

    .navbar-scroll-indicator {
        display: none !important;
    }


    /* 🔥 Animación de entrada para el menú móvil */
    .nav-list.open li {
        animation: slideInFromLeft 0.5s ease-out forwards;
        opacity: 0;
        transform: translateX(-50px);
    }

    .nav-list.open li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-list.open li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-list.open li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-list.open li:nth-child(4) {
        animation-delay: 0.4s;
    }

    @keyframes slideInFromLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .wrapperInicio {
        flex-direction: column-reverse;
        /* Invierte el orden SOLO en responsive */
        padding: 70px 15px 50px 15px;
        align-items: center;
        text-align: center;
        min-height: auto;
        box-sizing: border-box;
    }

    .hero-header {
        margin-top: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .hero-content {
        gap: 25px;
        width: 100%;
        max-width: 100%;
    }

    .ctnLeft {
        width: 100%;
        padding: 0;
    }

    .ctnLeft,
    .ctnRigth {
        width: 100%;
        /* Ambos ocupan el 100% del ancho en responsive */
    }

    .ctnRigth {
        margin-bottom: 30px;
        /* Espaciado entre la imagen y el texto */
        order: -1;
        padding: 0 20px;
    }

    .hero-image-container {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
        width: auto;
    }

    .hero-floating-elements {
        display: none;
    }

    .imgNosotros {
        max-width: 80%;
        /* Ajusta el tamaño de la imagen en móviles */
    }

    .wrapperNosotros {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .ctnLeftNosotros {
        width: 100%;
        height: 100%;
        align-items: center !important;
        text-align: center !important;
    }

    .ctnLeftNosotros .nosotros-header {
        align-items: center !important;
        text-align: center !important;
    }

    .ctnLeftNosotros .tituloBlack {
        text-align: center !important;
        width: 100%;
    }

    .ctnLeftNosotros .parrafoBlack {
        text-align: center !important;
    }

    .ctnRightNosotros {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .imgNosotros {
        width: 100%;
    }

    .wrapperMision {
        padding: 40px 20px;
        /* 🔥 Reduce padding en móviles para evitar el desbordamiento */
    }

    .wrapperProductos {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
    }

    .imgProductos {
        width: 100%;
    }

    .ctnBoxes {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        margin-top: 50px;
        justify-content: space-between;
        gap: 25px;
    }

    .sectionElegirnos {
        width: 100%;
        height: auto;
        background: #fff;
        position: relative;
    }

    .wrapperElegirnos {
        width: 100%;
        height: 100%;
        padding: 15px;

    }


    .wrapperFilosofia {
        padding: 40px 20px;
    }

    .ctnItems {
        margin-top: 10px;
    }

    .ctnItemFilosofia {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 55px;
    }

    .itemFilosofia {
        width: 100%;
    }


    .wrapperDigi {
        padding: 15px 15px 15px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .ctnLeftDigi {
        width: 100%;
    }

    .ctnRightDigi {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .imgsDigi {
        width: 95%;
    }

    .wrapperSectionIa {
        width: 100%;
        height: 100%;
        padding: 15px 15px 15px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lubiaLogo {
        width: 40%
    }

    .toCenter {
        gap: 25px;
        margin-top: 25px;
    }

    .contenido {
        position: absolute;
        top: 50px;
        left: 0;
        width: 80%;
        display: flex;
    }

    .ctnTexts {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 25px;
        margin-top: 50px;
    }

    .boxTexts {
        width: 100%;
        margin-bottom: 25px;
    }

    .wrapperContacto {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }

    .ctnLeftContacto {
        width: 100%;
    }

    .formContacto {
        width: 100%;
    }

    .centRightContacto {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 25px;
        gap: 20px;
    }

    .contact-info-card,
    .quick-links {
        width: 100%;
        padding: 20px;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-method {
        padding: 12px;
    }

    .method-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15px;
        gap: 10px;
    }
}

/* ===== FOOTER EMOCIONANTE ===== */
.footer-emocionante {
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Onda animada en la parte superior */
.footer-wave {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-wave .shape-fill {
    fill: #DFBF12;
    animation: wave 6s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-10px);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Sección de la marca con efectos */
.footer-brand {
    text-align: left;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(223, 191, 18, 0.3));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(223, 191, 18, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.footer-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.footer-brand-title {
    font-size: 28px;
    font-weight: 700;
    color: #DFBF12;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Redes sociales con efectos geniales */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #DFBF12, #f1c40f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(223, 191, 18, 0.4);
}

/* Secciones con animación */
.footer-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #DFBF12;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #DFBF12, transparent);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.footer-link::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #DFBF12;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: #DFBF12;
    padding-left: 30px;
}

.footer-link:hover::before {
    transform: translateX(3px);
}

/* Información de contacto */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.contact-icon {
    color: #DFBF12;
    margin-right: 12px;
    width: 20px;
    font-size: 16px;
}

.contact-item:hover {
    color: #DFBF12;
    transform: translateX(5px);
}

/* Línea divisoria animada */
.footer-divider {
    display: flex;
    align-items: center;
    margin: 40px 0;
    opacity: 0.7;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DFBF12, transparent);
}

.divider-icon {
    margin: 0 20px;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Sección inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(223, 191, 18, 0.2);
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-decoration {
    display: flex;
    gap: 8px;
}

.copyright-decoration span {
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

.copyright-decoration span:nth-child(2) {
    animation-delay: 0.2s;
}

.copyright-decoration span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.legal-link:hover {
    color: #DFBF12;
}

/* Partículas flotantes */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #DFBF12;
    border-radius: 50%;
    animation: float-particles 15s linear infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 8s;
    animation-duration: 24s;
}

@keyframes float-particles {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Animaciones de entrada */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

.animate-on-scroll:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-on-scroll:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-container {
        padding: 60px 15px 30px;
    }
}