/* ============================================
   ALEX RACING - STYLE.CSS CORREGIDO
   ============================================ */
:root {
    --primary: #e63946;
    --primary-dark: #a4161a;
    --secondary: #1d3557;
    --accent: #f77f00;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #f1faee;
    --gray: #457b9d;
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --font-size-base: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    font-size: var(--font-size-base);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .5s;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    animation: pulse 1s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.05); }
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .4s;
    background: transparent;
}
header.scrolled {
    background: rgba(5,5,5,.95);
    padding: 12px 60px;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(230,57,70,.2);
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 20px rgba(230,57,70,.5);
}
.logo-imagen-header {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(230,57,70,0.5);
}
.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}
.logo-text span { color: var(--primary); }

nav ul { display: flex; list-style: none; gap: 35px; }
nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color .3s;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s;
}
nav ul li a:hover { color: var(--primary); }
nav ul li a:hover::after { width: 100%; }
.menu-toggle { display: none; font-size: 1.8rem; color: white; cursor: pointer; }

/* ============================================
   HERO
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.3);
    transform: scale(1.1);
    animation: heroZoom 20s ease infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,.8) 0%, rgba(230,57,70,.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 25px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-size: .9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--primary);
}
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #e63946 0%, #f77f00 25%, #ffffff 50%, #f77f00 75%, #e63946 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: desplazarColor 4s linear infinite;
    filter: drop-shadow(0 0 20px rgba(230,57,70,0.5));
    letter-spacing: 3px;
}
.hero-title:hover {
    animation-duration: 1.5s;
    filter: drop-shadow(0 0 30px rgba(230,57,70,0.8));
}
@keyframes desplazarColor {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--gray);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,.8);
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* ============================================
   BOTONES PREMIUM
   ============================================ */
.btn {
    padding: 18px 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    z-index: 1;
    background: rgba(255,255,255,0.05) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-wrapper { position: relative; display: inline-block; }
.btn-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(230,57,70,0.8) 0%, rgba(230,57,70,0.4) 40%, transparent 70%);
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    filter: blur(25px);
    pointer-events: none;
}
.btn-wrapper:hover::before { opacity: 1; }
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #e63946, #f77f00, #ffffff, #f77f00, #e63946);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 4s linear infinite;
    pointer-events: none;
}
@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s;
    pointer-events: none;
}
.btn:hover {
    color: white !important;
    transform: translateY(-3px);
    letter-spacing: 4px;
}
.btn:hover::after { left: 100%; }
.btn i { transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.btn:hover i { transform: translateX(5px); }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 2rem; color: var(--primary); }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
section { padding: 100px 60px; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
    color: var(--primary);
    font-size: .9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.section-title span { color: var(--primary); }
.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto;
}

/* ============================================
   STATS
   ============================================ */
.stats {
    background: var(--darker);
    padding: 30px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid rgba(230,57,70,.2);
    border-bottom: 1px solid rgba(230,57,70,.2);
    width: 100%;
    box-sizing: border-box;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}
