/* ===============================================
   SYNTRADE SOLUCIONES COMERCIALES - ENHANCED CSS
   Landing page con efectos glass, gradientes y animaciones
   Colores: Azul Marino, Azul Cielo, Blanco
   =============================================== */

/* === VARIABLES === */
:root {
    /* Colores Syntrade - Paleta Azul */
    --color-primary: #003366;          /* Azul marino oscuro */
    --color-primary-light: #004d99;    /* Azul marino medio */
    --color-primary-dark: #001a33;     /* Azul marino muy oscuro */
    --color-accent: #87CEEB;           /* Azul cielo */
    --color-accent-light: #B0E0E6;     /* Azul cielo claro (Powder Blue) */
    --color-accent-dark: #5F9EA0;      /* Azul cielo oscuro (Cadet Blue) */

    --color-secondary: #1E90FF;        /* Azul Dodger */
    --color-tertiary: #4682B4;         /* Azul acero */

    --color-text-primary: #003366;
    --color-text-secondary: #4a5568;
    --color-text-tertiary: #718096;
    --color-text-inverse: #FFFFFF;

    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F0F8FF;     /* Alice Blue */
    --color-bg-tertiary: #E6F2FF;
    --color-bg-dark: #003366;

    --color-border: #B0E0E6;
    --color-border-light: #E6F2FF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #003366 0%, #1E90FF 100%);
    --gradient-accent: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(30, 144, 255, 0.85) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Rajdhani', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Transitions - Mejoradas para fluidez */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-slow: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 0.8s ease-out;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 51, 102, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 51, 102, 0.12);
    --shadow-lg: 0 10px 32px rgba(0, 51, 102, 0.16);
    --shadow-xl: 0 20px 48px rgba(0, 51, 102, 0.20);
    --shadow-glow: 0 0 30px rgba(135, 206, 235, 0.4);
    --shadow-glow-strong: 0 0 50px rgba(135, 206, 235, 0.6);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Glass morphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(12px);
}

::-webkit-scrollbar {
    display: none;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    /* max-width: 100px; */
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* === UTILITY CLASSES === */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: var(--gradient-primary);
}

.gradient-overlay {
    background: var(--gradient-overlay);
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid rgb(255 255 255 / 46%) !important;
}

/* === LAYOUT === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* === SOCIAL FLOATING BAR === */
.social-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: inherit;
    z-index: -1;
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C64D0 100%);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

.social-icon {
    width: 28px;
    height: 28px;
    color: white;
    transition: transform var(--transition-base);
    z-index: 2;
}

.social-label {
    position: absolute;
    right: 64px;
    white-space: nowrap;
    padding: 8px 16px;
    background: inherit;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-bounce);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.social-btn:hover {
    width: auto;
    padding: 0 20px;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-strong);
}

.social-btn:hover .social-label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

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

.social-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .social-floating {
        right: 12px;
        bottom: 12px;
    }

    .social-btn {
        width: 48px;
        height: 48px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }

    .social-btn:hover {
        width: 48px;
        padding: 0;
    }

    .social-label {
        display: none;
    }
}


/* ========================================
   TOP BAR MEJORADO
   ======================================== */

.top-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform var(--transition-smooth);
}

/* Efecto shimmer mejorado */
.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 4s infinite ease-in-out;
}

/* Textura sutil de puntos */
.top-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(200%); }
}

/* Ocultar top-bar al hacer scroll */
.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-link,
.top-bar-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.top-bar-link {
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.top-bar-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.top-bar-link:hover::before {
    opacity: 1;
}

.top-bar-link:hover {
    color: white;
    transform: translateY(-2px);
}

.top-bar-left svg,
.top-bar-right svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

/* ========================================
   LOGO FLOTANTE (separado)
   ======================================== */

.logo-floating {
    position: fixed;
    top: 110px;
    left: 17%;
    transform: translateX(-50%);
    z-index: 2000;
    transition: all var(--transition-smooth);
    opacity: 0;
    animation: logoAppear 2s ease-out forwards;

    height: 190px;
    background-color: white; /* Un azul oscuro similar al de la imagen */

    /* Crea la forma personalizada */
    clip-path: polygon(
        0% 0%,       /* Esquina superior izquierda */
        100% 0%,      /* Esquina superior derecha */
        100% 100%,    /* Esquina inferior derecha (normal) */
        50% 70%,      /* Punto central superior del pico invertido */
        0% 100%       /* Esquina inferior izquierda (normal) */
    );
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.logo-floating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* -webkit-backdrop-filter: blur(10px); */
    padding: 12px 15px;
    filter:drop-shadow(5px 2px 1px rgba(0, 0, 0, 0.3));
    transition: all var(--transition-base);
}

/* .logo-floating-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(30, 144, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.25) 0%, rgba(30, 144, 255, 0.15) 100%);
} */

.logo-floating img {
    height: 105px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(30, 144, 255, 0.3));
    transition: filter var(--transition-base);
}

