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

:root {
    --primary-color: #D2691E;
    --secondary-color: #2C3E50;
    --accent-color: #F39C12;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #34495E;
    --success: #27AE60;
    --gradient-primary: linear-gradient(135deg, #D2691E 0%, #F39C12 100%);
    --gradient-secondary: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(21, 22, 24, 1);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.mobile-logo {
    display: none;
}

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

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

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

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

.nav-cta {
    display: flex;
    justify-content: flex-end;
}

.nav-preicfes {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    box-shadow: var(--shadow-light);
    font-weight: 700;
}

.nav-preicfes::after { display: none; }

.mobile-cta {
    display: none;
}

.cta-btn {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.cta-btn::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse at 20% 30%, #FF6B35 0%, #D2691E 25%, #1E90FF 50%, #4169E1 75%, #8B4513 100%),
        linear-gradient(135deg, #FF8C00 0%, #FF4500 20%, #DC143C 40%, #1E90FF 60%, #B22222 80%, #D2691E 100%);
    background-size: 400% 400%, 400% 400%;
    animation: gradientShift 18s ease-in-out infinite;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.15) 0%, transparent 50%);
    animation: particleFloat 12s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(255, 165, 0, 0.1) 0%, transparent 40%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

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

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #FFE135 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.hero-owl {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--white);
    position: relative;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
                inset 0 0 50px rgba(255, 255, 255, 0.1);
}

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

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

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-element:nth-child(1) { top: 10%; left: 10%; }
.floating-element:nth-child(2) { top: 20%; right: 10%; }
.floating-element:nth-child(3) { bottom: 20%; left: 15%; }
.floating-element:nth-child(4) { bottom: 10%; right: 15%; }

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

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

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
}

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

/* Secciones Generales */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Sobre Nosotros */
.about {
    padding: 4rem 0;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(255, 107, 53, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 85%, rgba(30, 144, 255, 0.05) 0%, transparent 55%),
        linear-gradient(135deg, #f7fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #1E90FF, #FFD700);
    border-radius: 999px;
    opacity: 0.25;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.about .section-title {
    background: linear-gradient(135deg, #FF6B35, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    border-radius: 999px;
    margin: 0.5rem 0 1.5rem 0;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-description:last-of-type {
    margin-bottom: 2rem;
}

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

.stat {
    text-align: left;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stats .stat {
    position: relative;
    padding-left: 1.25rem;
}

.stats .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #FF6B35, #FFD700);
    opacity: 0.7;
}

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

.stat-number {
    font-size: 1.25rem;
    color: #28a745;
    flex-shrink: 0;
}

.stat-label {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.about-image {
    position: relative;
}

.about-image::before,
.about-image::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
}

.about-image::before {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25), transparent 60%);
    top: -20px;
    left: -20px;
}

.about-image::after {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.25), transparent 60%);
    bottom: -30px;
    right: -10px;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.image-container::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--border-radius);
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 1.5rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(30, 144, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #394e66;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) inset;
}

