/* --- Animaciones de aparición al hacer scroll --- */
.animar-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,2,.6,1), transform 0.7s cubic-bezier(.4,2,.6,1);
}
.animar-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* --- Menú hamburguesa --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.menu-bar {
    width: 28px;
    height: 4px;
    background: #5E17EB;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.main-nav {
    transition: max-height 0.3s;
}
@media (max-width: 800px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        max-height: 0;
        overflow: hidden;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        left: 20px;
        box-shadow: 0 4px 16px rgba(94,23,235,0.08);
        border-radius: 12px;
        z-index: 1000;
        transition: max-height 0.3s ease;
    }
    .main-nav.open {
        max-height: 70vh;
        overflow-y: auto;
        padding: 16px 0;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 0 24px;
    }
    .main-nav ul li {
        width: 100%;
    }
    .main-nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 1.2rem;
    }
    nav:not(.main-nav), nav:not(.main-nav) ul {
        display: none !important;
    }
}
/* Layout para contacto: info a la izquierda, formulario a la derecha */
.contacto-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 18px;
    margin-bottom: 18px;
}
.contacto-info {
    border-left: 5px solid #5E17EB;
    padding: 18px 22px;
    border-radius: 8px;
    font-size: 1.08rem;
    color: #222;
    box-shadow: 0 2px 8px rgba(94,23,235,0.07);
    max-width: 320px;
    min-width: 220px;
    flex: 0 0 260px;
    background: none;
}
.contacto-info strong {
    color: #5E17EB;
    font-weight: 700;
}
.contacto-info a {
    color: #5E17EB;
    text-decoration: underline dotted;
    font-weight: 500;
    transition: color 0.2s;
}
.contacto-info a:hover {
    color: #3a0ca3;
}
.contacto-form {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
}
.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 900px) {
    .contacto-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .contacto-info, .contacto-form {
        max-width: 100%;
        min-width: unset;
        flex: 1 1 100%;
    }
}
/* Estilo para la información de contacto en la sección de contacto */
.contacto-info {
    background: #f6f3fd;
    border-left: 5px solid #5E17EB;
    padding: 14px 18px;
    margin-bottom: 18px;
    border-radius: 8px;
    font-size: 1.08rem;
    color: #222;
    box-shadow: 0 2px 8px rgba(94,23,235,0.07);
    max-width: 350px;
}
.contacto-info strong {
    color: #5E17EB;
    font-weight: 700;
}
.contacto-info a {
    color: #5E17EB;
    text-decoration: underline dotted;
    font-weight: 500;
    transition: color 0.2s;
}
.contacto-info a:hover {
    color: #3a0ca3;
}
/* Portafolio título alineado a la derecha y con detalles visuales */
.portafolio-container {
    position: relative;
}
.portafolio-titulo {
    color: #000;
    font-size: 2.2rem;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: right;
    margin-right: 0;
    position: relative;
    display: inline-block;
}
.portafolio-titulo::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, #5E17EB 60%, transparent 100%);
    border-radius: 3px;
    margin-top: 8px;
    margin-left: auto;
}
.portafolio-container .galeria {
    clear: both;
}
.video-frame {
    max-width: 220px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(94,23,235,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
    background: linear-gradient(135deg, #fff 60%, #e6e0fa 100%);
    position: relative;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Hero layout dos columnas */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    min-height: 260px;
    max-height: 340px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.hero-texto {
    flex: 1 1 0;
    min-width: 180px;
    z-index: 2;
    padding-right: 0.5rem;
}
.hero-video {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
    margin-right: 40px;
}
@media (max-width: 800px) {
    .hero-flex {
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
        max-height: unset;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .hero-video {
        width: 100%;
        justify-content: center;
        margin-top: 1.2rem;
    }
    .video-frame {
        max-width: 320px;
        width: 90vw;
        aspect-ratio: 9/16;
        margin: 0 auto;
        height: 70vh;
        max-height: 90vh;
    }
    .video-frame video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
}
/* Splash animado del logo */
#splash-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.7s;
}

.splash-novati {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 2px;
    opacity: 0;
    animation: splashFadeIn 0.7s 0.2s forwards;
}
.splash-dev {
    font-size: 3.2rem;
    font-weight: 800;
    color: #5E17EB;
    letter-spacing: 2px;
    opacity: 0;
    animation: splashFadeIn 0.7s 0.7s forwards;
}

@keyframes splashFadeIn {
    to { opacity: 1; }
}
/* Círculos decorativos numerados en hero */
.hero-circulos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.circulo {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    background: #5E17EB;
    border-radius: 50%;
    opacity: 0.13;
    pointer-events: none;
    user-select: none;
    box-shadow: 0 2px 16px rgba(94, 23, 235, 0.10);
    transition: opacity 0.3s, box-shadow 0.3s;
}

.circulo-1 {
    width: 120px;
    height: 120px;
    top: 30px;
    left: 8vw;
    opacity: 0.18;
    font-size: 2.2rem;
}
.circulo-2 {
    width: 90px;
    height: 90px;
    top: 180px;
    right: 12vw;
    opacity: 0.15;
    font-size: 1.7rem;
}
.circulo-3 {
    width: 70px;
    height: 70px;
    bottom: 40px;
    left: 18vw;
    opacity: 0.13;
    font-size: 1.2rem;
}
.circulo-4 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 70vw;
    opacity: 0.10;
    background: radial-gradient(circle, #5E17EB 60%, transparent 100%);
    box-shadow: none;
}
.circulo-5 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 20vw;
    opacity: 0.16;
    background: #5E17EB;
    box-shadow: 0 2px 8px rgba(94, 23, 235, 0.10);
}

/* Hero Index - Grid Background */
.hero-index {
    background: linear-gradient(180deg, #f8f6ff 0%, #ffffff 100%);
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.grid-line {
    position: absolute;
    background: linear-gradient(135deg, rgba(94,23,235,0.03) 0%, rgba(123,63,242,0.08) 100%);
    animation: float-grid 8s ease-in-out infinite;
}

.grid-line-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.grid-line-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: 30%;
    right: -100px;
    animation-delay: 2s;
}

.grid-line-3 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    bottom: -80px;
    left: 40%;
    animation-delay: 4s;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(94,23,235,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123,63,242,0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero {
    position: relative;
    /* ...resto de reglas existentes... */
}
/* Badge sobre la imagen de proyectos */
.img-contenedor {
    position: relative;
    display: inline-block;
}

.badge-proyectos {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 8px 22px 8px 22px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(94, 23, 235, 0.10);
    z-index: 2;
    letter-spacing: 1px;
    opacity: 0.97;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.badge-num {
    color: #000;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.badge-txt {
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    margin-top: 0;
}
/* Layout para sección ¿Por qué elegirnos? */
.porque-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.porque-texto {
    flex: 1 1 0;
    min-width: 240px;
}

.porque-img {
    flex: 0 0 380px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.porque-img img {
    max-width: 380px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(94, 23, 235, 0.10);
    object-fit: contain;
    background: #fff;
}

@media (max-width: 900px) {
    .porque-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .porque-img {
        justify-content: flex-start;
        margin-top: 12px;
    }
    .porque-img img {
        max-width: 100%;
    }
}
/* Color de detalle para 'Dev' en el logo */
.detalle-dev {
    color: #5E17EB;
}
/* Por qué nosotros */

.porque-nosotros {
    background: #fff;
    padding: 70px 0 60px 0;
}


.porque-nosotros .container {
    margin: 0 auto;
    text-align: left;
    padding-left: 0;
}


.porque-nosotros h2 {
    color: #000;
    font-size: 2.2rem;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
    margin-left: 0;
    position: relative;
    display: inline-block;
}

.porque-nosotros h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, #5E17EB 60%, transparent 100%);
    border-radius: 3px;
    margin-top: 8px;
}


.porque-nosotros p {
    color: #333;
    font-size: 1.18rem;
    line-height: 1.7;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: block;
    margin: 0 0 0 0;
    max-width: 700px;
    text-align: left;
    margin-left: 0;
}
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
    line-height: 1.6;
}

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

/* Header */

header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(94, 23, 235, 0.07);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 0;
}

header h1 {
    color: #000000;
    font-size: 2rem;
    display: inline-block;
}


nav ul {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
    padding: 0;
}


nav ul li {
    display: block;
    margin: 0;
    position: relative;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #5E17EB; /* Púrpura para hover */
}

/* Menú desplegable de productos */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(94,23,235,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f8f6ff;
    color: #5E17EB;
}

/* Mostrar menú cuando tiene clase active */
.dropdown.active .dropdown-menu {
    display: block;
}

@media (max-width: 800px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8f6ff;
        border-radius: 4px;
        margin: 0.5rem 0 0 1rem;
        padding: 0.5rem 0;
    }
}

/* Hero */
.hero {
    padding: 100px 0;
    text-align: center;
    background-color: #ffffff;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666666;
}

.btn {
    background-color: #5E17EB; /* Púrpura */
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #4a12c7; /* Púrpura más oscuro */
}

/* Portafolio */
.portafolio {
    padding: 80px 0;
    background-color: #f9f9f9; /* Gris muy claro para contraste */
}

.portafolio h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.galeria {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.proyecto {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    width: 400px;
    text-align: center;
    padding: 28px;
    transition: transform 0.3s;
}

.proyecto:hover {
    transform: translateY(-5px);
}

.proyecto img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #fff;
    border-radius: 5px;
}

.proyecto h3 {
    margin: 15px 0;
    color: #000000;
}

.proyecto p {
    color: #666666;
    margin-bottom: 15px;
}

.ver-mas {
    color: #5E17EB;
    text-decoration: none;
    font-weight: bold;
}

.ver-mas:hover {
    text-decoration: underline;
}

/* Contacto */
.contacto {
    padding: 80px 0;
    background-color: #ffffff;
}

.contacto h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.contacto p {
    text-align: center;
    margin-bottom: 40px;
    color: #666666;
}

/* === Diseño moderno de contacto === */
.contacto-modern {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f6ff 0%, #ffffff 100%);
    overflow: hidden;
}

.contacto-bg-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94,23,235,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contacto-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contacto-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.contacto-header p {
    font-size: 1.2rem;
    color: #666;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjeta de información */
.contacto-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    color: #5E17EB;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.info-content a {
    color: #5E17EB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #7B3FF2;
    text-decoration: underline;
}

/* Tarjeta de formulario */
.contacto-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5E17EB;
}

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

.btn-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #5E17EB 0%, #7B3FF2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94,23,235,0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacto-header h2 {
        font-size: 2rem;
    }
    
    .contacto-modern {
        padding: 4rem 0;
    }
}