.logo-floating-container:hover img {
    filter: drop-shadow(0 6px 20px rgba(30, 144, 255, 0.5));
}

/* Ocultar logo flotante en scroll */
.logo-floating.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ========================================
   NAVBAR MEJORADO
   ======================================== */

.navbar {
    position: fixed;
    top: 40px; /* Altura del top-bar */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
    padding: 1rem 0;
    padding-bottom: 0;
    background-color: white;
}

/* Cuando se oculta el top-bar, el navbar sube */
.navbar.top-hidden {
    top: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Efecto glass del navbar */
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        135deg,
        rgba(0, 51, 102, 0.95) 0%,
        rgba(30, 144, 255, 0.85) 50%,
        rgba(135, 206, 235, 0.75) 100%
    ); */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(135, 206, 235, 0.5);
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.2);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

/* Barra de acento degradada inferior */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, #003366 0%, #87CEEB 50%, #FFFFFF 100%);
    opacity: 0;
    transform: scaleX(0); */
    transition: all var(--transition-smooth);
}

.navbar.scrolled::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    width: 100%;
}


/* ========================================
   LOGO MEJORADO
   ======================================== */

.logo {
    position: relative;
    z-index: 2;
    justify-content: center;
    display: flex;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform var(--transition-base);
    cursor: pointer;
}

.logo-container:hover {
    transform: translateY(-2px);
}

/* Glow effect para el logo */
.logo-container::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--gradient-glow);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.logo-container:hover::before {
    opacity: 0.6;
}

.logo-container img {
    height: 100px;
    /* width: 100px; */
    position: relative;
    filter: drop-shadow(0 4px 12px rgba(74, 158, 255, 0.3));
    transition: filter var(--transition-base);
}

.logo-container:hover img {
    filter: drop-shadow(0 6px 20px rgba(74, 158, 255, 0.5));
}


/* ========================================
   MENU MEJORADO
   ======================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    position: relative;
    background: transparent;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
 position: relative;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    /* color: white; */
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    transition: all var(--transition-base);
    /* display: inline-block; */
    /* text-shadow: 0 2px 4px rgba(0, 51, 102, 0.2); */
}

/* Efecto glass en hover de enlaces */
.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(135, 206, 235, 0.1) 100%);
    border: 1.5px solid rgba(135, 206, 235, 0.4);
    border-radius: 12px; */
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--transition-base);
    z-index: -1;
    backdrop-filter: blur(8px);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Línea inferior animada */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #87CEEB 0%, #B0E0E6 100%);
    /* transform: translateX(-50%); */
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: #003366;
    text-shadow: 0 0 15px rgba(135, 206, 235, 0.6);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  height: 3px; /* Línea delgada */
  background-color: blue;
  animation: lineProgress 2s ease-in-out infinite; /* 2 segundos de duración, suave, loop infinito */
  width: 0%; /* Estado inicial que coincide con los keyframes */
  left: 0%; /* Estado inicial que coincide con los keyframes */
}

/* Estilo para enlace activo */
.nav-menu a.active {
    position: relative; /* Asegura que ::after se posicione relativo a él */
    overflow: hidden; /* Importante para ocultar la línea cuando se sale por la derecha */
    display: inline-block; /* Hace que el padre se ajuste a su contenido */
    padding-bottom: 3px;
}

.nav-menu a.active::before {
    opacity: 0.6;
    transform: scale(1);
}

@keyframes lineProgress {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}


/* ========================================
   BOTÓN CTA MEJORADO
   ======================================== */

