/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mejoras de Accesibilidad (WCAG) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Media query específica para pantallas móviles con altura inferior a 800px - Menú compacto */
@media screen and (max-width: 768px) and (max-height: 800px) {
    .nav-menu {
        padding: 0.5rem 0; /* Padding aún más reducido para pantallas bajas */
        top: 100px; /* Posición más alta para aprovechar mejor el espacio */
    }

    .nav-menu li {
        margin: 0.3rem 0; /* Margen aún más compacto */
    }

    .nav-link {
        padding: 0.5rem 1rem; /* Padding reducido en los enlaces */
        font-size: 0.9rem; /* Texto ligeramente más pequeño */
    }
}

:root {
    --primary-color: #2E86AB;
    --secondary-color: #A23B72;
    --accent-color: #F18F01;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --white: #FFFFFF;
    --gray-light: #BDC3C7;
    --gray-dark: #7F8C8D;
    --gradient-primary: linear-gradient(135deg, #2E86AB 0%, #A23B72 100%);
    --gradient-secondary: linear-gradient(135deg, #F18F01 0%, #2E86AB 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img,
.nav-logo video {
    width: 150px;
   
    object-fit: contain;
    border-radius: 8px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - Carrusel completo */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

/* Carrusel del hero que abarca toda la sección */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Fondo dinámico de cada slide */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Fondo específico para el slide de ERP */
.carousel-slide:first-child .slide-background {
    background-image: url('../img/erphero.jpg'), linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: multiply;
}

/* Overlay más translúcido para el slide de ERP */
.carousel-slide:first-child .slide-overlay {
    background: rgba(0, 0, 0, 0.1);
}

/* Fondo específico para el slide de Soporte */
.carousel-slide:nth-child(2) .slide-background {
    background-image: url('../img/soporte.jpg'), linear-gradient(135deg, rgba(240, 147, 251, 0.7) 0%, rgba(245, 87, 108, 0.7) 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: multiply;
}

/* Overlay más translúcido para el slide de Soporte */
.carousel-slide:nth-child(2) .slide-overlay {
    background: rgba(0, 0, 0, 0.1);
}

/* Fondo específico para el slide de 3D */
.carousel-slide:nth-child(3) .slide-background {
    background-image: url('../img/3dhero.jpg'), linear-gradient(135deg, rgba(250, 112, 154, 0.7) 0%, rgba(254, 225, 64, 0.7) 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: multiply;
}

/* Overlay más translúcido para el slide de 3D */
.carousel-slide:nth-child(3) .slide-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Contenido del hero dentro de cada slide */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.carousel-slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-slide p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.carousel-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Imagen/Video del hero */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-graphic video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.design-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Navegación del carrusel */
.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 2rem;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.carousel-arrow i {
    color: var(--white);
    font-size: 1.4rem;
}

/* Indicadores del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.indicator.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.hero-graphic video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.hero-graphic svg {
    width: 100%;
    height: 100%;
    max-width: 350px;
    max-height: 350px;
}

.hero-graphic i {
    font-size: 8rem;
    color: var(--white);
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    z-index: 1;
    animation: patternFloat 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(74, 144, 226, 0.02) 40px,
            rgba(74, 144, 226, 0.02) 80px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(139, 69, 19, 0.015) 60px,
            rgba(139, 69, 19, 0.015) 120px
        );
    z-index: 1;
    animation: patternRotate 30s linear infinite;
}

@keyframes patternFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes patternRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray-dark);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-image: url('../img/bgserv.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.13);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

/* Estilos específicos para el título y descripción de la sección servicios */
.services .section-header h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    transform: translateY(0) scale(1);
   
}

/* Imagen de fondo específica para la tarjeta de ERP */
.service-card:nth-child(1) {
    background-image: url('../img/erpcard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-card:nth-child(1) > * {
    position: relative;
    z-index: 2;
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Imagen de fondo específica para la tarjeta de Soporte Informático */
.service-card:nth-child(2) {
    background-image: url('../img/soportecard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-card:nth-child(2) > * {
    position: relative;
    z-index: 2;
}

/* Imagen de fondo específica para la tarjeta de Modelado 3D */
.service-card:nth-child(3) {
    background-image: url('../img/3dcard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-card:nth-child(3) > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(52, 152, 219, 0.3);
    border: 2px solid rgba(52, 152, 219, 0.5);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover h3 {
    background: rgba(0, 0, 0, 0.8);
    transform: translateX(5px);
}

.service-card:hover p {
    background: rgba(0, 0, 0, 0.8);
    transform: translateX(5px);
}

.service-card:hover .service-btn {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.5);
}

.service-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    max-width: 60px;
    max-height: 60px;
    z-index: 1;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    position: absolute;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 1.5rem 0.5rem;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
}

.service-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1.5rem 1rem;
    border-radius: 0 0 10px 10px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
}

.service-btn:hover {
    background: linear-gradient(135deg, #2980b9, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
    background-size: 60px 60px, 40px 40px, 100px 100px;
    animation: patternMove 20s linear infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.solutions .container {
    position: relative;
    z-index: 2;
}

.solutions .section-header h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.solutions .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.solution-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
}

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

.solution-item:hover {
    border-color: rgba(74, 144, 226, 0.6);
    transform: translateY(-15px) scale(1.05);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(74, 144, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.solution-item:hover::before {
    left: 100%;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(74, 144, 226, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.solution-item:hover .solution-icon {
    transform: scale(1.1) rotateY(360deg);
    background: rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.7);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.solution-icon i {
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.solution-item:hover .solution-icon i {
    color: #4a90e2;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.solution-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.solution-item:hover h3 {
    color: #4a90e2;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.solution-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.solution-item:hover p {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

/* ERP Section */
.erp-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.erp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%),
        linear-gradient(-60deg, transparent 40%, rgba(120, 119, 198, 0.08) 50%, transparent 60%);
    background-size: 700px 700px, 500px 500px, 300px 300px, 150px 150px, 150px 150px;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%, 100% 0%;
    animation: erpPatternMove 35s ease-in-out infinite;
    z-index: 1;
}

.erp-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(120, 119, 198, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(120, 119, 198, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 0 0;
    animation: erpGridMove 40s linear infinite;
    z-index: 1;
}

@keyframes erpPatternMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%, 100% 0%;
    }
    20% {
        background-position: 8% 8%, 92% 92%, 58% 42%, 8% 8%, 92% 8%;
    }
    40% {
        background-position: 15% 15%, 85% 85%, 65% 35%, 15% 15%, 85% 15%;
    }
    60% {
        background-position: 22% 22%, 78% 78%, 72% 28%, 22% 22%, 78% 22%;
    }
    80% {
        background-position: 12% 35%, 88% 65%, 40% 60%, 35% 35%, 65% 35%;
    }
}

@keyframes erpGridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(25px, 25px);
    }
}

.erp-section .container {
    position: relative;
    z-index: 2;
}

.erp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.erp-logo {
    margin-bottom: 2rem;
    text-align: left;
}

.erp-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.erp-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.15));
}

.erp-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.erp-text p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.erp-features {
    list-style: none;
}

.erp-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1rem;
}

.erp-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.erp-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.erp-graphic {
    width: 320px;
    height: 320px;
    background: rgba(120, 119, 198, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(120, 119, 198, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(120, 119, 198, 0.15);
    transition: all 0.3s ease;
}

.erp-graphic:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(120, 119, 198, 0.2);
}

.erp-graphic video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.erp-graphic i {
    font-size: 6rem;
    color: var(--white);
    opacity: 0.8;
}

/* Support Section */
.support {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #dee2e6 50%, #ced4da 75%, #adb5bd 100%);
    position: relative;
    overflow: hidden;
}

.support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(155, 89, 182, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(120, 119, 198, 0.04) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 30%, rgba(52, 152, 219, 0.03) 40%, transparent 50%);
    background-size: 150px 150px, 120px 120px, 180px 180px, 80px 80px, 100px 100px;
    animation: supportPatternMove 20s ease-in-out infinite;
}

.support::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(120, 119, 198, 0.02) 40px,
            rgba(120, 119, 198, 0.02) 42px,
            transparent 42px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(52, 152, 219, 0.015) 40px,
            rgba(52, 152, 219, 0.015) 42px,
            transparent 42px
        );
    animation: supportGridMove 25s linear infinite reverse;
}

@keyframes supportPatternMove {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    25% { 
        transform: translateX(20px) translateY(-15px) rotate(1deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-10px) translateY(10px) rotate(-0.5deg);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(15px) translateY(-5px) rotate(0.5deg);
        opacity: 0.7;
    }
}

@keyframes supportGridMove {
    0% { 
        transform: translateX(0) translateY(0);
    }
    100% { 
        transform: translateX(40px) translateY(40px);
    }
}

.support .container {
    position: relative;
    z-index: 2;
}

.support .section-header h2 {
    color: var(--dark-color);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.support .section-header p {
    color: var(--gray-dark);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.support-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.support-logo-img {
    height: 160px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(120, 119, 198, 0.3));
    transition: var(--transition);
}

.support-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 8px rgba(120, 119, 198, 0.4));
}

.support-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.support-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

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

.plan {
    background: rgba(120, 119, 198, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(120, 119, 198, 0.2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.15);
    transition: var(--transition);
}

.plan:hover {
    transform: translateY(-5px);
    background: rgba(120, 119, 198, 0.12);
    border-color: rgba(52, 152, 219, 0.4);
    box-shadow: 0 15px 40px rgba(120, 119, 198, 0.2), 0 0 20px rgba(52, 152, 219, 0.15);
}

.plan h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.plan p {
    color: var(--gray-dark);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #3498db 50%, #5dade2 75%, #85c1e9 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(74, 144, 226, 0.12) 1.5px, transparent 1.5px),
        linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.05) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.08) 50%, transparent 55%);
    background-size: 80px 80px, 120px 120px, 100px 100px, 60px 60px, 90px 90px;
    background-position: 0 0, 40px 40px, 20px 60px, 0 0, 45px 45px;
    animation: contactPatternMove 25s linear infinite;
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, 0.08) 75%, transparent 80%),
        linear-gradient(0deg, transparent 70%, rgba(255, 255, 255, 0.06) 75%, transparent 80%);
    background-size: 150px 150px, 200px 200px;
    animation: contactGridMove 30s linear infinite reverse;
    z-index: 1;
}

