/* ==========================================
   RESET Y VARIABLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #0d0d0d;
    --color-black: #000000;
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-gold-dark: #b8941e;
    --color-gray: #1a1a1a;
    --color-gray-light: #2a2a2a;
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================
   FONDO LUNAR GLOBAL
   ========================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/earthrise.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* Video de fondo lunar (alternativo) */
#lunar-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: -2;
    pointer-events: none;
    display: none;
}

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

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo > div {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--color-gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-link {
    color: var(--color-gold-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

/* ==========================================
   LANGUAGE SELECTOR
   ========================================== */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
}

.lang-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold-light);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.lang-btn.active {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1446941611757-91d2c3bd3d45?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-experience {
    font-size: 0.95rem;
    color: #ffffff;
    margin-top: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s backwards;
}

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

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1s ease 0.4s backwards;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    background: var(--color-gold-light);
}

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

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==========================================
   SERVICIOS SECTION
   ========================================== */
.servicios {
    padding: 5rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.servicios::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -220px;
    transform: translateY(-50%);
    width: 750px;
    height: 750px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        transparent 52%,
        rgba(180, 180, 180, 0.04) 60%,
        rgba(255, 255, 255, 0.10) 68%,
        rgba(255, 255, 255, 0.14) 71%,
        rgba(255, 255, 255, 0.10) 74%,
        rgba(180, 180, 180, 0.04) 82%,
        transparent 92%
    );
    pointer-events: none;
    z-index: 0;
}

.servicios::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -220px;
    transform: translateY(-50%);
    width: 750px;
    height: 750px;
    border-radius: 50%;
    box-shadow:
        0 0 80px 8px rgba(255, 255, 255, 0.06),
        0 0 160px 20px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
}

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--color-gold);
    margin: 1rem auto 0;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.servicio-card {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.servicio-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.servicio-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.servicio-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.servicio-icon svg {
    width: 100%;
    height: 100%;
}

.servicio-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.servicio-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

.servicio-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* ==========================================
   CIBERSEGURIDAD SECTION
   ========================================== */
.ciberseguridad {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
}

.ciberseguridad .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: -1rem auto 3rem;
    max-width: 600px;
}

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

.ciber-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ciber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.ciber-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.ciber-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--dark);
    stroke-width: 2.5;
}

.ciber-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.ciber-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.ciber-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.ciber-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.ciber-features .feature-icon {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ciber-card .btn {
    margin-top: auto;
    align-self: flex-start;
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .ciber-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ciber-card {
        padding: 2rem;
    }
    
    .ciber-title {
        font-size: 1.5rem;
    }
    
    .ciber-subtitle {
        font-size: 1rem;
    }
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
}

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

.why-us-highlight {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 2rem 0;
    font-weight: 600;
    line-height: 1.4;
}

.why-us-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

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

.astronaut-icon {
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

.astronaut-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

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

/* ==========================================
   NOSOTROS SECTION
   ========================================== */
.nosotros {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.nosotros-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.nosotros-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.nosotros-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nosotros-path-svg {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.15));
}

.nosotros-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nosotros-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.valores-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.valor-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.valor-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.valor-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.valor-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   CLIENTES SECTION
   ========================================== */
.clientes {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
}

    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.testimonios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem auto 0;
    max-width: 1400px;
    padding: 0 2rem;
}