.nav-cta {
    /* position: relative; */
    padding: 0.75rem 2rem !important;
    background: linear-gradient(135deg, #1e90ff 0%, #B0E0E6 100%) !important;
    border-radius: 30px;
    /* font-weight: 700; */
    /* float: right; */
    color: #ffffff !important;
    /* overflow: hidden; */
    /* box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4); */
    /* text-shadow: none !important; */
    /* transition: all var(--transition-base); */
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.6);
}

/* Desactivar efecto glass del CTA */
.nav-cta::before {
    opacity: 0 !important;
}

/* Shimmer effect */
.nav-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.nav-cta:hover::after {
    transform: translateX(100%);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.5);
}

/* Botón de descarga del catálogo - estilo atractivo */
.nav-download {
    position: relative !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem !important;
    border-radius: 28px;
    background: linear-gradient(90deg, #339bfb 0%, #1e5a8e 100%);
    color: #ffffff;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms ease !important;
}

.nav-download svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
}

/* .nav-download:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 36px rgba(255,150,0,0.22);
} */

.nav-download::after {
    /* content: ''; */
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /* background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0)); */
    pointer-events: none;
}
.nav-download::before{
    backdrop-filter: none !important;
}

@media (max-width: 768px) {
    .nav-download { padding: 0.5rem 1rem; font-size: 0.95rem; }
}


/* ========================================
   MENU TOGGLE (Mobile)
   ======================================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
}

.menu-toggle:hover span {
    box-shadow: 0 2px 12px rgba(74, 158, 255, 0.6);
}

/* Animación del menú toggle activo */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Logo en navbar - removido */
.logo.logo-navbar {
    display: none !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    /* Logo flotante en móvil */
    .logo-floating {
        top: 50px;
    }

    .logo-floating-container {
        padding: 10px 12px;
    }

    .logo-floating img {
        height: 50px;
    }

    /* Top bar móvil */
    .top-bar {
        position: relative;
        padding: 0.6rem 0;
        font-size: 0.8rem;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .separator {
        display: none;
    }

    /* Navbar móvil */
    .navbar {
        position: fixed;
        top: 0;
        padding: 0.5rem 0;
    }

    .navbar::before {
        opacity: 1;
    }

    .nav-container {
        height: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(135deg, rgba(0, 51, 102, 0.98) 0%, rgba(30, 144, 255, 0.9) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        padding: 2rem;
        border-bottom: 2px solid rgba(135, 206, 235, 0.5);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-smooth);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(-20px);
        transition: all var(--transition-base);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation para items del menú */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-cta {
        margin-top: 1rem;
        border: none !important;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        height: 40px;
    }

    .top-bar-link,
    .top-bar-text {
        font-size: 0.75rem;
    }

    .top-bar-left svg,
    .top-bar-right svg {
        width: 14px;
        height: 14px;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    /* border: 2px solid transparent; */
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* === SECTION DIVIDERS === */
.section-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100px;
}

.section-divider.reverse {
    transform: scaleY(-1);
}

/* === DIVIDER ANIMATIONS === */
.section-divider-animated-1 svg path {
    animation: waveSmooth1 8s ease-in-out infinite;
}

.section-divider-animated-2 svg path {
    animation: waveSmooth2 8s ease-in-out infinite;
}

.section-divider-animated-3 svg path {
    animation: waveSmooth3 10s ease-in-out infinite;
}

.section-divider-animated-4 svg circle {
    animation: floatSmooth 4s ease-in-out infinite;
}

.section-divider-animated-5 svg path {
    animation: waveSmooth5 7s ease-in-out infinite;
}

@keyframes waveSmooth1 {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-3px) scaleY(1.02); }
}

@keyframes waveSmooth2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-2px) translateX(1px); }
    50% { transform: translateY(0) translateX(0); }
    75% { transform: translateY(-2px) translateX(-1px); }
}

@keyframes waveSmooth3 {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-4px) scaleY(1.01); }
}