@keyframes contactPatternMove {
    0% { background-position: 0 0, 40px 40px, 20px 60px, 0 0, 45px 45px; }
    100% { background-position: 80px 80px, 120px 120px, 100px 100px, 60px 60px, 135px 135px; }
}

@keyframes contactGridMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 150px 150px, 200px 200px; }
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    width: 60px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    flex-shrink: 0;
}

.contact-item i.fab.fa-whatsapp {
    color: #25D366;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.contact-item i.fas.fa-phone {
    color: #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.contact-item i.fas.fa-envelope {
    color: #e74c3c;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.contact-item i.fas.fa-map-marker-alt {
    color: #f39c12;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-item a {
    color: #ffffff !important; /* Azul claro brillante para mejor visibilidad */
    text-decoration: none;
    font-weight: 600; /* Agregado peso de fuente para mayor contraste */
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color) !important; /* Color de acento en hover */
    text-decoration: underline;
    text-shadow: 0 0 12px rgba(241, 143, 1, 0.8);
    transform: scale(1.02); /* Ligero efecto de escala en hover */
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group select {
    cursor: pointer;
    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='white' 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 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
}

.checkbox-label a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
/* Footer Styles */
.footer {
    background: var(--dark-color);
    padding: 3rem 0 1rem;
    color: var(--gray-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo video,
.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-about p {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social a i {
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact .contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact .contact-info-item i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
}

.footer-contact .contact-info-item a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-info-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    /* Footer Tablet */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px; /* Aumentado para acomodar el logo más grande */
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 1rem 0; /* Reducido de 2rem a 1rem para optimizar espacio vertical */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0; /* Reducido de 1rem a 0.5rem para juntar más los items */
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        margin-top: 90px; /* Agregando margen superior para separar del navbar */
    }

    .hero {
        padding-top: 180px; /* Aumentado para acomodar el navbar más alto */
    }

    .carousel-slide h1 {
        font-size: 2.5rem;
    }

    .carousel-slide p {
        font-size: 1rem;
    }

    .carousel-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .carousel-arrow {
        width: 50px;
        height: 50px;
    }

    .carousel-arrow i {
        font-size: 1.2rem;
    }

    .carousel-navigation {
        padding: 0 1rem;
        top: 80%; /* Moviendo las flechas más abajo para evitar que tapen el texto */
    }

    .slide-buttons {
        justify-content: center;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .carousel-indicators {
        bottom: 20px;
        gap: 0.6rem;
    }

    .hero-graphic {
        width: 280px;
        height: 280px;
    }

    .hero-graphic video {
        border-radius: 15px;
    }

    .scroll-indicator {
        bottom: 10px;
        font-size: 1.2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .erp-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .erp-logo {
        text-align: center;
    }

    .erp-features {
        justify-content: center;
    }

    .erp-features li {
        justify-content: center;
    }

    .erp-graphic {
        width: 250px;
        height: 250px;
    }

    .erp-graphic video {
        border-radius: 12px;
    }

    .erp-text h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

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

    .footer-contact .contact-info-item {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 200px; /* Aumentado para dar más espacio entre el navbar y el contenido del hero */
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-item {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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

/* Software y Hardware Section */
.software-hardware {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.software-hardware::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(120, 119, 198, 0.1) 50%, transparent 60%);
    background-size: 800px 800px, 600px 600px, 400px 400px, 200px 200px, 200px 200px;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%, 100% 0%;
    animation: softwarePatternMove 20s ease-in-out infinite;
    z-index: 1;
}

.software-hardware::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 0 0;
    animation: softwareGridMove 25s linear infinite;
    z-index: 1;
}

@keyframes softwarePatternMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%, 100% 0%;
    }
    25% {
        background-position: 20% 10%, 80% 90%, 60% 40%, 10% 10%, 90% 10%;
    }
    50% {
        background-position: 40% 20%, 60% 80%, 70% 30%, 20% 20%, 80% 20%;
    }
    75% {
        background-position: 20% 30%, 80% 70%, 40% 60%, 30% 30%, 70% 30%;
    }
}

@keyframes softwareGridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.software-hardware-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.software-hardware-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.software-hardware-text .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.software-hardware-text .section-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-color);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 24px;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.service-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-item span {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Manager+ Section */
.manager-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2463 100%);
    position: relative;
    overflow: hidden;
}

