/* ============================================
   DOGO GALAXY - ESTILOS PRINCIPALES
   ============================================ */

:root {
    --primary-blue: #1e3a5f;
    --secondary-blue: #2c5282;
    --accent-blue: #4299e1;
    --light-blue: #63b3ed;
    --dark-gray: #2d3748;
    --medium-gray: #4a5568;
    --light-gray: #a0aec0;
    --bg-gray: #f7fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #4299e1 100%);
    --gradient-2: linear-gradient(45deg, #2d3748 0%, #4a5568 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
    --shadow-3d: 0 20px 60px rgba(30, 58, 95, 0.3);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) var(--bg-gray);
}

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-gray); }
::-webkit-scrollbar-thumb { background: var(--gradient-1); border-radius: 4px; }

/* Custom Cursor */
.cursor { width: 8px; height: 8px; background: var(--accent-blue); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transition: transform 0.1s ease; }
.cursor-follower { width: 30px; height: 30px; border: 2px solid var(--accent-blue); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease; }

/* ============================================
   NAVEGACIÓN
   ============================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(247, 250, 252, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(30, 58, 95, 0.1); transition: var(--transition-base); }
.navbar.scrolled { background: rgba(247, 250, 252, 0.95); box-shadow: var(--shadow-lg); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0.8rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-image { max-height: 95px; width: auto; max-width: 180px; object-fit: contain; transition: var(--transition-base); }
.logo-image:hover { transform: scale(1.05); }
.logo-fallback { display: flex; align-items: center; gap: 0.8rem; }
.logo-icon { width: 40px; height: 40px; color: var(--primary-blue); animation: logoSpin 20s linear infinite; flex-shrink: 0; }
@keyframes logoSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.logo-text { font-size: 1.3rem; font-weight: 800; color: var(--dark-gray); letter-spacing: -0.5px; white-space: nowrap; }
.galaxy-text { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 2rem; align-items: center; flex-shrink: 0; }
.nav-link { text-decoration: none; color: var(--medium-gray); font-weight: 500; font-size: 0.95rem; transition: var(--transition-base); position: relative; padding: 0.5rem 0; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-1); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary-blue); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; z-index: 1001; }
.mobile-menu-btn span { width: 25px; height: 2px; background: var(--dark-gray); transition: var(--transition-base); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 6rem 0 4rem; }
.hero-bg-shapes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.1; }
.shape-1 { width: 600px; height: 600px; background: var(--primary-blue); top: -200px; right: -200px; animation: floatShape 20s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: var(--accent-blue); bottom: -100px; left: -100px; animation: floatShape 25s ease-in-out infinite reverse; }
.shape-3 { width: 300px; height: 300px; background: var(--light-blue); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: floatShape 15s ease-in-out infinite; }
.shape-4 { width: 500px; height: 500px; background: var(--secondary-blue); bottom: -200px; right: 30%; animation: floatShape 18s ease-in-out infinite reverse; }
@keyframes floatShape { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
.hero-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-content { display: flex; flex-direction: column; gap: 2rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(66, 153, 225, 0.1); border: 1px solid rgba(66, 153, 225, 0.2); padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--secondary-blue); width: fit-content; }
.badge-dot { width: 8px; height: 8px; background: var(--accent-blue); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -1px; }
.title-line { display: block; }
.gradient-text { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-description { font-size: 1.1rem; color: var(--medium-gray); max-width: 500px; line-height: 1.8; }
.hero-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.cta-button { padding: 1rem 2rem; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 1rem; display: flex; align-items: center; gap: 0.8rem; transition: var(--transition-smooth); position: relative; overflow: hidden; }
.primary-cta { background: var(--gradient-1); color: var(--white); box-shadow: var(--shadow-3d); }
.primary-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s ease; }
.primary-cta:hover::before { left: 100%; }
.primary-cta:hover { transform: translateY(-3px); box-shadow: 0 25px 50px rgba(30, 58, 95, 0.4); }
.cta-arrow { width: 20px; height: 20px; transition: transform 0.3s ease; }
.primary-cta:hover .cta-arrow { transform: translateX(5px); }
.secondary-cta { background: var(--white); color: var(--primary-blue); border: 2px solid rgba(30, 58, 95, 0.1); }
.secondary-cta:hover { border-color: var(--primary-blue); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hero-stats { display: flex; gap: 3rem; padding-top: 1rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary-blue); line-height: 1; }
.stat-plus, .stat-percent { font-size: 1.5rem; font-weight: 700; color: var(--accent-blue); }
.stat-label { font-size: 0.9rem; color: var(--light-gray); font-weight: 500; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.visual-container { position: relative; width: 100%; height: 500px; }
.rack-3d { position: relative; width: 300px; height: 400px; margin: 0 auto; transform: perspective(1000px) rotateY(-15deg) rotateX(5deg); transform-style: preserve-3d; }
.rack-level { position: absolute; background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); border-radius: 4px; width: 100%; height: 8px; left: 0; box-shadow: var(--shadow-lg); }
.level-1 { top: 20%; transform: translateZ(20px); }
.level-2 { top: 50%; transform: translateZ(40px); }
.level-3 { top: 80%; transform: translateZ(60px); }
.rack-item { position: absolute; background: linear-gradient(135deg, var(--accent-blue), var(--light-blue)); border-radius: 8px; box-shadow: var(--shadow-md); animation: floatItem 4s ease-in-out infinite; }
.item-1 { width: 60px; height: 40px; top: 15%; left: 10%; animation-delay: 0s; }
.item-2 { width: 80px; height: 30px; top: 45%; left: 30%; animation-delay: 0.5s; }
.item-3 { width: 70px; height: 35px; top: 75%; left: 20%; animation-delay: 1s; }
@keyframes floatItem { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-card { position: absolute; background: var(--white); padding: 0.8rem 1.2rem; border-radius: 12px; box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.9rem; animation: floatCard 6s ease-in-out infinite; }
.card-1 { top: 10%; right: 10%; animation-delay: 0s; }
.card-2 { bottom: 20%; right: 5%; animation-delay: 2s; }
@keyframes floatCard { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(10px, -15px) rotate(2deg); } 66% { transform: translate(-5px, 10px) rotate(-2deg); } }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; }
.mouse { width: 26px; height: 40px; border: 2px solid var(--medium-gray); border-radius: 13px; display: flex; justify-content: center; padding-top: 8px; }
.wheel { width: 3px; height: 8px; background: var(--primary-blue); border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(15px); opacity: 0; } }
.scroll-indicator span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--light-gray); font-weight: 600; }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products { padding: 8rem 2rem; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(66, 153, 225, 0.1); border-radius: 50px; font-weight: 600; font-size: 0.85rem; color: var(--secondary-blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: var(--dark-gray); margin-bottom: 1rem; line-height: 1.2; }
.section-subtitle { font-size: 1.1rem; color: var(--medium-gray); max-width: 700px; margin: 0 auto; line-height: 1.7; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.product-card { background: var(--white); border-radius: 24px; padding: 2.5rem; position: relative; transition: var(--transition-smooth); box-shadow: var(--shadow-md); border: 1px solid rgba(0, 0, 0, 0.05); }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 24px; background: var(--gradient-1); opacity: 0; transition: opacity 0.3s ease; z-index: 0; }
.product-card:hover::before { opacity: 0.03; }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.product-card.featured { border: 2px solid var(--accent-blue); transform: scale(1.05); }
.product-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.featured-badge { position: absolute; top: -12px; right: 20px; background: var(--gradient-1); color: white; padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; box-shadow: var(--shadow-md); z-index: 2; }
.card-glow { position: absolute; top: 50%; left: 50%; width: 200px; height: 200px; background: var(--accent-blue); border-radius: 50%; filter: blur(100px); opacity: 0; transform: translate(-50%, -50%); transition: opacity 0.3s ease; z-index: 0; }
.product-card:hover .card-glow { opacity: 0.1; }
.product-icon { width: 60px; height: 60px; background: var(--gradient-1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.product-icon svg { width: 30px; height: 30px; color: white; }
.product-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; position: relative; z-index: 1; }
.product-card p { color: var(--medium-gray); margin-bottom: 1.5rem; position: relative; z-index: 1; line-height: 1.6; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; position: relative; z-index: 1; }
.product-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--medium-gray); }
.product-features li::before { content: '✓'; color: var(--accent-blue); font-weight: 700; }

/* ============================================
   CARRUSEL MODERNO - SOLO IMÁGENES
   ============================================ */