@keyframes floatSmooth {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes waveSmooth5 {
    0%, 100% { transform: skewY(0deg) translateY(0); }
    25% { transform: skewY(0.5deg) translateY(-1px); }
    50% { transform: skewY(0deg) translateY(0); }
    75% { transform: skewY(-0.5deg) translateY(-1px); }
}

/* === ANIMATIONS === */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

@keyframes pulseBig {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.15) translateY(-10px);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmerText {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(135, 206, 235, 0.3), 0 0 40px rgba(30, 144, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(135, 206, 235, 0.6), 0 0 60px rgba(30, 144, 255, 0.4);
    }
}

@keyframes glassShimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        /* Animaciones deshabilitadas por preferencia del usuario */
        /* animation: none !important; */
        transition-duration: 0.01ms !important;
    }
}
/* ===============================================
   SYNTRADE - CSS PART 2
   Hero, About, Services, Products
   =============================================== */

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 20s ease-in-out infinite alternate;

    filter: brightness(0.7);
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 224, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.2s both;
    box-shadow: var(--shadow-md);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-accent-light);
}

.hero-title {
    color: white;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight {
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
    }
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    animation: fadeInUp 0.8s ease-out;
}

.section-tag {
    display: inline-block;
    /* font-family: var(--font-heading);
    font-size: 0.875rem; */
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding: 0.5rem 1.5rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-tag::before {
    right: 100%;
    margin-right: 12px;
}

.section-tag::after {
    left: 100%;
    margin-left: 12px;
}

.section-title {
    max-width: 800px;
    margin: 0 auto;
}

.section-description {
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* === ABOUT SECTION === */
.about {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-bg-primary);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    animation: slideInLeft 0.8s ease-out;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: var(--spacing-lg);
    /* margin-top: var(--spacing-xl);
    padding: var(--spacing-md); */
}

.value-item {
    position: relative;
    text-align: center;
    /* padding: var(--spacing-xl) var(--spacing-lg); */
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
    /* overflow: hidden; */
    cursor: pointer;
}

/* Efecto de onda al hacer hover */
/* .value-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(135, 206, 250, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
} */

.value-item:hover::before {
    width: 300px;
    height: 300px;
}

/* Animaciones escalonadas */
.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }
.value-item:nth-child(5) { animation-delay: 0.5s; }