form {
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

button.btn {
    width: 100%;
    padding: 15px;
    background-color: #5E17EB;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.btn:hover {
    background-color: #4a12c7;
}

/* Servicios Grid */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.servicio-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(94,23,235,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(94,23,235,0.15);
}

.servicio-icono {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.servicio-card h3 {
    color: #5E17EB;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.servicio-card p {
    color: #666;
    line-height: 1.6;
}

/* Productos Botones */
.productos-descripcion {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.producto-btn {
    position: relative;
    background: linear-gradient(135deg, #5E17EB 0%, #7B3FF2 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    overflow: hidden;
}

.producto-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.producto-btn:hover::before {
    opacity: 1;
}

.producto-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(94,23,235,0.3);
}

.producto-btn-icono {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.producto-btn h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.producto-btn p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.producto-btn-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.producto-btn:hover .producto-btn-arrow {
    transform: translateX(8px);
}

/* Productos próximamente */
.producto-btn-proximo {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

.producto-btn-proximo:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.producto-btn-proximo::before {
    display: none;
}

.producto-btn-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Lista de beneficios */
.porque-lista {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.porque-lista li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

/* Tecnologías Grid */
.tecnologias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(94,23,235,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-card h3 {
    color: #5E17EB;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.tech-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Proceso Grid */
.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proceso-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(94,23,235,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.proceso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(94,23,235,0.12);
}

.proceso-numero {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5E17EB, #7B3FF2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.proceso-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.proceso-card p {
    color: #666;
    line-height: 1.6;
}

/* === Diseño página de Aplicaciones === */
.app-page {
    background: #ffffff;
}

/* Hero Apps con ondas */
.hero-apps {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
    overflow: hidden;
}

.hero-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-shape 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(94,23,235,0.1), rgba(123,63,242,0.15));
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(94,23,235,0.08), rgba(123,63,242,0.12));
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(94,23,235,0.12), rgba(123,63,242,0.18));
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

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

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

.hero-apps-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
}

.hero-apps-text {
    flex: 1;
    max-width: 550px;
}

.hero-apps-image {
    flex: 1;
    max-width: 500px;
}

.hero-apps-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(94,23,235,0.2);
    transition: transform 0.3s ease;
}

.hero-apps-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 968px) {
    .hero-apps-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-apps-text {
        max-width: 100%;
    }
    
    .hero-apps-image {
        max-width: 100%;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(94,23,235,0.1);
    color: #5E17EB;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-apps-text h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-apps-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Secciones de App */
.app-section {
    padding: 5rem 0;
}

.app-web-section {
    background: #ffffff;
}

.app-mobile-section {
    background: #fafafa;
}

.app-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.app-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.app-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.app-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

/* Grid de características */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(94,23,235,0.15);
    border-color: rgba(94,23,235,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Sección de tecnologías */
.tech-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

/* Servicios simples */
.app-services-section {
    padding: 5rem 0;
    background: #fafafa;
}

.services-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-simple {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(94,23,235,0.08);
    transition: transform 0.3s ease;
}

.service-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(94,23,235,0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-simple h3 {
    font-size: 1.8rem;
    color: #5E17EB;
    margin-bottom: 1rem;
}

.service-simple p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Sección de proyectos */
.projects-section {
    padding: 5rem 0;
    background: #fff;
}

.projects-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.projects-text {
    flex: 1;
}

.projects-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.projects-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.projects-benefits {
    list-style: none;
    padding: 0;
}

.projects-benefits li {
    padding: 0.7rem 0;
    font-size: 1.1rem;
    color: #333;
}

.projects-image {
    flex: 1;
    max-width: 500px;
}

.projects-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(94,23,235,0.2);
}

@media (max-width: 968px) {
    .projects-content {
        flex-direction: column;
    }
    
    .projects-image {
        max-width: 100%;
    }
    
    .services-simple-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsivo para apps */
@media (max-width: 768px) {
    .hero-apps-text h2 {
        font-size: 2rem;
    }
    
    .hero-apps-text p {
        font-size: 1.1rem;
    }
    
    .app-header h2 {
        font-size: 2rem;
    }
    
    .app-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .galeria {
        flex-direction: column;
        align-items: center;
    }

    .proyecto {
        width: 90%;
    }

    nav ul {
        float: none;
        text-align: center;
        margin-top: 20px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
}