.badge-pill i { color: #FF6B35; }

.about-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.about-cta .btn { padding: 0.85rem 1.25rem; }

.about-image-cta {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover .about-img {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Servicios */
.services {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(255, 107, 53, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(30, 144, 255, 0.06) 0%, transparent 55%),
        linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Variantes de encabezado dentro de servicios */
.services .section-title {
    background: linear-gradient(135deg, #FF6B35, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,107,53,.12), rgba(30,144,255,.12));
    color: #394e66;
    box-shadow: 0 3px 10px rgba(0,0,0,.06) inset, 0 2px 8px rgba(30,144,255,.08);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #1E90FF, #DC143C, #FFD700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.service-card:focus-within,
.service-card:focus {
    outline: 3px solid rgba(30, 144, 255, 0.35);
    outline-offset: 3px;
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
    margin: 1.5rem 1.5rem 0 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    position: relative;
}

.service-badges {
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .6rem;
    font-size: .75rem;
    border-radius: 999px;
    background: rgba(255, 107, 53, .12);
    color: #9a3d1b;
    border: 1px solid rgba(255, 107, 53, .3);
}

.badge-alt {
    background: rgba(30, 144, 255, .12);
    color: #155e9b;
    border-color: rgba(30, 144, 255, .3);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .75rem;
    background: linear-gradient(135deg, #FF6B35, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    color: #5b6b7c;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #445466;
    font-size: .95rem;
}

.service-features i { color: #27AE60; }

.service-actions { display: flex; gap: .75rem; }

.btn-outline {
    background: transparent;
    color: #1e3a5f;
    border: 2px solid rgba(30,58,95,.25);
}

.btn-outline:hover {
    background: rgba(30,58,95,.06);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.btn-services {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}



/* Productos */
.products {
    padding: 4rem 0;
    background:
        radial-gradient(ellipse at 10% 10%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(30, 144, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 90%, rgba(255, 215, 0, 0.08) 0%, transparent 55%),
        linear-gradient(135deg, #0f172a 0%, #111827 100%);
    color: var(--white);
    position: relative;
}

.products .section-title { color: var(--white); }
.products .section-subtitle { 
    color: rgba(255,255,255,0.95);
    font-weight: 800;
    letter-spacing: .5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .35rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,107,53,.2), rgba(255,215,0,.15));
    box-shadow: 0 6px 20px rgba(0,0,0,.25) inset, 0 6px 24px rgba(255,215,0,.08);
}

.products .section-subtitle::before,
.products .section-subtitle::after {
    content: '';
    display: inline-block;
    height: 2px; width: 64px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.products-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 18px);
    gap: 24px;
    padding: 0 4px 10px 4px;
    will-change: transform;
    transition: transform .5s ease;
}

@media (max-width: 1200px) {
    .carousel-track { grid-auto-columns: calc(33.333% - 16px); }
}

@media (max-width: 900px) {
    .carousel-track { grid-auto-columns: calc(50% - 12px); }
}

@media (max-width: 600px) {
    .carousel-track { grid-auto-columns: 100%; }
}

.product-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.product-image { overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.12); }
/* Mantener proporción 1302x1672 (~0.779) usando aspect-ratio */
.product-image { aspect-ratio: 1302 / 1672; }
.product-image img { width: 100%; height: 100%; object-fit: contain; display: block; background: rgba(0,0,0,0.15); }

.product-content { padding: 1rem 1rem 1.25rem; }
.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .35rem;
    background: linear-gradient(135deg,#FFD700,#FF6B35);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
/* Se elimina descripción en tarjetas de productos */

.carousel-btn {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.carousel-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.carousel-dots { margin-top: 1.25rem; display: flex; justify-content: center; gap: .5rem; }
.carousel-dots button {
    width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,0.35); transition: transform .2s ease, background .2s ease;
}
.carousel-dots button.active { background: #FFD700; transform: scale(1.2); }

.products .preicfes-cta {
    margin-top: 2rem;
    text-align: center;
    display: grid;
    gap: 0.8rem;
}
.products .preicfes-cta-text {
    color: rgba(255,255,255,0.9);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    width: 100%;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contacto */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-subtitle {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E5E5;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: var(--white);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

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

/* Footer */
.footer {
    background:
        radial-gradient(ellipse at 10% 10%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(30, 144, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 90%, rgba(255, 215, 0, 0.08) 0%, transparent 55%),
        linear-gradient(135deg, #0f172a 0%, #111827 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

/* Flotantes Facebook e Instagram apilados */
.facebook-float,
.instagram-float {
    position: fixed;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    z-index: 999;
}

.instagram-float { bottom: 100px; background: #E4405F; font-size: 1.6rem; }
.facebook-float { bottom: 30px; background: #1877F2; font-size: 1.6rem; }

.facebook-float:hover,
.instagram-float:hover { transform: translateY(-2px) scale(1.07); box-shadow: var(--shadow-heavy); }

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 140px;
        right: 12px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .facebook-float,
    .instagram-float { right: 12px; width: 45px; height: 45px; font-size: 1.2rem; }
    .instagram-float { bottom: 80px; }
    .facebook-float { bottom: 20px; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes gradientShift {
    0% { 
        background-position: 0% 50%, 0% 50%;
        filter: brightness(1) saturate(1);
    }
    16% { 
        background-position: 25% 25%, 20% 30%;
        filter: brightness(1.05) saturate(1.1);
    }
    33% { 
        background-position: 75% 10%, 60% 20%;
        filter: brightness(1.1) saturate(1.2);
    }
    50% { 
        background-position: 100% 75%, 90% 80%;
        filter: brightness(1.15) saturate(1.1);
    }
    66% { 
        background-position: 50% 100%, 70% 95%;
        filter: brightness(1.2) saturate(1.3);
    }
    83% { 
        background-position: 10% 80%, 30% 70%;
        filter: brightness(1.1) saturate(1.15);
    }
    100% { 
        background-position: 0% 50%, 0% 50%;
        filter: brightness(1) saturate(1);
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-15px) translateX(20px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-25px) translateX(5px) rotate(180deg);
        opacity: 1;
    }
    75% { 
        transform: translateY(-10px) translateX(-15px) rotate(270deg);
        opacity: 0.7;
    }
}

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

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 10000;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgb(21, 22, 24);
        flex-direction: column;
        padding: 6rem 2rem 2rem 2rem;
        box-shadow: none;
        transform: translateX(-100%);
        transition: var(--transition);
        justify-content: flex-start;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu .nav-link {
        font-size: 1.5rem;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-logo {
        display: block;
        padding: 0 0 2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .mobile-logo .logo {
        height: 60px;
        width: auto;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-cta {
        display: block;
        margin-top: 2rem;
        text-align: center;
        padding: 2rem 1rem 0 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-cta .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 8px;
        display: inline-block;
        width: auto;
        min-width: 200px;
    }

    /* Asegurar destaque de Pre‑ICFES en menú móvil */
    .nav-menu .nav-preicfes {
        display: inline-block;
        margin: 1rem 0;
        border: none;
        background: var(--gradient-primary);
        color: #fff !important;
        padding: .9rem 1.2rem;
        border-radius: 999px;
        box-shadow: var(--shadow-light);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-owl {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
        max-width: 100%;
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    

    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-section {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
    }
    
    .btn-services {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        max-width: 90%;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .services-cta {
        margin-top: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-image img,
    .btn,
    .btn-outline {
        transition: none !important;
        animation: none !important;
    }
}

/* Media query para móviles muy pequeños */
@media (max-width: 320px) {
    .btn-services {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        min-width: auto;
        width: 100%;
        font-size: 0.85rem;
        padding: 0.75rem 0.75rem;
    }
}

/* Animaciones de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Clases de animación */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