/* .value-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 48, 96, 0.15),
                0 0 30px rgba(135, 206, 250, 0.2);
} */

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003060 0%, #1e5a8e 50%, #87ceeb 100%);
    box-shadow: 0 8px 20px rgba(0, 48, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* Brillo animado en el ícono */
.value-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    stroke-width: 2.5;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.value-item:hover .value-icon {
    /* transform: scale(1.15) rotate(5deg); */
    box-shadow: 0 12px 30px rgba(135, 206, 250, 0.4);
}

.value-item:hover .value-icon svg {
    transform: scale(1.1);
    animation: pulse 1s ease-in-out infinite;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003060;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.value-item:hover h4 {
    color: #1e5a8e;
}

.value-description {
    font-size: 0.85rem;
    color: #5a7a99;
    line-height: 1.5;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.value-item:hover .value-description {
    opacity: 1;
}

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

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: var(--spacing-md);
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon svg {
        width: 30px;
        height: 30px;
    }

    .value-item h4 {
        font-size: 1rem;
    }

    .value-description {
        font-size: 0.8rem;
    }
}
.about-visual {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.mv-card {
    padding: 0;
    border-radius: var(--radius-xl);
    /* box-shadow: 0 4px 20px rgba(0, 48, 96, 0.08); */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(to bottom right,
                rgba(255, 255, 255, 0.95),
                rgba(255, 255, 255, 0.85)); */
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

/* Borde superior con gradiente */
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003060 0%, #1e5a8e 50%, #87ceeb 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mv-card:hover::before {
    opacity: 1;
}

/* Efecto de brillo sutil en hover */
.mv-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(135, 206, 250, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.mv-card:hover::after {
    opacity: 1;
    transform: translate(10%, 10%);
}

/* .mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 48, 96, 0.12),
                0 0 20px rgba(135, 206, 250, 0.1);
    border-color: rgba(135, 206, 250, 0.3);
} */

/* Header de la tarjeta */
.mv-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.mv-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #003060 0%, #1e5a8e 50%, #4a90c5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 48, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Anillo decorativo alrededor del ícono */
.mv-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    background: linear-gradient(135deg, #87ceeb, #003060);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mv-card:hover .mv-icon-wrapper::before {
    opacity: 0.3;
}

.mv-card:hover .mv-icon-wrapper {
    /* transform: scale(1.08) rotate(-5deg); */
    box-shadow: 0 12px 30px rgba(0, 48, 96, 0.3);
}

.mv-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2.5;
    transition: transform 0.4s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1);
}

.mv-header h3 {
    color: #003060;
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.mv-card:hover .mv-header h3 {
    color: #1e5a8e;
}

/* Contenido de la tarjeta */
.mv-content {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.mv-content p {
    color: #4a5f7a;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    text-align: justify;
    transition: color 0.3s ease;
}

.mv-card:hover .mv-content p {
    color: #3a4f6a;
}

/* Acento decorativo inferior */
.mv-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at bottom right,
                rgba(135, 206, 250, 0.08) 0%,
                transparent 70%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.mv-card:hover .mv-accent {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom right,
                rgba(135, 206, 250, 0.12) 0%,
                transparent 70%);
}

/* Estilos específicos para cada tarjeta */
.mission-card {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.vision-card {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        gap: var(--spacing-lg);
    }

    .mv-header {
        padding: var(--spacing-lg);
    }

    .mv-header h3 {
        font-size: 1.5rem;
    }

    .mv-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .mv-icon {
        width: 28px;
        height: 28px;
    }

    .mv-content {
        padding: 0 var(--spacing-lg) var(--spacing-lg);
    }

    .mv-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .mv-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .mv-content p {
        text-align: left;
    }
}

/* === SERVICES HIGHLIGHT === */
.services-highlight {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #001a33 0%, #003060 50%, #1e5a8e 100%);
    position: relative;
    overflow: hidden;
}

/* Patrón de fondo sutil */
.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(135, 206, 250, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(135, 206, 250, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

/* Contenedor de formas vectoriales */
.bg-vector-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Ondas SVG superiores e inferiores */
.vector-shape {
    position: absolute;
    width: 100%;
    opacity: 1;
    z-index: 0;
}

.wave-top {
    top: 0;
    left: 0;
    height: 150px;
    animation: waveMove 15s ease-in-out infinite;
}

.wave-bottom {
    bottom: 0;
    left: 0;
    height: 150px;
    animation: waveMove 18s ease-in-out infinite reverse;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-30px) scaleY(1.1);
    }
}

/* Formas geométricas adicionales */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 8%;
    animation-delay: 5s;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(135, 206, 250, 0.08);
    top: 50%;
    left: 15%;
    animation: rotate 25s linear infinite;
}

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

.geo-hexagon {
    position: absolute;
    width: 120px;
    height: 69px;
    background: rgba(74, 144, 197, 0.08);
    top: 25%;
    right: 20%;
    animation: float 22s infinite ease-in-out;
    animation-delay: 3s;
}

.geo-hexagon::before,
.geo-hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
}

.geo-hexagon::before {
    bottom: 100%;
    border-bottom: 35px solid rgba(74, 144, 197, 0.08);
}

.geo-hexagon::after {
    top: 100%;
    border-top: 35px solid rgba(74, 144, 197, 0.08);
}

/* Formas flotantes orgánicas */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #87ceeb 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, transparent 30%, #4a90c5 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: -3%;
    animation-delay: 7s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #1e5a8e 0%, transparent 70%);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 15%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(5deg);
    }
    66% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.service-highlight-card {
    text-align: center;
    padding: var(--spacing-2xl);
    border-radius: 20px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-highlight-card:nth-child(1) { animation-delay: 0.1s; }
.service-highlight-card:nth-child(2) { animation-delay: 0.2s; }
.service-highlight-card:nth-child(3) { animation-delay: 0.3s; }
.service-highlight-card:nth-child(4) { animation-delay: 0.4s; }

/* Forma geométrica de fondo de la tarjeta */
.card-bg-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.1) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -30px;
    right: -30px;
    transition: all 0.6s ease;
    animation: morphShape 8s infinite ease-in-out;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

.service-highlight-card:hover .card-bg-shape {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.15) 0%, transparent 70%);
}

/* Acentos en las esquinas */
.corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(135, 206, 250, 0.3);
    transition: all 0.5s ease;
}