.manager-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(74, 144, 226, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.1) 1.5px, transparent 1.5px),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 30%, rgba(74, 144, 226, 0.05) 40%, transparent 50%);
    background-size: 80px 80px, 60px 60px, 100px 100px, 120px 120px, 90px 90px;
    animation: managerPatternMove 25s ease-in-out infinite;
    z-index: 1;
}

.manager-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.02) 40px,
            rgba(255, 255, 255, 0.02) 80px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(74, 144, 226, 0.03) 60px,
            rgba(74, 144, 226, 0.03) 120px
        );
    animation: managerGridMove 30s linear infinite reverse;
    z-index: 1;
}

@keyframes managerPatternMove {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    25% { 
        transform: translateX(-15px) translateY(10px) rotate(1deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(10px) translateY(-20px) rotate(-1deg);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(20px) translateY(15px) rotate(0.5deg);
        opacity: 0.7;
    }
}

@keyframes managerGridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(80px) translateY(120px); }
}

.manager-section .container {
    position: relative;
    z-index: 2;
}

.manager-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.manager-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.manager-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
}

.manager-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.manager-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(74, 144, 226, 0.5);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
    color: #ffffff;
}

.feature-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.manager-cta {
    text-align: left;
}

.manager-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.manager-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(45deg, #128c7e, #25d366);
}