.stat-icon { font-size: 1.8rem; color: var(--primary); line-height: 1; }
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    white-space: nowrap;
}
.stat-label {
    font-size: .95rem;
    text-transform: uppercase;
    color: var(--gray);
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: linear-gradient(145deg, #111, #1a1a1a);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    border: 1px solid rgba(255,255,255,.05);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(230,57,70,.3);
    box-shadow: 0 20px 50px rgba(230,57,70,.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: white;
}
.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.service-card p {
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--darker);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
    max-width: 60%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 3px solid var(--primary);
    cursor: pointer;
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(230,57,70,0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.about-image::before {
    content: 'Sobre Nosotros';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    white-space: nowrap;
}
.about-image:hover img { transform: scale(1.1); }
.about-image:hover::after { opacity: 1; }
.about-image:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.about-image:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 40px rgba(230,57,70,0.4);
    border-color: var(--accent);
}
.about-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--darker), var(--dark));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(230,57,70,0.3);
}
.about-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(230,57,70,0.5));
}
.about-placeholder span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 3px;
}
.about-content .section-tag,
.about-content .section-title { text-align: left; }
.about-content .section-line { margin: 0 0 30px 0; }
.about-text {
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(230,57,70,.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   TEAM - SECCIÓN AMPLIA Y CENTRADA
   ============================================ */
.team {
    background: var(--darker) !important;
    padding: 100px 40px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}
.team .section-header {
    text-align: center !important;
    margin: 0 auto 70px auto !important;
    width: 100% !important;
    max-width: 1400px !important;
}
.team .section-header .section-tag,
.team .section-header .section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.team .section-header .section-line {
    width: 120px !important;
    margin: 15px auto 0 auto !important;
}
.team-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 35px !important;
    width: 100% !important;
    max-width: 1800px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
    justify-items: center !important;
}
.team-card {
    position: relative;
    text-align: center;
    background: #111;
    padding: 50px 35px !important;
    border-radius: 15px;
    transition: all .5s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid rgba(255,255,255,.05);
    overflow: hidden;
    width: 100%;
    max-width: 500px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(230,57,70,0.15) 50%, rgba(230,57,70,0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}
.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
}
.team-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(230,57,70,0.3), 0 0 40px rgba(230,57,70,0.2);
}
.team-card:hover::before { opacity: 1; }
.team-card:hover::after {
    transform: scaleX(1);
    animation: borderSlide 3s linear infinite;
}
@keyframes borderSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.team-avatar {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 auto 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem !important;
    font-weight: 900;
    color: white;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    z-index: 3;
    overflow: hidden;
    flex-shrink: 0;
}
.team-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}
.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(230,57,70,0.6), 0 0 60px rgba(230,57,70,0.3);
}
.team-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
    text-align: center;
    position: relative;
    z-index: 3;
    transition: color 0.3s;
    width: 100%;
    word-wrap: break-word;
}
.team-card:hover h4 { color: var(--primary); }
.team-card .role {
    color: var(--primary);
    font-size: 1.1rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100%;
}
.team-card p {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem !important;
    line-height: 1.8;
    text-align: center;
    position: relative;
    z-index: 3;
    transition: color 0.3s;
    word-wrap: break-word;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}
.team-card:hover p { color: rgba(255,255,255,.9); }

/* ============================================
   CIRCUITS
   ============================================ */
.circuits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}
.circuit-card {
    background: linear-gradient(145deg, #111, #1a1a1a);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: all .4s;
}
.circuit-card-with-image {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    padding: 0;
    border-left: none;
}
.circuit-card-bg { position: absolute; inset: 0; z-index: 1; }
.circuit-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.circuit-card-with-image:hover .circuit-card-bg img { transform: scale(1.1); }
.circuit-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,.3) 0%, rgba(10,10,10,.7) 50%, rgba(10,10,10,.95) 100%);
    z-index: 2;
}
.circuit-card-content {
    position: relative;
    z-index: 3;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.circuit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230,57,70,.3);
}
.circuit-card .circuit-flag {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.5));
}
.circuit-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.circuit-card .location {
    color: var(--primary);
    font-size: .95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.circuit-card p {
    color: rgba(255,255,255,.9);
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--darker); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: #111;
    padding: 35px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255,255,255,.05);
}
.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: .3;
    margin-bottom: 15px;
}
.testimonial-card p {
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform .3s;
}
.testimonial-card:hover .testimonial-author .avatar { transform: scale(1.1); }
.testimonial-author .name { font-weight: 700; font-size: 1.1rem; }
.testimonial-author .title {
    color: var(--primary);
    font-size: .85rem;
    letter-spacing: 1px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}