.corner-accent.top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 8px;
}

.corner-accent.bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 8px;
}

.service-highlight-card:hover .corner-accent {
    border-color: rgba(135, 206, 250, 0.6);
    width: 50px;
    height: 50px;
}

.service-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(135, 206, 250, 0.2);
    border-color: rgba(135, 206, 250, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Wrapper del ícono */
.sh-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.sh-icon {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a90c5 0%, #1e5a8e 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.sh-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #87ceeb 0%, #4a90c5 50%, #1e5a8e 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-highlight-card:hover .sh-icon::before {
    opacity: 1;
}

.sh-icon svg {
    width: 42px;
    height: 42px;
    color: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-highlight-card:hover .sh-icon {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(135, 206, 250, 0.4);
}

.service-highlight-card:hover .sh-icon svg {
    transform: scale(1.1);
    animation: iconBounce 1s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-3px);
    }
}

.service-highlight-card h3 {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.service-highlight-card:hover h3 {
    text-shadow: 0 4px 20px rgba(135, 206, 250, 0.5);
    transform: translateY(-2px);
}

.service-highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-highlight-card:hover p {
    color: rgba(255, 255, 255, 1);
}

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

/* Responsive */
@media (max-width: 968px) {
    .services-highlight {
        padding: var(--spacing-2xl) 0;
    }

    .services-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--spacing-lg);
    }

    .shape,
    .geo-circle,
    .geo-triangle,
    .geo-hexagon {
        display: none;
    }

    .wave-top,
    .wave-bottom {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .services-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }

    .service-highlight-card {
        padding: var(--spacing-xl);
    }

    .sh-icon {
        width: 70px;
        height: 70px;
    }

    .sh-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .sh-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-highlight-card h3 {
        font-size: 1.2rem;
    }

    .service-highlight-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .services-grid-compact {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* === PRODUCTS SECTION === */
.products {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-bg-secondary);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.product-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.18s; }
.product-card:nth-child(3) { animation-delay: 0.26s; }
.product-card:nth-child(4) { animation-delay: 0.34s; }
.product-card:nth-child(5) { animation-delay: 0.42s; }
.product-card:nth-child(6) { animation-delay: 0.5s; }
.product-card:nth-child(7) { animation-delay: 0.58s; }
.product-card:nth-child(8) { animation-delay: 0.66s; }
.product-card:nth-child(9) { animation-delay: 0.74s; }

@media (max-width: 768px) {
    .products {
        padding: var(--spacing-2xl) 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-2xl);
    }
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::after {
    opacity: 0.1;
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-content {
    padding: var(--spacing-lg);
    background: white;
    position: relative;
}

.product-icon {
    position: absolute;
    top: -32px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-bounce);
}

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

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    padding-right: 70px;
}

.product-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-link {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.product-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.product-link:hover {
    color: var(--color-primary);
    gap: 0.75rem;
}

.product-link:hover svg {
    transform: translateX(4px);
}

.products-cta {
    text-align: center;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--color-border);
    background: white;
    position: relative;
    overflow: hidden;
}

.products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.1), transparent);
    transition: left 0.6s;
}

.products-cta:hover::before {
    left: 100%;
}

.products-cta-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.products-cta h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.products-cta p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   SYNTRADE - CSS PART 3
   Sectors, Brands, CTA, Contact, Footer
   =============================================== */

/* === SECTORS SECTION === */
.sectors {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-bg-primary);
    position: relative;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.sector-card {
    position: relative;
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
    animation: fadeInUp 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.sector-card:nth-child(1) { animation-delay: 0.15s; }
.sector-card:nth-child(2) { animation-delay: 0.35s; }
.sector-card:nth-child(3) { animation-delay: 0.55s; }
.sector-card:nth-child(4) { animation-delay: 0.75s; }

@media (max-width: 968px) {
    .sectors {
        padding: var(--spacing-2xl) 0;
    }

    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--spacing-md);
    }

    .sector-card {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sector-card {
        height: 300px;
    }
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sector-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.sector-card:hover .sector-image {
    transform: scale(1.15);
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background var(--transition-base);
}

.sector-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 72px;
    height: 72px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 3;
    transition: all var(--transition-bounce);
}