.gallery { padding: 8rem 2rem; position: relative; background: linear-gradient(180deg, var(--bg-gray) 0%, var(--white) 100%); }
.carousel-container { max-width: 900px; margin: 4rem auto 0; }
.carousel { 
    position: relative; 
    border-radius: 32px; 
    overflow: hidden; 
    box-shadow: 0 30px 60px rgba(30, 58, 95, 0.2), 0 10px 20px rgba(0,0,0,0.1); 
    background: var(--white);
}
.carousel-track { display: flex; transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1); will-change: transform; }
.carousel-slide { min-width: 100%; position: relative; }
.carousel-image-wrapper { 
    position: relative; 
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    padding: 2rem;
}
.carousel-image { 
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s ease;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.carousel-slide:hover .carousel-image { transform: scale(1.03); }

/* Placeholders */
.placeholder-slide { 
    display: flex !important; 
    align-items: center; 
    justify-content: center; 
    min-height: 400px;
}
.placeholder-slide::before { content: ''; position: absolute; inset: 0; z-index: 0; }
.placeholder-1::before { background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%); }
.placeholder-2::before { background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%); }
.placeholder-3::before { background: linear-gradient(135deg, #4299e1 0%, #63b3ed 100%); }
.placeholder-4::before { background: linear-gradient(135deg, #1e3a5f 0%, #4299e1 100%); }
.placeholder-slide::after { 
    content: '🏭'; 
    font-size: 6rem; 
    position: relative; 
    z-index: 1; 
    opacity: 0.6; 
    filter: grayscale(0.3); 
}

/* Barra de progreso */
.carousel-progress { 
    width: 100%; 
    height: 4px; 
    background: rgba(30, 58, 95, 0.08); 
    border-radius: 4px; 
    margin-top: 1.5rem; 
    overflow: hidden; 
}
.progress-bar { 
    height: 100%; 
    background: var(--gradient-1); 
    border-radius: 4px; 
    width: 0%; 
    transition: width 0.3s ease; 
}

/* Controles */
.carousel-controls { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 2rem; 
    margin-top: 1.5rem; 
}
.carousel-btn { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background: var(--white); 
    border: 2px solid rgba(30, 58, 95, 0.15); 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    color: var(--primary-blue); 
}
.carousel-btn:hover { 
    background: var(--primary-blue); 
    border-color: var(--primary-blue); 
    color: var(--white); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3); 
}
.carousel-btn:active { transform: scale(0.95); }
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-indicators { 
    display: flex; 
    gap: 0.8rem; 
    align-items: center; 
}
.carousel-indicator { 
    width: 10px; 
    height: 10px; 
    border-radius: 10px; 
    background: rgba(30, 58, 95, 0.2); 
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    border: none; 
    padding: 0; 
}
.carousel-indicator.active { 
    width: 32px; 
    background: var(--accent-blue); 
    box-shadow: 0 0 12px rgba(66, 153, 225, 0.5); 
}
.carousel-indicator:hover { 
    background: var(--secondary-blue); 
    transform: scale(1.2); 
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits { padding: 8rem 2rem; position: relative; background: var(--dark-gray); color: var(--white); overflow: hidden; }
.benefits-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.05; }
.hexagon-grid { width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 20V50L30 65L5 50V20L30 5Z' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E"); background-size: 60px 60px; }
.benefits .section-tag { background: rgba(255, 255, 255, 0.1); color: var(--light-blue); }
.benefits .section-title { color: var(--white); }
.benefits-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 1; }
.benefit-item { display: flex; gap: 1.5rem; padding: 2rem; background: rgba(255, 255, 255, 0.03); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1); transition: var(--transition-base); }
.benefit-item:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }
.benefit-number { font-size: 2rem; font-weight: 900; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; flex-shrink: 0; }
.benefit-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 700; }
.benefit-content p { color: var(--light-gray); font-size: 0.95rem; line-height: 1.6; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process { padding: 8rem 2rem; }
.process-timeline { max-width: 800px; margin: 4rem auto 0; position: relative; }
.timeline-line { position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--gradient-1); opacity: 0.3; }
.process-step { display: flex; gap: 2rem; margin-bottom: 3rem; position: relative; }
.step-marker { width: 42px; height: 42px; background: var(--gradient-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; box-shadow: var(--shadow-lg); z-index: 1; }
.step-content { background: var(--white); padding: 2rem; border-radius: 16px; box-shadow: var(--shadow-md); flex: 1; transition: var(--transition-base); }
.step-content:hover { transform: translateX(10px); box-shadow: var(--shadow-lg); }
.step-content h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--primary-blue); }
.step-content p { color: var(--medium-gray); line-height: 1.6; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { padding: 8rem 2rem; position: relative; overflow: hidden; }
.contact-shapes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; }
.contact-shape-1 { position: absolute; width: 500px; height: 500px; background: var(--primary-blue); border-radius: 50%; filter: blur(100px); opacity: 0.05; top: -200px; right: -200px; }
.contact-shape-2 { position: absolute; width: 400px; height: 400px; background: var(--accent-blue); border-radius: 50%; filter: blur(80px); opacity: 0.05; bottom: -100px; left: -100px; }
.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.contact-description { font-size: 1.1rem; color: var(--medium-gray); line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--white); border-radius: 12px; box-shadow: var(--shadow-sm); font-weight: 500; }
.contact-method svg { width: 24px; height: 24px; color: var(--accent-blue); flex-shrink: 0; }
.whatsapp-button { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: 1.2rem 2.5rem; background: #25D366; color: white; text-decoration: none; border-radius: 16px; font-weight: 700; font-size: 1.1rem; transition: var(--transition-smooth); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); width: fit-content; }
.whatsapp-button:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4); }
.whatsapp-icon { width: 28px; height: 28px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark-gray); color: var(--white); padding: 4rem 2rem 2rem; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-1); }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.footer-logo { display: flex; justify-content: center; align-items: center; width: 100%; }
.footer-logo-image { max-height: 200px; width: auto; max-width: 220px; object-fit: contain; transition: var(--transition-base); }
.footer-logo-image:hover { transform: scale(1.05); }
.footer-logo-fallback { display: flex; justify-content: center; align-items: center; }
.footer-logo-fallback .logo-icon { width: 50px; height: 50px; color: var(--white); animation: logoSpin 20s linear infinite; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--light-gray); text-decoration: none; transition: var(--transition-base); font-size: 0.95rem; position: relative; }
.footer-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent-blue); transition: width 0.3s ease; }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::after { width: 100%; }
.footer-copy { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); width: 100%; color: var(--light-gray); font-size: 0.9rem; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    /* ... todo lo demás se mantiene ... */
    .carousel-image { max-height: 400px; }
    .placeholder-slide { min-height: 350px; }
}

@media (max-width: 768px) {
    /* ... todo lo demás se mantiene ... */
    .carousel-image { max-height: 350px; }
    .carousel-image-wrapper { padding: 1.5rem; }
    .placeholder-slide { min-height: 280px; }
    .carousel-btn { width: 42px; height: 42px; }
    .carousel-btn svg { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
    /* ... todo lo demás se mantiene ... */
    .carousel-image { max-height: 280px; }
    .carousel-image-wrapper { padding: 1rem; }
    .placeholder-slide { min-height: 220px; }
    .carousel-indicators { gap: 0.5rem; }
    .carousel-indicator { width: 8px; height: 8px; }
    .carousel-indicator.active { width: 24px; }
}

@media (min-width: 1920px) {
    /* ... todo lo demás se mantiene ... */
    .carousel-image { max-height: 600px; }
}

/* ============================================
   ANIMACIONES
   ============================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
[data-tilt] { transform-style: preserve-3d; transform: perspective(1000px); }