.testimonio-card {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonio-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.testimonio-text {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonio-autor {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive para testimonios */
@media (max-width: 1024px) {
    .testimonios {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonios {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 600px;
    }
    
    .testimonio-card {
        padding: 1.5rem;
    }
}
    font-size: 0.9rem;
}

/* ==========================================
   CONTACTO SECTION
   ========================================== */
.contacto {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(0, 0, 0, 0.75);
}

.form-group textarea {
    resize: vertical;
}

.contacto-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

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

.social-link svg {
    width: 20px;
    height: 20px;
}

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

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    animation: fadeInUp 0.8s ease forwards;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .language-selector {
        margin-left: 1rem;
        order: 3;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transform: translateX(100%);
        transition: var(--transition);
    }

    .nav.active {
        transform: translateX(0);
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .why-us-content,
    .nosotros-content,
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .astronaut-icon {
        width: 200px;
        height: 200px;
    }

    .why-us-highlight {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .servicio-card {
        padding: 2rem 1.5rem;
    }

    .clientes-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}.clientes-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0 4rem;
    padding: 0 1rem;
}

.cliente-logo {
    height: 150px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.85));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cliente-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cliente-logo:hover::before {
    opacity: 1;
}

.cliente-content {
    text-align: center;
    width: 100%;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.cliente-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.cliente-desc {
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    max-width: 90%;
    margin: 0 auto;
}

.cliente-logo:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(26, 26, 26, 0.95));
    border-color: var(--color-gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.cliente-logo:hover .cliente-name {
    color: var(--color-gold);
    transform: translateY(-5px);
    font-size: 1.15rem;
}

.cliente-logo:hover .cliente-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Efecto de brillo animado */
.cliente-logo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.cliente-logo:hover::after {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translate(-100%, -100%);
    }
    100% {
        transform: rotate(45deg) translate(100%, 100%);
    }
}
/* Clientes Section - Awwwards Style with Responsive Design */
.clientes {
    position: relative;
    overflow: hidden;
}

.clientes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Clientes Section - Cards más compactas y responsive */
.clientes-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0 3.5rem;
    padding: 0 1rem;
}

.cliente-logo {
    height: 90px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.85));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    perspective: 1000px;
}

.cliente-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cliente-logo:hover::before {
    opacity: 1;
}

.cliente-content {
    text-align: center;
    width: 100%;
    padding: 0.9rem;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.cliente-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.cliente-desc {
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px) translateZ(-20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 95%;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cliente-logo:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(26, 26, 26, 0.95));
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-8px) scale(1.03) rotateX(2deg);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.4),
        0 0 25px rgba(212, 175, 55, 0.2);
}

.cliente-logo:hover .cliente-name {
    color: var(--color-gold);
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.cliente-logo:hover .cliente-desc {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.cliente-logo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(212, 175, 55, 0.15) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translate(-100%, -100%);
    transition: all 0.6s ease;
}

.cliente-logo:hover::after {
    animation: awwwards-shine 1.2s ease-in-out;
}

@keyframes awwwards-shine {
    0% {
        transform: rotate(45deg) translate(-100%, -100%);
    }
    100% {
        transform: rotate(45deg) translate(100%, 100%);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .clientes-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.3rem;
    }
    
    .cliente-logo {
        height: 85px;
    }
    
    .cliente-name {
        font-size: 0.82rem;
    }
}

@media (max-width: 1024px) {
    .clientes-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .cliente-logo {
        height: 80px;
    }
    
    .cliente-name {
        font-size: 0.78rem;
    }
    
    .cliente-desc {
        font-size: 0.68rem;
    }
}

@media (max-width: 768px) {
    .clientes-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0 3rem;
    }
    
    .cliente-logo {
        height: 75px;
    }
    
    .cliente-content {
        padding: 0.75rem;
    }
    
    .cliente-name {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
}

@media (max-width: 640px) {
    .clientes-logos {
        gap: 0.8rem;
    }
    
    .cliente-logo {
        height: 70px;
    }
    
    .cliente-name {
        font-size: 0.72rem;
    }
    
    .cliente-desc {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .clientes-logos {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0 2.5rem;
    }
    
    .cliente-logo {
        height: 65px;
    }
    
    .cliente-content {
        padding: 0.6rem;
    }
    
    .cliente-name {
        font-size: 0.7rem;
    }
    
    .cliente-desc {
        font-size: 0.62rem;
    }
}

/* Efecto stagger para animación de entrada */
.cliente-logo:nth-child(1) { animation-delay: 0.1s; }
.cliente-logo:nth-child(2) { animation-delay: 0.2s; }
.cliente-logo:nth-child(3) { animation-delay: 0.3s; }
.cliente-logo:nth-child(4) { animation-delay: 0.4s; }
.cliente-logo:nth-child(5) { animation-delay: 0.5s; }

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

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
    fill: #ffffff;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: rgba(0, 0, 0, 0.82);
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.82);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}