.sector-card:hover .sector-icon {
    transform: rotate(15deg) scale(1.2);
    box-shadow: var(--shadow-glow);
}

.sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    color: white;
    z-index: 2;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.sector-card:hover .sector-content {
    transform: translateY(0);
}

.sector-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sector-content ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base) 0.1s;
}

.sector-card:hover .sector-content ul {
    opacity: 1;
    transform: translateY(0);
}

.sector-content li {
    padding-left: 1.75rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.sector-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent-light);
    font-weight: bold;
    font-size: 1.2rem;
}

/* === BRANDS SECTION === */
/* === BRANDS SECTION === */
.brands {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Formas decorativas de fondo */
.brands-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.brand-shape {
    position: absolute;
    opacity: 0.04;
    animation: floatShape 25s infinite ease-in-out;
}

.brand-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #003060 0%, #87ceeb 100%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.brand-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1e5a8e 0%, #4a90c5 100%);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 10%;
    left: -50px;
    animation-delay: 8s;
}

.brand-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #87ceeb 0%, #003060 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    right: 10%;
    animation-delay: 16s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(-15px) rotate(240deg);
    }
}

/* Grid unificado de marcas - 8 columnas */
.brands-unified-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    z-index: 1;
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-lg) 0;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
    cursor: pointer;
}

/* Animaciones escalonadas */
.brand-logo-item:nth-child(1) { animation-delay: 0.05s; }
.brand-logo-item:nth-child(2) { animation-delay: 0.1s; }
.brand-logo-item:nth-child(3) { animation-delay: 0.15s; }
.brand-logo-item:nth-child(4) { animation-delay: 0.2s; }
.brand-logo-item:nth-child(5) { animation-delay: 0.25s; }
.brand-logo-item:nth-child(6) { animation-delay: 0.3s; }
.brand-logo-item:nth-child(7) { animation-delay: 0.35s; }
.brand-logo-item:nth-child(8) { animation-delay: 0.4s; }
.brand-logo-item:nth-child(9) { animation-delay: 0.45s; }
.brand-logo-item:nth-child(10) { animation-delay: 0.5s; }
.brand-logo-item:nth-child(11) { animation-delay: 0.55s; }
.brand-logo-item:nth-child(12) { animation-delay: 0.6s; }
.brand-logo-item:nth-child(13) { animation-delay: 0.65s; }
.brand-logo-item:nth-child(14) { animation-delay: 0.7s; }
.brand-logo-item:nth-child(15) { animation-delay: 0.75s; }
.brand-logo-item:nth-child(16) { animation-delay: 0.8s; }

.brand-logo-item img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.4); */
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover con zoom suave */
.brand-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.2);
}

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

/* Responsive - 6 columnas en pantallas grandes */
@media (max-width: 1400px) {
    .brands-unified-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: var(--spacing-lg) var(--spacing-md);
    }
}

/* Responsive - 5 columnas en tablets grandes */
@media (max-width: 1200px) {
    .brands-unified-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Responsive - 4 columnas en tablets */
@media (max-width: 968px) {
    .brands {
        padding: var(--spacing-2xl) 0;
    }

    .brands-unified-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md) var(--spacing-sm);
    }

    .brand-logo-item {
        padding: var(--spacing-sm);
    }

    .brand-logo-item img {
        max-height: 60px;
    }
}

/* Responsive - 3 columnas en móviles grandes */
@media (max-width: 640px) {
    .brands-unified-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm) var(--spacing-xs);
    }

    .brand-logo-item img {
        max-height: 50px;
    }
}

/* Responsive - 2 columnas en móviles pequeños */
@media (max-width: 480px) {
    .brands-unified-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-logo-item img {
        max-height: 45px;
    }
}

/* === CTA SECTION === */
.cta-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(176, 224, 230, 0.08) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    animation: scaleIn 0.8s ease-out;
}

.cta-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.cta-title {
    color: white;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-light);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* === CONTACT SECTION === */
.contact {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
}

.contact-info {
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.75rem;
}

.contact-lead {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-detail-item {
    display: flex;
    gap: var(--spacing-md);
    transition: transform var(--transition-fast);
}

.contact-detail-item:hover {
    transform: translateX(8px);
}

.detail-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: white;
    transition: transform var(--transition-bounce);
}