.contact-info p {
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 30px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 15px; }
.contact-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.contact-item .text strong {
    display: block;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 3px;
}
.contact-item .text span { color: rgba(255,255,255,.8); }
.contact-form {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.05);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: .9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 5px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: border-color .3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.alert-success {
    background: rgba(74,222,128,.1);
    border-left: 4px solid #4ade80;
    color: #4ade80;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success strong { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.alert-success p { margin: 0; color: rgba(74,222,128,.9); }
.alert-error {
    background: rgba(230,57,70,.1);
    border-left: 4px solid #e63946;
    color: #ff6b6b;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-error strong { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37,211,102,.4);
    z-index: 9999;
    text-decoration: none;
    transition: all .3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--darker);
    padding: 60px 60px 30px;
    border-top: 1px solid rgba(230,57,70,.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}
.footer-brand .logo-text { font-size: 1.8rem; margin-bottom: 15px; }
.footer-brand p {
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Redes sociales */
.social-links { display: flex; gap: 15px; margin-top: 15px; }
.social-links a {
    width: 50px;
    height: 50px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s;
    font-size: 1.4rem;
    color: white;
    border: 2px solid rgba(255,255,255,.1);
}
.social-links a[href*="facebook"]  { color: #1877F2; border-color: rgba(24,119,242,.3); }
.social-links a[href*="instagram"] { color: #E4405F; border-color: rgba(228,64,95,.3); }
.social-links a[href*="twitter"],
.social-links a[href*="x.com"]     { color: #1DA1F2; border-color: rgba(29,161,242,.3); }
.social-links a[href*="youtube"]   { color: #FF0000; border-color: rgba(255,0,0,.3); }
.social-links a[href*="tiktok"]    { color: #00f2ea; border-color: rgba(0,242,234,.3); }
.social-links a[href*="linkedin"]  { color: #0A66C2; border-color: rgba(10,102,194,.3); }
.social-links a[href*="whatsapp"]  { color: #25D366; border-color: rgba(37,211,102,.3); }
.social-links a[href*="telegram"]  { color: #0088cc; border-color: rgba(0,136,204,.3); }
.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    color: white !important;
}
.social-links a[href*="facebook"]:hover  { background: #1877F2; border-color: #1877F2; box-shadow: 0 10px 25px rgba(24,119,242,.5); }
.social-links a[href*="instagram"]:hover { background: #E4405F; border-color: #E4405F; box-shadow: 0 10px 25px rgba(228,64,95,.5); }
.social-links a[href*="twitter"]:hover,
.social-links a[href*="x.com"]:hover     { background: #1DA1F2; border-color: #1DA1F2; box-shadow: 0 10px 25px rgba(29,161,242,.5); }
.social-links a[href*="youtube"]:hover   { background: #FF0000; border-color: #FF0000; box-shadow: 0 10px 25px rgba(255,0,0,.5); }
.social-links a[href*="tiktok"]:hover    { background: #000; border-color: #00f2ea; box-shadow: 0 10px 25px rgba(0,242,234,.5); }
.social-links a[href*="linkedin"]:hover  { background: #0A66C2; border-color: #0A66C2; box-shadow: 0 10px 25px rgba(10,102,194,.5); }
.social-links a[href*="whatsapp"]:hover  { background: #25D366; border-color: #25D366; box-shadow: 0 10px 25px rgba(37,211,102,.5); }
.social-links a[href*="telegram"]:hover  { background: #0088cc; border-color: #0088cc; box-shadow: 0 10px 25px rgba(0,136,204,.5); }

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; color: rgba(255,255,255,.6); }
.footer-col ul li a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .3s;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,.5);
    font-size: .9rem;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(5,5,5,.95);
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(230,57,70,.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1faee;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
}
.lightbox-close:hover { color: var(--primary); }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1faee;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    z-index: 100000;
    user-select: none;
}
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--primary); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1faee;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    background: rgba(0,0,0,.7);
    padding: 10px 30px;
    border-radius: 30px;
    border: 2px solid var(--primary);
}

/* ============================================
   NOTICIAS
   ============================================ */
.noticias { background: var(--darker); position: relative; }
.noticias-grid-publico {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.noticia-card-publico {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: all .4s;
    border: 1px solid rgba(255,255,255,.05);
    display: flex;
    flex-direction: column;
}
.noticia-card-publico:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(230,57,70,.2);
}
.noticia-img { position: relative; height: 250px; overflow: hidden; }
.noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.noticia-card-publico:hover .noticia-img img { transform: scale(1.1); }
.noticia-fecha-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(230,57,70,.5);
}
.noticia-fecha-badge .dia {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}
.noticia-fecha-badge .mes {
    display: block;
    font-size: .8rem;
    letter-spacing: 2px;
    margin-top: 3px;
}
.noticia-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.noticia-card-publico h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--light);
}
.noticia-card-publico p {
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.noticia-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.noticia-autor {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: .9rem;
}
.noticia-autor i { color: var(--primary); }
.btn-leer-mas {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-leer-mas:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}
.noticia-categoria {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.noticia-destacada-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f77f00, #e63946);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(247,127,0,.5);
}

/* ============================================
   CONTADOR DE VISITAS
   ============================================ */
.contador-visitas {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 60px;
    border-top: 1px solid rgba(230,57,70,0.2);
    border-bottom: 1px solid rgba(230,57,70,0.2);
    position: relative;
    overflow: hidden;
}
.contador-visitas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(230,57,70,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(247,127,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.contador-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.contador-icono {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
    flex-shrink: 0;
}
.contador-titulo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 5px;
}
.contador-subtitulo {
    color: var(--gray);
    font-size: 1rem;
    letter-spacing: 1px;
}
.contador-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}
.contador-item {
    background: #111;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.contador-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.contador-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(230,57,70,0.2);
}
.contador-item:hover::before { transform: scaleX(1); }
.contador-numero {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(230,57,70,0.3);
}
.contador-item.hoy .contador-numero { color: #f77f00; text-shadow: 0 0 20px rgba(247,127,0,0.3); }
.contador-item.mes .contador-numero { color: #457b9d; text-shadow: 0 0 20px rgba(69,123,157,0.3); }
.contador-item.unicos .contador-numero { color: #4ade80; text-shadow: 0 0 20px rgba(74,222,128,0.3); }
.contador-etiqueta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.contador-etiqueta i { color: var(--primary); font-size: 1rem; }
.contador-item.hoy .contador-etiqueta i { color: #f77f00; }
.contador-item.mes .contador-etiqueta i { color: #457b9d; }
.contador-item.unicos .contador-etiqueta i { color: #4ade80; }
.contador-barra {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}
.contador-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    transition: width 2s ease;
    box-shadow: 0 0 10px rgba(230,57,70,0.5);
}
.contador-item.hoy .contador-fill { background: linear-gradient(90deg, #f77f00, #ff9f40); box-shadow: 0 0 10px rgba(247,127,0,0.5); }
.contador-item.mes .contador-fill { background: linear-gradient(90deg, #457b9d, #6ba3c7); box-shadow: 0 0 10px rgba(69,123,157,0.5); }
.contador-item.unicos .contador-fill { background: linear-gradient(90deg, #4ade80, #86efac); box-shadow: 0 0 10px rgba(74,222,128,0.5); }
.contador-footer-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    background: rgba(69,123,157,0.1);
    border-left: 3px solid var(--gray);
    border-radius: 5px;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.contador-footer-info i { color: var(--primary); }

/* ============================================
   CAPTCHA
   ============================================ */
.captcha-container {
    background: rgba(230,57,70,0.05);
    border: 2px solid rgba(230,57,70,0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}
.captcha-container label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e63946 !important;
    font-weight: 700;
    margin-bottom: 15px;
}
.captcha-container label i { font-size: 1.2rem; }
.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: #0a0a0a;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #333;
}
.captcha-img {
    border-radius: 5px;
    border: 2px solid #e63946;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 100%;
    height: auto;
}
.captcha-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(230,57,70,0.4);
}
.captcha-refresh {
    background: linear-gradient(135deg, #e63946, #a4161a);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.captcha-refresh:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(230,57,70,0.5);
}
.captcha-refresh:active { transform: rotate(360deg); }
.captcha-input { position: relative; }
.captcha-input input {
    width: 100%;
    padding: 14px 18px;
    background: #0a0a0a;
    border: 2px solid #333;
    border-radius: 5px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s;
}
.captcha-input input:focus {
    outline: none;
    border-color: #e63946;
    box-shadow: 0 0 15px rgba(230,57,70,0.3);
    letter-spacing: 8px;
}
.captcha-input small {
    display: block;
    color: #457b9d;
    font-size: 0.85rem;
    margin-top: 8px;
    text-align: center;
}
.form-privacy {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.form-privacy i { color: #4ade80; font-size: 1.1rem; }

/* ============================================
   TESTIMONIOS FORM
   ============================================ */
.testimonio-form-container {
    max-width: 850px;
    margin: 70px auto 0;
    background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(230,57,70,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.testimonio-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.testimonio-form-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247,127,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.testimonio-form-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(230,57,70,0.15);
    position: relative;
    z-index: 1;
}
.testimonio-form-icono {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e63946 0%, #f77f00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(230,57,70,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    transition: transform 0.4s ease;
}
.testimonio-form-icono::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #e63946, #f77f00, #e63946);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}
.testimonio-form-header:hover .testimonio-form-icono {
    transform: rotate(-5deg) scale(1.05);
}
.testimonio-form-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 8px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff 0%, #f77f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testimonio-form-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    margin: 0;
}
.testimonio-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
}
.testimonio-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.testimonio-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.testimonio-form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f77f00;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.testimonio-form-group label i {
    font-size: 1rem;
    color: #e63946;
    width: 20px;
    text-align: center;
}
.testimonio-form-group input,
.testimonio-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10,10,10,0.8);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(10px);
}
.testimonio-form-group input:hover,
.testimonio-form-group textarea:hover {
    border-color: rgba(230,57,70,0.3);
    background: rgba(15,15,15,0.9);
}
.testimonio-form-group input:focus,
.testimonio-form-group textarea:focus {
    outline: none;
    border-color: #e63946;
    background: rgba(20,20,20,1);
    box-shadow: 0 0 0 4px rgba(230,57,70,0.1), 0 10px 30px rgba(230,57,70,0.15);
    transform: translateY(-1px);
}
.testimonio-form-group input::placeholder,
.testimonio-form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
    font-style: italic;
}
.testimonio-form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}
.testimonio-form-group small {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
}

/* Foto upload */
.foto-upload-container { position: relative; margin-top: 5px; }
.foto-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(230,57,70,0.05) 0%, rgba(247,127,0,0.05) 100%);
    border: 2px dashed rgba(230,57,70,0.4);
    border-radius: 12px;
    color: #e63946;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.foto-upload-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.1), rgba(247,127,0,0.1));
    opacity: 0;
    transition: opacity 0.4s;
}
.foto-upload-btn:hover {
    border-color: #e63946;
    border-style: solid;
    background: linear-gradient(135deg, rgba(230,57,70,0.15) 0%, rgba(247,127,0,0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.2);
}
.foto-upload-btn:hover::before { opacity: 1; }
.foto-upload-btn i { font-size: 1.3rem; transition: transform 0.4s; }
.foto-upload-btn:hover i { transform: translateY(-3px) scale(1.1); }
.foto-upload-container input[type="file"] { display: none; }
.foto-preview {
    position: relative;
    margin-top: 20px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.foto-preview img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(#111, #111) padding-box, linear-gradient(135deg, #e63946, #f77f00) border-box;
    box-shadow: 0 15px 40px rgba(230,57,70,0.4), 0 0 0 1px rgba(255,255,255,0.05);
    transition: transform 0.4s;
}
.foto-preview img:hover { transform: scale(1.05) rotate(2deg); }
.foto-remove {
    position: absolute;
    top: 0;
    right: calc(50% - 90px);
    background: linear-gradient(135deg, #a4161a, #e63946);
    color: white;
    border: 2px solid #0a0a0a;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(164,22,26,0.4);
}
.foto-remove:hover {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(230,57,70,0.6);
}

/* Botón enviar */
.testimonio-form .btn-primary {
    margin-top: 15px;
    padding: 18px 40px !important;
    font-size: 1rem !important;
    background: linear-gradient(135deg, #e63946 0%, #a4161a 50%, #e63946 100%) !important;
    background-size: 200% auto !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(230,57,70,0.3), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1) !important;
    position: relative;
    overflow: hidden;
}
.testimonio-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}
.testimonio-form .btn-primary:hover {
    background-position: right center !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(230,57,70,0.5), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}
.testimonio-form .btn-primary:hover::before { left: 100%; }
.testimonio-form .btn-primary i { transition: transform 0.3s; }
.testimonio-form .btn-primary:hover i { transform: translateX(5px) rotate(-10deg); }

/* Botón mostrar testimonio */
.btn-mostrar-testimonio-container {
    max-width: 750px;
    margin: 70px auto 0;
    text-align: center;
    padding: 0 20px;
}
.btn-mostrar-testimonio {
    width: 100%;
    padding: 28px 35px;
    background: linear-gradient(135deg, rgba(230,57,70,0.12) 0%, rgba(247,127,0,0.12) 100%);
    border: 2px solid rgba(230,57,70,0.3);
    border-radius: 18px;
    color: var(--light);
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(230,57,70,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-mostrar-testimonio::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.7s ease;
}
.btn-mostrar-testimonio:hover {
    background: linear-gradient(135deg, rgba(230,57,70,0.2) 0%, rgba(247,127,0,0.2) 100%);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(230,57,70,0.25), 0 5px 15px rgba(247,127,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-mostrar-testimonio:hover::before { left: 100%; }
.btn-icono-wrapper {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #e63946 0%, #f77f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230,57,70,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.btn-icono-wrapper i {
    font-size: 1.6rem;
    color: white;
    transition: transform 0.4s;
}
.btn-mostrar-testimonio:hover .btn-icono-wrapper {
    transform: rotate(-12deg) scale(1.08);
    box-shadow: 0 6px 18px rgba(230,57,70,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-mostrar-testimonio:hover .btn-icono-wrapper i { transform: scale(1.1); }

.btn-contenido {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.btn-texto {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1.3;
    letter-spacing: 0.5px;
}
.btn-subtexto-inline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}
.btn-icono-flecha {
    font-size: 1.4rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    flex-shrink: 0;
}
.btn-icono-flecha.rotada { transform: rotate(180deg); color: #ff6b6b; }
.btn-mostrar-testimonio:hover .btn-icono-flecha { transform: translateY(-3px); color: #f77f00; }
.btn-mostrar-testimonio.activo {
    background: linear-gradient(135deg, rgba(230,57,70,0.25) 0%, rgba(164,22,26,0.25) 100%);
    border-color: var(--primary);
}
.btn-mostrar-testimonio.activo .btn-icono-wrapper {
    background: linear-gradient(135deg, #a4161a 0%, #e63946 100%);
}
.btn-mostrar-testimonio.activo .btn-texto { color: #ff6b6b; }
.testimonio-form-container.oculto {
    display: none !important;
    opacity: 0;
    transform: translateY(-30px);
}
.testimonio-form-container.mostrar {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: aparecerFormTestimonio 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes aparecerFormTestimonio {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Contacto oculto */
.contact.oculto {
    display: none !important;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}
.contact.oculto.mostrar {
    display: grid !important;
    opacity: 1;
    transform: translateY(0);
    animation: aparecerContacto 0.8s ease forwards;
}
@keyframes aparecerContacto {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Botón contacto flotante */
.btn-contacto-flotante {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e63946, #a4161a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(230,57,70,0.5);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    border: none;
    animation: pulsoContacto 2s ease-in-out infinite;
}
.btn-contacto-flotante:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(230,57,70,0.7);
    animation: none;
}
.btn-contacto-flotante.activo {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    transform: rotate(180deg);
}
@keyframes pulsoContacto {
    0%, 100% { box-shadow: 0 10px 30px rgba(230,57,70,0.5); }
    50% { box-shadow: 0 10px 50px rgba(230,57,70,0.8); }
}
.btn-contacto-flotante::before {
    content: 'Contactar';
    position: absolute;
    right: 70px;
    background: #111;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-family: 'Rajdhani', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid rgba(230,57,70,0.3);
}
.btn-contacto-flotante:hover::before { opacity: 1; }
.btn-contacto-flotante.activo::before { content: 'Cerrar'; }

/* ============================================
   FOOTER - ZONAS Y CIRCUITOS
   ============================================ */
.footer-zonas-servicio {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-zonas-servicio h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-zonas-servicio p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}
.footer-zonas-servicio strong { color: var(--light); }

.footer-circuitos {
    width: 100%;
    padding: 30px 20px;
    margin: 20px 0;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.footer-circuitos h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-circuitos h4 i { font-size: 1.5rem; }
.circuitos-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.circuito-col h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}
.circuito-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.circuito-col ul li { margin-bottom: 8px; }
.circuito-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.circuito-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}
.circuito-col ul li a::before {
    content: "??";
    font-size: 0.8rem;
}

.titulo-circuitos {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}
.lista-circuitos {
    list-style: none;
    padding: 0;
}
.lista-circuitos li { margin-bottom: 8px; }
.lista-circuitos a {
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
}
.lista-circuitos a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .team-grid {
        max-width: 1400px !important;
    }
}

@media (max-width: 1024px) {
    section { padding: 80px 30px; }
    .hero-title { font-size: 3.5rem; }
    .services-grid,
    .gallery-grid,
    .circuits-grid,
    .testimonials-grid,
    .noticias-grid-publico {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        max-width: 1100px !important;
    }
    .about, .contact { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contador-grid { grid-template-columns: repeat(2, 1fr); }
    .contador-numero { font-size: 2.5rem; }
    .stats { padding: 20px 0; }
    .stat-number { font-size: 1.5rem; }
    .stat-icon { font-size: 1.3rem; }
    .stat-label { font-size: .7rem; }
    .team-grid { padding: 0 25px !important; gap: 20px !important; }
    .team-card { padding: 35px 25px !important; }
    .team-avatar { width: 140px !important; height: 140px !important; font-size: 3rem !important; }
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        max-width: 800px !important;
        gap: 25px !important;
    }
    .team { padding: 80px 30px !important; }
    .team-card { max-width: 400px !important; padding: 40px 30px !important; }
    .team-avatar { width: 130px !important; height: 130px !important; font-size: 2.8rem !important; }
}

@media (max-width: 768px) {
    header { padding: 15px 20px; }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5,5,5,.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    nav ul.active { display: flex; }
    .menu-toggle { display: block; }
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        filter: drop-shadow(0 0 15px rgba(230,57,70,0.5));
    }
    .hero-subtitle { font-size: 1rem; letter-spacing: 2px; }
    .section-title { font-size: 2rem; }
    .services-grid,
    .gallery-grid,
    .circuits-grid,
    .testimonials-grid,
    .noticias-grid-publico {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        padding: 0 20px !important;
        gap: 20px !important;
    }
    .hero-buttons { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .stats { flex-wrap: wrap; padding: 15px 10px; }
    .stat-item { flex: 1 1 30%; min-width: 100px; }
    .stat-number { font-size: 1.3rem; }
    .stat-icon { font-size: 1.1rem; }
    .stat-label { font-size: .6rem; }
    .social-links { justify-content: center; gap: 12px; }
    .social-links a { width: 45px; height: 45px; font-size: 1.2rem; }
    .contador-visitas { padding: 60px 20px; }
    .contador-grid { grid-template-columns: 1fr; }
    .contador-header { flex-direction: column; text-align: center; }
    .contador-titulo { font-size: 1.5rem; }
    .contador-numero { font-size: 2.2rem; }
    .contador-footer-info { flex-direction: column; text-align: center; }
    .captcha-box { flex-direction: column; }
    .captcha-img { max-width: 100%; }
    .captcha-refresh { width: 100%; border-radius: 5px; }
    .captcha-input input { font-size: 1rem; letter-spacing: 3px; }
    .testimonio-form-container {
        padding: 30px 25px;
        margin: 50px 15px 0;
        border-radius: 15px;
    }
    .testimonio-form-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-bottom: 25px;
    }
    .testimonio-form-header h3 { font-size: 1.4rem; }
    .testimonio-form-header p { font-size: 0.95rem; }
    .testimonio-form-icono { width: 70px; height: 70px; font-size: 1.8rem; }
    .testimonio-form-row { grid-template-columns: 1fr; gap: 20px; }
    .testimonio-form-group input,
    .testimonio-form-group textarea { padding: 14px 16px; font-size: 0.95rem; }
    .foto-preview img { width: 130px; height: 130px; }
    .foto-remove { right: calc(50% - 75px); }
    .btn-mostrar-testimonio {
        padding: 22px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .btn-contenido { text-align: center; align-items: center; }
    .btn-texto { font-size: 1.05rem; }
    .btn-subtexto-inline { font-size: 0.85rem; }
    .btn-icono-wrapper { width: 52px; height: 52px; }
    .btn-icono-wrapper i { font-size: 1.4rem; }
    .btn-contacto-flotante { bottom: 90px; right: 20px; width: 55px; height: 55px; font-size: 1.3rem; }
    .btn-contacto-flotante::before { display: none; }
    .team { padding: 70px 20px !important; }
    .team .section-header { padding: 0 20px !important; margin-bottom: 40px !important; }
    .team-card {
        padding: 30px 20px !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    .team-avatar {
        width: 120px !important;
        height: 120px !important;
        flex-shrink: 0 !important;
        font-size: 2.5rem !important;
    }
    .team-card h4 { font-size: 1.2rem !important; }
    .team-card p {
        font-size: 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .circuitos-links { grid-template-columns: 1fr; gap: 20px; }
    .footer-circuitos { padding: 20px 15px; }
    .footer-zonas-servicio { margin-top: 30px; padding-top: 20px; }
    .footer-zonas-servicio h4 { font-size: 0.9rem; }
    .footer-zonas-servicio p { font-size: 0.85rem; line-height: 1.6; }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        gap: 20px !important;
    }
    .team { padding: 60px 20px !important; }
    .team-card { padding: 30px 20px !important; max-width: 100% !important; }
    .team-avatar { width: 120px !important; height: 120px !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; letter-spacing: 1px; }
    .stats { padding: 12px 5px; }
    .stat-item { flex: 1 1 45%; min-width: 120px; }
    .stat-number { font-size: 1.1rem; }
    .stat-icon { font-size: .95rem; }
    .stat-label { font-size: .5rem; }
    .social-links a { width: 42px; height: 42px; font-size: 1.1rem; }
    .testimonio-form-container { padding: 25px 20px; }
    .testimonio-form-header h3 { font-size: 1.2rem; }
    .testimonio-form-group label { font-size: 0.8rem; }
    .btn-mostrar-testimonio { padding: 20px 18px; }
    .btn-texto { font-size: 0.95rem; }
    .team { padding: 50px 0 !important; }
    .team .section-header { padding: 0 15px !important; margin-bottom: 30px !important; }
    .team .section-title { font-size: 1.7rem !important; }
    .team-grid {
        padding: 0 15px !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: calc(100% - 30px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .team-card {
        padding: 25px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    .team-avatar {
        width: 110px !important;
        height: 110px !important;
        margin-bottom: 20px !important;
        font-size: 2.3rem !important;
    }
    .team-avatar img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .team-card h4 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        word-wrap: break-word !important;
    }
    .team-card .role {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
    }
    .team-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

@media (max-width: 380px) {
    .team .section-header { padding: 0 10px !important; }
    .team-grid {
        padding: 0 10px !important;
        max-width: calc(100% - 20px) !important;
    }
    .team-card { padding: 20px 15px !important; }
    .team-avatar { width: 90px !important; height: 90px !important; font-size: 2rem !important; }
    .team-card h4 { font-size: 1rem !important; }
    .team-card p { font-size: 0.9rem !important; }
}

/* Landscape */
@media (min-width: 769px) and (max-width: 900px) and (orientation: landscape) {
    header { padding: 10px 20px !important; }
    header.scrolled { padding: 8px 20px !important; }
    .logo-icon, .logo-imagen-header { width: 40px !important; height: 40px !important; }
    .logo-text { font-size: 0.85rem !important; letter-spacing: 0.5px !important; }
    nav ul { gap: 15px !important; }
    nav ul li a { font-size: 0.8rem !important; letter-spacing: 0.5px !important; }
    section { padding: 60px 30px !important; }
    .hero { height: 90vh !important; }
    .hero-title { font-size: 3rem !important; }
    .hero-subtitle { font-size: 1.1rem !important; }
    .hero-desc { font-size: 1rem !important; }
    .hero-buttons { gap: 10px !important; }
    .btn { padding: 12px 25px !important; font-size: 0.85rem !important; letter-spacing: 1px !important; }
    .stats { padding: 15px 0 !important; }
    .stat-number { font-size: 1.8rem !important; }
    .stat-label { font-size: 0.75rem !important; }
    .services-grid, .gallery-grid, .circuits-grid, .testimonials-grid, .noticias-grid-publico {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .team-grid { grid-template-columns: repeat(2, 1fr) !important; padding: 0 20px !important; }
    .about, .contact { grid-template-columns: 1fr !important; gap: 30px !important; }
    footer { padding: 40px 30px 20px !important; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px !important; }
}

@media (max-width: 768px) and (orientation: landscape) {
    nav ul {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(5,5,5,.98) !important;
        flex-direction: column !important;
        padding: 20px !important;
        gap: 15px !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        z-index: 999 !important;
    }
    nav ul.active { display: flex !important; }
    .menu-toggle { display: block !important; }
    header { padding: 10px 20px !important; }
    .hero { height: 100vh !important; min-height: 500px !important; }
    .hero-title { font-size: 2.5rem !important; }
    section { padding: 50px 20px !important; }
    .services-grid, .gallery-grid, .circuits-grid, .testimonials-grid, .noticias-grid-publico {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .team-grid { grid-template-columns: repeat(2, 1fr) !important; padding: 0 15px !important; }
}

@media (orientation: landscape) {
    html { overflow-y: auto !important; height: auto !important; }
    body { overflow-x: hidden !important; overflow-y: auto !important; min-height: 100vh !important; }
    header { position: fixed !important; top: 0 !important; width: 100% !important; z-index: 1000 !important; }
    body { padding-top: 80px !important; }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    nav ul { gap: 12px !important; }
    nav ul li a { font-size: 0.75rem !important; letter-spacing: 0.5px !important; white-space: nowrap !important; }
    header { padding: 10px 15px !important; }
    .logo { gap: 8px !important; }
    .logo-icon, .logo-imagen-header { width: 38px !important; height: 38px !important; }
    .logo-text { font-size: 0.8rem !important; }
}