.manager-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.manager-graphic {
    width: 300px;
    height: 300px;
    position: relative;
}

.manager-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    height: 100%;
}

.icon-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-item:nth-child(1) { animation-delay: 0s; }
.icon-item:nth-child(2) { animation-delay: 0.5s; }
.icon-item:nth-child(3) { animation-delay: 1s; }
.icon-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-item:hover {
    background: rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.6);
    transform: scale(1.1);
}

.icon-item i {
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.icon-item:hover i {
    color: var(--accent-color);
    transform: rotateY(360deg);
}

/* Responsive Design for Software y Hardware Section */
@media (max-width: 768px) {
    .software-hardware-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .software-hardware-text .section-header h2 {
        font-size: 2rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .software-hardware {
        padding: 60px 0;
    }
    
    .software-hardware-text .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .service-item span {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Manager+ Section */
@media (max-width: 768px) {
    .erp-logo-img {
        height: 100px;
    }
    
    .support-logo-img {
        height: 120px;
    }
    
    .manager-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .manager-logo h2 {
        font-size: 2.5rem;
        justify-content: center;
    }
    
    .manager-plus {
        font-size: 3rem;
    }
    
    .manager-features {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        align-items: center;
    }
    
    .feature-item i {
        margin-top: 0;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .manager-cta {
        text-align: center;
    }
    
    .manager-graphic {
        width: 250px;
        height: 250px;
    }
    
    .manager-icon-grid {
        gap: 1.5rem;
    }
    
    .icon-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .erp-logo-img {
        height: 80px;
    }
    
    .support-logo-img {
        height: 100px;
    }
    
    .manager-section {
        padding: 4rem 0;
    }
    
    .manager-logo-img {
        height: 60px;
    }
    
    .manager-description {
        font-size: 1rem;
    }
    
    .manager-graphic {
        width: 200px;
        height: 200px;
    }
    
    .icon-item i {
        font-size: 1.5rem;
    }
}

/* ===== BOTÓN FLOTANTE DESARROLLO WEB ===== */
.web-dev-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    cursor: pointer;
    animation: floatBounce 3s ease-in-out infinite;
}

.web-dev-float .float-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.web-dev-float .float-btn::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;
}

.web-dev-float:hover .float-btn::before {
    left: 100%;
}

.web-dev-float .float-btn i {
    color: white;
    font-size: 24px;
    z-index: 1;
}

.web-dev-float:hover .float-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

/* Tooltip */
.web-dev-float .tooltip {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    animation: tooltipPulse 9s infinite;
}

.web-dev-float .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: rgba(0, 0, 0, 0.9);
}

.web-dev-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    left: 75px;
    animation: none;
}

@keyframes tooltipPulse {
    0%, 67% { 
        opacity: 0; 
        visibility: hidden; 
        left: 70px; 
    }
    70%, 100% { 
        opacity: 1; 
        visibility: visible; 
        left: 75px; 
    }
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== MODAL DESARROLLO WEB ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-icon i {
    font-size: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body h4 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9ff;
    border-radius: 10px;
    border-left: 3px solid #667eea;
}

.feature-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.feature-item span {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.price-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.price {
    font-size: 2rem;
    font-weight: 700;
}

.price-period {
    font-size: 1rem;
    opacity: 0.9;
}

.modal-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.modal-footer {
    padding: 20px 30px 30px;
}

.btn-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-modal-cta i {
    font-size: 1.3rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .web-dev-float {
        bottom: 20px;
        left: 20px;
    }
    
    .web-dev-float .float-btn {
        width: 50px;
        height: 50px;
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }
    
    .web-dev-float .float-btn i {
        font-size: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .modal-footer {
        padding: 15px 20px 20px;
    }
    
    .btn-modal-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Desarrollo Web Section */
.desarrollo-web {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.desarrollo-web::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
    background-size: 60px 60px, 40px 40px, 100px 100px;
    animation: webPatternMove 20s linear infinite;
    z-index: 1;
}

@keyframes webPatternMove {
    0% {
        background-position: 0% 0%, 100% 100%, 0% 100%;
    }
    50% {
        background-position: 50% 50%, 50% 50%, 50% 50%;
    }
    100% {
        background-position: 100% 100%, 0% 0%, 100% 0%;
    }
}

.desarrollo-web-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.desarrollo-web-text .section-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.desarrollo-web-text .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.desarrollo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.desarrollo-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.desarrollo-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.desarrollo-item i {
    font-size: 1.5rem;
    color: var(--white);
    min-width: 24px;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.desarrollo-item:hover i {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.desarrollo-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.desarrollo-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.desarrollo-cta {
    text-align: left;
}

.desarrollo-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.desarrollo-cta .btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.desarrollo-web-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.desarrollo-graphic {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-mockup {
    width: 100%;
    max-width: 450px;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

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

.mockup-browser {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: rotateX(5deg) rotateY(-5deg);
    transition: all 0.3s ease;
}

.mockup-browser:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.browser-header {
    background: #f5f5f5;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-buttons {
    display: flex;
    gap: 6px;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.btn-close {
    background: #ff5f57;
}

.btn-minimize {
    background: #ffbd2e;
}

.btn-maximize {
    background: #28ca42;
}

.browser-url {
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--gray-dark);
    border: 1px solid #e0e0e0;
    flex: 1;
    text-align: center;
}

.browser-content {
    padding: 20px;
    background: var(--white);
    min-height: 300px;
}

.web-elements {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.web-header {
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    border-radius: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.web-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.web-nav span {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    flex: 1;
    animation: shimmer 2s ease-in-out infinite;
}

.web-nav span:nth-child(1) { animation-delay: 0s; }
.web-nav span:nth-child(2) { animation-delay: 0.2s; }
.web-nav span:nth-child(3) { animation-delay: 0.4s; }
.web-nav span:nth-child(4) { animation-delay: 0.6s; }

.web-hero {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.hero-text-mock {
    height: 20px;
    background: #d0d0d0;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 70%;
    animation: shimmer 2s ease-in-out infinite;
}

.hero-button-mock {
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), #e74c3c);
    border-radius: 6px;
    width: 120px;
    animation: pulse 2s ease-in-out infinite;
}

.web-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.card-mock {
    height: 60px;
    background: #f0f0f0;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    animation: shimmer 2s ease-in-out infinite;
}

.card-mock:nth-child(1) { animation-delay: 0.2s; }
.card-mock:nth-child(2) { animation-delay: 0.4s; }
.card-mock:nth-child(3) { animation-delay: 0.6s; }

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive Design for Desarrollo Web Section */
@media (max-width: 768px) {
    .desarrollo-web-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .desarrollo-web-text .section-header h2 {
        font-size: 2rem;
    }
    
    .desarrollo-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .desarrollo-item:hover {
        transform: translateY(-5px);
    }
    
    .desarrollo-cta {
        text-align: center;
    }
    
    .web-mockup {
        max-width: 350px;
    }
    
    .web-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .desarrollo-web {
        padding: 60px 0;
    }
    
    .desarrollo-web-text .section-header h2 {
        font-size: 1.8rem;
    }
    
    .desarrollo-item {
        padding: 1rem;
    }
    
    .desarrollo-content h4 {
        font-size: 1rem;
    }
    
    .desarrollo-content p {
        font-size: 0.9rem;
    }
    
    .web-mockup {
        max-width: 280px;
    }
    
    .browser-content {
        padding: 15px;
        min-height: 200px;
    }
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-float i {
    color: white;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(10deg);
}

/* Animación de pulso */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive para móvil */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Media query específica para pantallas móviles con altura inferior a 800px */
@media screen and (max-width: 768px) and (max-height: 800px) {
    .hero-graphic {
        width: 140px !important; /* 50% del tamaño original de 280px */
        height: 140px !important; /* 50% del tamaño original de 280px */
    }

    .hero-graphic video {
        border-radius: 12px;
    }
}

/* Media query para pantallas PC con altura de 750px o menor */
@media screen and (min-width: 769px) and (max-height: 750px) {
    .carousel-slide h1 {
        font-size: 2.5rem !important; /* Reducido de 3.5rem */
    }
    
    .hero-graphic {
        width: 200px !important; /* 50% del tamaño original de 400px */
        height: 200px !important; /* 50% del tamaño original de 400px */
    }

    .hero-graphic video {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .manager-section {
        padding: 4rem 0;
    }
    
    .manager-logo-img {
        height: 50px;
    }
    
    .manager-description {
        font-size: 1rem;
    }
    
    .manager-graphic {
        width: 200px;
        height: 200px;
    }
    
    .icon-item i {
        font-size: 1.5rem;
    }
}