.contact-detail-item:hover .detail-icon {
    transform: rotate(10deg) scale(1.1);
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-content h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.375rem;
}

.detail-content p {
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.detail-content a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.detail-content a:hover {
    color: var(--color-secondary);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    display: block;
}

.contact-form-wrapper {
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

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

.form-checkbox {
    flex-direction: row;
    align-items: start;
}

.form-checkbox input {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    cursor: pointer;
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

/* === FOOTER === */
.footer {
    background: var(--gradient-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.02) 35px, rgba(255, 255, 255, 0.02) 70px);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-logo {
    color: white;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-accent {
    color: var(--color-accent-light);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin: var(--spacing-md) 0 var(--spacing-lg);
    line-height: 1.7;
}

.footer-values {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-values strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    padding-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-legal {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* === ENHANCED ANIMATIONS FOR ELEMENTS === */

/* Animación para los valores de about */
.value-item {
    animation: fadeInUp 0.8s ease-out backwards;
    position: relative;
    /* overflow: hidden; */
}

/* .value-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
} */

.value-item:hover::before {
    opacity: 1;
}

/* Animación mejorada para el CTA */
.cta-section h2 {
    animation: fadeInDown 0.8s ease-out;
}

.cta-buttons {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Animación de entrada para títulos de sección */
.section-header {
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.section-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Efecto glow mejorado en elementos interactivos */
.product-card,
.sector-card,
.brand-category,
.service-highlight-card {
    position: relative;
}

.product-card::before,
.sector-card::before,
.brand-category::before,
.service-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.product-card:hover::before,
.sector-card:hover::before,
.brand-category:hover::before,
.service-highlight-card:hover::before {
    opacity: 1;
}

/* Animación del scroll indicator */
@keyframes float-down {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(10px); }
}

.scroll-indicator {
    animation: float-down 2s ease-in-out infinite;
}

/* Mejora en la animación de tarjetas con delay */
.product-card:nth-child(1),
.sector-card:nth-child(1),
.brand-category:nth-child(1),
.service-highlight-card:nth-child(1) { animation-delay: 0.05s; }

.product-card:nth-child(2),
.sector-card:nth-child(2),
.brand-category:nth-child(2),
.service-highlight-card:nth-child(2) { animation-delay: 0.1s; }

.product-card:nth-child(3),
.sector-card:nth-child(3),
.brand-category:nth-child(3),
.service-highlight-card:nth-child(3) { animation-delay: 0.15s; }

.product-card:nth-child(4),
.sector-card:nth-child(4),
.brand-category:nth-child(4),
.service-highlight-card:nth-child(4) { animation-delay: 0.2s; }

.product-card:nth-child(5),
.sector-card:nth-child(5),
.brand-category:nth-child(5),
.service-highlight-card:nth-child(5) { animation-delay: 0.25s; }

.product-card:nth-child(6),
.sector-card:nth-child(6),
.brand-category:nth-child(6),
.service-highlight-card:nth-child(6) { animation-delay: 0.3s; }

/* Efecto spotlight en hover */
.products,
.sectors,
.brands {
    position: relative;
}

/* Animación de los botones */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Animación mejorada para los iconos */
.service-highlight-card .sh-icon,
.brand-category .brand-category-icon,
.sector-card .sector-icon {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) backwards;
}

.service-highlight-card:nth-child(1) .sh-icon { animation-delay: 0.1s; }
.service-highlight-card:nth-child(2) .sh-icon { animation-delay: 0.2s; }
.service-highlight-card:nth-child(3) .sh-icon { animation-delay: 0.3s; }
.service-highlight-card:nth-child(4) .sh-icon { animation-delay: 0.4s; }

/* Respuesta visual mejorada en elementos */
@media (hover: hover) {
    .product-card:hover,
    .sector-card:hover,
    .brand-category:hover,
    .service-highlight-card:hover {
        filter: brightness(1.05);
    }
}

/* Animación responsiva para móviles */
@media (max-width: 768px) {
    .section-divider svg {
        min-height: 80px;
    }

    .product-card,
    .sector-card,
    .brand-category,
    .service-highlight-card {
        animation: fadeInUp 0.6s ease-out backwards;
    }
}
