/* ============================================
   FLORESTA MUDANZAS — Stylesheet
   ============================================ */

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
     --black: #0a0a0a;
     --black-soft: #141414;
     --black-card: #1a1a1a;
     --red: #e30613;
     --red-bright: #ff1a2b;
     --red-dark: #b30510;
     --white: #ffffff;
     --gray: #8a8a8a;
     --gray-light: #c4c4c4;
     --gray-dark: #2a2a2a;
     --border: rgba(255, 255, 255, 0.08);
   
     --font-display: 'Anton', 'Archivo Black', sans-serif;
     --font-body: 'DM Sans', sans-serif;
   
     --max-width: 1320px;
     --section-pad: clamp(60px, 8vw, 120px);
   }
   
   html { scroll-behavior: smooth; }
   
   body {
     font-family: var(--font-body);
     background: var(--black);
     color: var(--white);
     line-height: 1.6;
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
   }
   
   img, video { max-width: 100%; display: block; }
   a { color: inherit; text-decoration: none; }
   button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
   
   ::selection { background: var(--red); color: var(--white); }
   
   ::-webkit-scrollbar { width: 10px; }
   ::-webkit-scrollbar-track { background: var(--black); }
   ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 0; }
   
   .container {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 24px;
   }
   
   .eyebrow {
     font-size: 12px;
     letter-spacing: 0.3em;
     text-transform: uppercase;
     color: var(--red);
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 12px;
   }
   .eyebrow::before {
     content: '';
     width: 32px;
     height: 1px;
     background: var(--red);
   }
   
   .section-title {
     font-family: var(--font-display);
     font-size: clamp(38px, 6vw, 72px);
     line-height: 0.95;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     margin-top: 16px;
   }
   .section-title .accent { color: var(--red); }
   
   .section-subtitle {
     font-size: clamp(15px, 1.6vw, 18px);
     color: var(--gray-light);
     max-width: 600px;
     margin-top: 20px;
     line-height: 1.7;
   }
   
   body::before {
     content: '';
     position: fixed;
     inset: 0;
     pointer-events: none;
     z-index: 9999;
     opacity: 0.04;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
   }
   
   /* HEADER */
   .header {
     position: fixed;
     top: 0; left: 0; right: 0;
     z-index: 100;
     padding: 18px 0;
     background: rgba(10, 10, 10, 0.85);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border-bottom: 1px solid var(--border);
     transition: padding 0.3s ease;
   }
   .header.scrolled { padding: 12px 0; }
   
   .header-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
   }
   
   .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-family: var(--font-display);
     font-size: 22px;
     letter-spacing: 0.02em;
     text-transform: uppercase;
   }
   
   .logo-img {
     width: 48px;
     height: 48px;
     object-fit: contain;
     display: block;
   }
   
   .logo-text span { color: var(--red); }
   
   .nav {
     display: flex;
     align-items: center;
     gap: 36px;
   }
   
   .nav-item {
     position: relative;
   }
   
   .nav-item.has-dropdown > .nav-link {
     display: inline-flex;
     align-items: center;
     gap: 6px;
   }
   .nav-arrow {
     transition: transform 0.3s;
   }
   .nav-item.has-dropdown:hover .nav-arrow {
     transform: rotate(180deg);
   }
   
   .nav-dropdown {
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%) translateY(10px);
     background: var(--black-card);
     border: 1px solid var(--border);
     border-top: 2px solid var(--red);
     min-width: 220px;
     padding: 12px 0;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
     z-index: 100;
     box-shadow: 0 20px 40px rgba(0,0,0,0.5);
   }
   .nav-item.has-dropdown:hover .nav-dropdown {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(0);
   }
   
   /* Puente invisible entre el link y el dropdown para que no se cierre al pasar el mouse */
   .nav-item.has-dropdown::after {
     content: '';
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     height: 16px;
   }
   
   .nav-dropdown a {
     display: block;
     padding: 12px 22px;
     font-size: 13px;
     font-weight: 500;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     color: var(--gray-light);
     transition: all 0.2s;
     border-left: 3px solid transparent;
   }
   .nav-dropdown a:hover {
     color: var(--white);
     background: rgba(227,6,19,0.1);
     border-left-color: var(--red);
   }
   
   .nav-link {
     font-size: 14px;
     font-weight: 500;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     position: relative;
     padding: 6px 0;
     transition: color 0.2s;
   }
   .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0; left: 0;
     width: 0; height: 2px;
     background: var(--red);
     transition: width 0.3s;
   }
   .nav-link:hover,
   .nav-link.active { color: var(--red); }
   .nav-link:hover::after,
   .nav-link.active::after { width: 100%; }
   
   .header-cta {
     background: var(--red);
     color: var(--white);
     padding: 12px 22px;
     font-weight: 700;
     font-size: 14px;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     position: relative;
     overflow: hidden;
     transition: transform 0.2s;
   }
   .header-cta::before {
     content: '';
     position: absolute;
     inset: 0;
     background: var(--black);
     transform: translateX(-100%);
     transition: transform 0.3s ease;
     z-index: 0;
   }
   .header-cta:hover::before { transform: translateX(0); }
   .header-cta span { position: relative; z-index: 1; }
   .header-cta:hover { transform: translateY(-2px); }
   .header-cta svg { position: relative; z-index: 1; }
   
   .mobile-menu {
     display: none;
   }
   
   .mobile-toggle {
     display: none;
     width: 40px;
     height: 40px;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 5px;
   }
   .mobile-toggle span {
     display: block;
     width: 24px;
     height: 2px;
     background: var(--white);
     transition: 0.3s;
   }
   .mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
   .mobile-toggle.active span:nth-child(2) { opacity: 0; }
   .mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   
   /* HERO */
   .hero {
     min-height: 100vh;
     position: relative;
     display: flex;
     align-items: center;
     padding: 140px 0 80px;
     overflow: hidden;
     background: var(--black);
   }
   
   .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image:
       linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
       linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
     background-size: 80px 80px;
     pointer-events: none;
   }
   
   .hero-bg-text {
     position: absolute;
     bottom: -40px;
     left: -20px;
     font-family: var(--font-display);
     font-size: clamp(120px, 25vw, 320px);
     line-height: 0.8;
     color: rgba(255,255,255,0.025);
     text-transform: uppercase;
     letter-spacing: -0.04em;
     pointer-events: none;
     white-space: nowrap;
   }
   
   .hero-video {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
     opacity: 0.45;
   }
   
   .hero-video-overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
     background:
       radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.25) 0%, transparent 50%),
       radial-gradient(ellipse at bottom left, rgba(227, 6, 19, 0.1) 0%, transparent 50%),
       linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%);
     pointer-events: none;
   }
   
   .hero-inner {
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 900px;
     margin: 0 auto;
     text-align: center;
   }
   
   .hero-content {
     max-width: 720px;
     margin: 0 auto;
   }
   
   .hero-tag, .hero-ctas {
     justify-content: center;
   }
   
   .hero-ctas { display: flex; }
   
   .hero-tag {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 8px 16px;
     border: 1px solid var(--red);
     font-size: 12px;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--red);
     font-weight: 600;
     margin-bottom: 28px;
     animation: fadeUp 0.8s ease 0.1s both;
   }
   .hero-tag .dot {
     width: 8px; height: 8px;
     background: var(--red);
     border-radius: 50%;
     animation: pulse 2s infinite;
   }
   
   @keyframes pulse {
     0%, 100% { opacity: 1; transform: scale(1); }
     50% { opacity: 0.5; transform: scale(1.3); }
   }
   
   .hero h1 {
     font-family: var(--font-display);
     font-size: clamp(48px, 9vw, 128px);
     line-height: 0.88;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     margin-bottom: 32px;
   }
   .hero h1 .word {
     display: inline-block;
     animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
   }
   .hero h1 .word:nth-child(1) { animation-delay: 0.2s; }
   .hero h1 .word:nth-child(2) { animation-delay: 0.35s; }
   .hero h1 .word:nth-child(3) { animation-delay: 0.5s; color: var(--red); }
   
   @keyframes fadeUp {
     from { opacity: 0; transform: translateY(40px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   .hero-desc {
     font-size: clamp(16px, 1.5vw, 19px);
     color: var(--gray-light);
     line-height: 1.6;
     margin-bottom: 40px;
     max-width: 560px;
     animation: fadeUp 1s ease 0.8s both;
   }
   
   .hero-ctas {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     animation: fadeUp 1s ease 0.95s both;
   }
   
   .btn {
     padding: 18px 32px;
     font-weight: 700;
     font-size: 14px;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     position: relative;
     overflow: hidden;
     transition: transform 0.3s;
   }
   
   .btn-primary {
     background: var(--red);
     color: var(--white);
   }
   .btn-primary::before {
     content: '';
     position: absolute;
     inset: 0;
     background: var(--white);
     transform: translateY(100%);
     transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
   }
   .btn-primary:hover::before { transform: translateY(0); }
   .btn-primary:hover { color: var(--red); }
   .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
   
   .btn-outline {
     background: transparent;
     color: var(--white);
     border: 2px solid var(--white);
   }
   .btn-outline::before {
     content: '';
     position: absolute;
     inset: 0;
     background: var(--white);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
   }
   .btn-outline:hover::before { transform: scaleX(1); }
   .btn-outline:hover { color: var(--black); }
   .btn-outline span, .btn-outline svg { position: relative; z-index: 1; }
   
   .btn svg { width: 18px; height: 18px; }
   
   /* PAGE HERO */
   .page-hero {
     padding: 180px 0 100px;
     position: relative;
     overflow: hidden;
     background:
       radial-gradient(ellipse at top, rgba(227, 6, 19, 0.18) 0%, transparent 60%),
       var(--black);
   }
   
   .page-hero-image {
     background-size: cover !important;
     background-position: center !important;
   }
   .page-hero-image::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.9));
     z-index: 0;
   }
   .page-hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image:
       linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
       linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
     background-size: 80px 80px;
     pointer-events: none;
   }
   
   .page-hero-bg-text {
     position: absolute;
     top: 50%; left: 50%;
     transform: translate(-50%, -50%);
     font-family: var(--font-display);
     font-size: clamp(140px, 22vw, 280px);
     line-height: 0.8;
     color: rgba(255,255,255,0.025);
     text-transform: uppercase;
     letter-spacing: -0.04em;
     pointer-events: none;
     white-space: nowrap;
     z-index: 0;
   }
   
   .page-hero-inner {
     position: relative;
     z-index: 2;
     text-align: center;
   }
   
   .breadcrumbs {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 12px;
     margin-bottom: 24px;
     font-size: 12px;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--gray);
   }
   .breadcrumbs a { color: var(--gray); transition: color 0.2s; }
   .breadcrumbs a:hover { color: var(--red); }
   .breadcrumbs .sep { color: var(--red); }
   .breadcrumbs .current { color: var(--white); }
   
   .page-hero h1 {
     font-family: var(--font-display);
     font-size: clamp(48px, 8vw, 110px);
     line-height: 0.9;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     margin-bottom: 24px;
   }
   .page-hero h1 .accent { color: var(--red); }
   
   .page-hero p {
     font-size: clamp(16px, 1.6vw, 19px);
     color: var(--gray-light);
     max-width: 640px;
     margin: 0 auto;
     line-height: 1.7;
   }
   
   /* MARQUEE */
   .marquee {
     background: var(--red);
     overflow: hidden;
     padding: 22px 0;
     border-top: 1px solid rgba(0,0,0,0.2);
     border-bottom: 1px solid rgba(0,0,0,0.2);
   }
   
   .marquee-track {
     display: flex;
     gap: 60px;
     animation: scroll 30s linear infinite;
     white-space: nowrap;
   }
   
   .marquee-item {
     font-family: var(--font-display);
     font-size: clamp(22px, 3vw, 36px);
     text-transform: uppercase;
     letter-spacing: 0.03em;
     display: inline-flex;
     align-items: center;
     gap: 60px;
   }
   .marquee-item .star {
     display: inline-block;
     width: 12px; height: 12px;
     background: var(--black);
     transform: rotate(45deg);
     flex-shrink: 0;
   }
   
   @keyframes scroll {
     from { transform: translateX(0); }
     to { transform: translateX(-50%); }
   }
   
   section { padding: var(--section-pad) 0; position: relative; }
   
   .section-head {
     margin-bottom: 60px;
     max-width: 800px;
   }
   .section-head.center {
     margin-left: auto;
     margin-right: auto;
     text-align: center;
   }
   .section-head.center .eyebrow { justify-content: center; }
   .section-head.center .section-subtitle { margin-left: auto; margin-right: auto; }
   
   /* ABOUT */
   .about { background: var(--black-soft); }
   
   .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
   }
   
   .about-img {
     height: 540px;
     background: var(--gray-dark);
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .about-img-badge {
     position: absolute;
     bottom: 24px; left: 24px;
     background: var(--red);
     padding: 14px 20px;
     font-family: var(--font-display);
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     z-index: 2;
   }
   
   .about-content h2 {
     font-family: var(--font-display);
     font-size: clamp(36px, 5vw, 64px);
     line-height: 0.95;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     margin: 16px 0 28px;
   }
   
   .about-content p {
     color: var(--gray-light);
     line-height: 1.8;
     margin-bottom: 18px;
     font-size: 16px;
   }
   
   .about-pillars {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-top: 36px;
   }
   
   .pillar {
     padding: 20px;
     background: var(--black-card);
     border-left: 3px solid var(--red);
   }
   .pillar-title {
     font-family: var(--font-display);
     font-size: 18px;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-bottom: 6px;
   }
   .pillar-text {
     font-size: 13px;
     color: var(--gray);
     line-height: 1.5;
   }
   
   /* SERVICES */
   .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 0;
     border-top: 1px solid var(--border);
     border-left: 1px solid var(--border);
   }
   
   .service-card {
     padding: 48px 36px;
     border-right: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
     background: var(--black);
     position: relative;
     overflow: hidden;
     transition: background 0.4s;
   }
   
   .service-card::before {
     content: '';
     position: absolute;
     top: 0; left: 0;
     width: 4px;
     height: 0;
     background: var(--red);
     transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
   }
   .service-card:hover::before { height: 100%; }
   .service-card:hover { background: var(--black-soft); }
   .service-card > * { position: relative; z-index: 1; }
   
   .service-num {
     font-family: var(--font-display);
     font-size: 14px;
     color: var(--red);
     letter-spacing: 0.2em;
     margin-bottom: 24px;
   }
   
   .service-header {
     display: flex;
     align-items: center;
     gap: 18px;
     margin-bottom: 20px;
   }
   
   .service-icon {
     width: 48px;
     height: 48px;
     color: var(--red);
     flex-shrink: 0;
     transition: transform 0.3s;
   }
   .service-card:hover .service-icon { transform: scale(1.1); }
   
   .service-title {
     font-family: var(--font-display);
     font-size: 24px;
     text-transform: uppercase;
     letter-spacing: 0.02em;
     line-height: 1;
     margin: 0;
   }
   
   .service-desc {
     color: var(--gray-light);
     font-size: 15px;
     line-height: 1.6;
     margin-bottom: 24px;
   }
   
   .service-features {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 8px;
   }
   .service-features li {
     font-size: 13px;
     color: var(--gray);
     display: flex;
     align-items: center;
     gap: 8px;
   }
   .service-features li::before {
     content: '→';
     color: var(--red);
     font-weight: 700;
   }
   
   /* FLEET */
   .fleet { background: var(--black-soft); }
   
   .fleet-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 40px;
   }
   
   .fleet-card {
     background: var(--black-card);
     border: 1px solid var(--border);
     overflow: hidden;
     transition: transform 0.4s, border-color 0.3s;
   }
   .fleet-card:hover {
     transform: translateY(-8px);
     border-color: var(--red);
   }
   
   .fleet-img {
     height: 240px;
     background: var(--gray-dark);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--gray);
     font-size: 11px;
     letter-spacing: 0.1em;
     position: relative;
   }
   
   .fleet-body { padding: 28px; }
   .fleet-name {
     font-family: var(--font-display);
     font-size: 22px;
     text-transform: uppercase;
     letter-spacing: 0.02em;
     margin-bottom: 8px;
   }
   .fleet-desc {
     font-size: 14px;
     color: var(--gray);
     line-height: 1.6;
     margin-bottom: 16px;
   }
   
   .fleet-specs {
     display: flex;
     flex-direction: column;
     gap: 10px;
     border-top: 1px solid var(--border);
     padding-top: 16px;
   }
   .fleet-spec {
     display: flex;
     justify-content: space-between;
     font-size: 13px;
   }
   .fleet-spec-label {
     color: var(--gray);
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-size: 11px;
   }
   .fleet-spec-value {
     color: var(--white);
     font-weight: 700;
   }
   
   /* PROCESS */
   .process-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
     margin-top: 60px;
     position: relative;
   }
   
   .process-grid::before {
     content: '';
     position: absolute;
     top: 36px;
     left: 0; right: 0;
     height: 1px;
     background: var(--border);
     z-index: 0;
   }
   
   .process-step {
     text-align: center;
     position: relative;
     z-index: 1;
     padding: 0 16px;
   }
   
   .process-num {
     width: 72px;
     height: 72px;
     background: var(--black);
     border: 1px solid var(--red);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 24px;
     font-family: var(--font-display);
     font-size: 28px;
     color: var(--red);
     position: relative;
   }
   .process-num::after {
     content: '';
     position: absolute;
     inset: 4px;
     border: 1px solid var(--red);
     opacity: 0.3;
   }
   
   .process-title {
     font-family: var(--font-display);
     font-size: 20px;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-bottom: 12px;
   }
   
   .process-desc {
     font-size: 14px;
     color: var(--gray);
     line-height: 1.6;
     max-width: 220px;
     margin: 0 auto;
   }
   
   /* GALLERY */
   .gallery-tabs {
     display: flex;
     gap: 12px;
     margin-bottom: 40px;
     flex-wrap: wrap;
   }
   
   .gallery-tab {
     padding: 12px 24px;
     border: 1px solid var(--border);
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: var(--gray);
     transition: all 0.3s;
   }
   .gallery-tab:hover { color: var(--white); }
   .gallery-tab.active {
     background: var(--red);
     color: var(--white);
     border-color: var(--red);
   }
   
   .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
     grid-auto-rows: 240px;
   }
   
   .gallery-item {
     background: var(--black-card);
     border: 1px solid var(--border);
     position: relative;
     overflow: hidden;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--gray);
     font-size: 11px;
     letter-spacing: 0.1em;
     transition: transform 0.4s;
   }
   
   .gallery-item.big {
     grid-column: span 2;
     grid-row: span 2;
   }
   
   .gallery-item:hover { transform: scale(0.97); }
   .gallery-item::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(227, 6, 19, 0.6), transparent 60%);
     opacity: 0;
     transition: opacity 0.4s;
   }
   .gallery-item:hover::after { opacity: 1; }
   
   .gallery-item video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
   }
   
   .gallery-item .play-icon {
     position: absolute;
     width: 64px;
     height: 64px;
     background: var(--red);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2;
   }
   .gallery-item .play-icon::before {
     content: '';
     border-left: 18px solid var(--white);
     border-top: 12px solid transparent;
     border-bottom: 12px solid transparent;
     margin-left: 4px;
   }
   
   /* REVIEWS */
   .reviews-head {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 60px;
     flex-wrap: wrap;
     gap: 30px;
   }
   
   .reviews-rating {
     text-align: right;
   }
   .reviews-rating .num {
     font-family: var(--font-display);
     font-size: 64px;
     line-height: 1;
     color: var(--red);
   }
   .reviews-rating .stars {
     font-size: 22px;
     letter-spacing: 4px;
     margin: 8px 0;
     color: #ffd700;
   }
   .reviews-rating .label {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.15em;
     color: var(--gray);
   }
   
   .reviews-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
   }
   
   .review-card {
     background: var(--black-card);
     border: 1px solid var(--border);
     padding: 32px;
     position: relative;
     transition: border-color 0.3s, transform 0.3s;
   }
   .review-card:hover {
     border-color: var(--red);
     transform: translateY(-4px);
   }
   
   .review-quote {
     position: absolute;
     top: 20px; right: 24px;
     font-family: var(--font-display);
     font-size: 80px;
     color: var(--red);
     opacity: 0.3;
     line-height: 0.7;
   }
   
   .review-stars {
     color: #ffd700;
     letter-spacing: 3px;
     font-size: 16px;
     margin-bottom: 20px;
   }
   
   .review-text {
     font-size: 15px;
     line-height: 1.7;
     color: var(--gray-light);
     margin-bottom: 24px;
   }
   
   .review-author {
     display: flex;
     align-items: center;
     gap: 14px;
     padding-top: 20px;
     border-top: 1px solid var(--border);
   }
   
   .review-avatar {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: var(--red);
     color: var(--white);
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 16px;
   }
   
   .review-name {
     font-weight: 700;
     font-size: 15px;
   }
   .review-date {
     font-size: 12px;
     color: var(--gray);
     margin-top: 2px;
   }
   
   .reviews-cta {
     text-align: center;
     margin-top: 50px;
   }
   
   /* Reviews carousel (mobile arrows) */
   .reviews-carousel {
     position: relative;
   }
   
   .reviews-arrow {
     display: none;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 44px;
     height: 44px;
     background: var(--red);
     color: var(--white);
     border-radius: 50%;
     align-items: center;
     justify-content: center;
     z-index: 5;
     box-shadow: 0 6px 20px rgba(227,6,19,0.4);
     transition: transform 0.2s, background 0.2s;
   }
   .reviews-arrow:active { transform: translateY(-50%) scale(0.92); }
   .reviews-arrow svg { width: 22px; height: 22px; }
   .reviews-arrow-prev { left: -6px; }
   .reviews-arrow-next { right: -6px; }
   
   .reviews-dots {
     display: none;
     justify-content: center;
     gap: 8px;
     margin-top: 24px;
   }
   .reviews-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--gray-dark);
     border: none;
     transition: all 0.3s;
     cursor: pointer;
   }
   .reviews-dot.active {
     background: var(--red);
     width: 24px;
     border-radius: 4px;
   }
   
   /* Zones mobile (grupos grandes) */
   .zones-mobile { display: none; }
   .zone-big {
     padding: 24px 22px;
     background: var(--black);
     border: 1px solid var(--border);
     border-left: 3px solid var(--red);
     margin-bottom: 12px;
     transition: all 0.3s;
   }
   .zone-big:hover {
     border-left-width: 6px;
     background: var(--black-card);
   }
   .zone-big-title {
     font-family: var(--font-display);
     font-size: 22px;
     text-transform: uppercase;
     letter-spacing: 0.03em;
     margin-bottom: 4px;
   }
   .zone-big-desc {
     font-size: 13px;
     color: var(--gray);
     letter-spacing: 0.05em;
   }
   
   /* COVERAGE */
   .coverage { background: var(--black-soft); }
   
   .coverage-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
   }
   
   .zones-list {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
   }
   
   .zone-item {
     padding: 14px 18px;
     background: var(--black);
     border: 1px solid var(--border);
     font-size: 14px;
     display: flex;
     align-items: center;
     gap: 12px;
     transition: all 0.3s;
     cursor: pointer;
   }
   .zone-item:hover {
     background: var(--red);
     border-color: var(--red);
     transform: translateX(4px);
   }
   .zone-item::before {
     content: '◆';
     color: var(--red);
     transition: color 0.3s;
   }
   .zone-item:hover::before { color: var(--white); }
   
   /* FAQ */
   .faq-list {
     max-width: 900px;
     margin: 0 auto;
   }
   
   .faq-item {
     border-bottom: 1px solid var(--border);
   }
   
   .faq-question {
     width: 100%;
     text-align: left;
     padding: 28px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 30px;
     font-family: var(--font-display);
     font-size: clamp(18px, 2.2vw, 26px);
     text-transform: uppercase;
     letter-spacing: 0.01em;
     color: var(--white);
     transition: color 0.3s;
   }
   .faq-question:hover { color: var(--red); }
   
   .faq-toggle {
     width: 36px;
     height: 36px;
     border: 1px solid var(--red);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     position: relative;
     transition: all 0.3s;
   }
   .faq-toggle::before, .faq-toggle::after {
     content: '';
     position: absolute;
     background: var(--red);
     transition: transform 0.3s, background 0.3s;
   }
   .faq-toggle::before { width: 14px; height: 2px; }
   .faq-toggle::after { width: 2px; height: 14px; }
   
   .faq-item.open .faq-toggle { background: var(--red); }
   .faq-item.open .faq-toggle::before { background: var(--white); }
   .faq-item.open .faq-toggle::after { transform: rotate(90deg); background: var(--white); }
   
   .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.4s ease;
   }
   .faq-item.open .faq-answer {
     max-height: 400px;
     padding-bottom: 28px;
   }
   .faq-answer p {
     color: var(--gray-light);
     line-height: 1.7;
     font-size: 16px;
     max-width: 760px;
   }
   
   /* CONTACT / FORM */
   .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 80px;
     align-items: start;
   }
   
   .contact-info h2 {
     font-family: var(--font-display);
     font-size: clamp(40px, 5vw, 64px);
     line-height: 0.9;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     margin: 16px 0 32px;
   }
   
   .contact-info p {
     color: var(--gray-light);
     line-height: 1.7;
     font-size: 17px;
     margin-bottom: 40px;
   }
   
   .contact-details {
     display: flex;
     flex-direction: column;
     gap: 0;
   }
   
   .contact-row {
     display: flex;
     align-items: center;
     gap: 20px;
     padding: 20px 0;
     border-top: 1px solid var(--border);
   }
   .contact-row:last-child { border-bottom: 1px solid var(--border); }
   
   .contact-icon {
     width: 48px;
     height: 48px;
     background: var(--red);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     flex-shrink: 0;
   }
   .contact-icon svg { width: 22px; height: 22px; }
   
   .contact-label {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.15em;
     color: var(--gray);
     margin-bottom: 4px;
   }
   .contact-value {
     font-weight: 700;
     font-size: 17px;
     color: var(--white);
   }
   .contact-value a:hover { color: var(--red); }
   
   .form-wrap {
     background: var(--black-card);
     border: 1px solid var(--border);
     padding: 44px;
     position: relative;
   }
   
   .form-wrap::before {
     content: '';
     position: absolute;
     top: 0; left: 0;
     width: 80px;
     height: 4px;
     background: var(--red);
   }
   
   .form-title {
     font-family: var(--font-display);
     font-size: 32px;
     text-transform: uppercase;
     letter-spacing: 0.02em;
     margin-bottom: 8px;
   }
   .form-subtitle {
     color: var(--gray);
     font-size: 14px;
     margin-bottom: 32px;
   }
   
   .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-bottom: 20px;
   }
   
   .form-group {
     display: flex;
     flex-direction: column;
   }
   .form-group.full { grid-column: 1 / -1; }
   
   .form-label {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.15em;
     color: var(--gray);
     margin-bottom: 10px;
     font-weight: 600;
   }
   .form-label .req { color: var(--red); }
   
   .form-input, .form-select, .form-textarea {
     background: var(--black);
     border: 1px solid var(--border);
     padding: 16px 18px;
     color: var(--white);
     font-family: var(--font-body);
     font-size: 15px;
     transition: border-color 0.3s;
     width: 100%;
   }
   .form-input:focus, .form-select:focus, .form-textarea:focus {
     outline: none;
     border-color: var(--red);
   }
   
   .form-textarea { resize: vertical; min-height: 110px; }
   
   .vehicle-options {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
   }
   .vehicle-option {
     position: relative;
     cursor: pointer;
   }
   .vehicle-option input {
     position: absolute;
     opacity: 0;
     pointer-events: none;
   }
   .vehicle-option-card {
     padding: 14px 16px;
     background: var(--black);
     border: 1px solid var(--border);
     transition: all 0.3s;
   }
   .vehicle-option-card .v-title {
     font-family: var(--font-display);
     font-size: 15px;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-bottom: 4px;
   }
   .vehicle-option-card .v-desc {
     font-size: 11px;
     color: var(--gray);
     letter-spacing: 0.05em;
     text-transform: uppercase;
   }
   .vehicle-option input:checked + .vehicle-option-card {
     background: var(--red);
     border-color: var(--red);
   }
   .vehicle-option input:checked + .vehicle-option-card .v-desc { color: rgba(255,255,255,0.85); }
   .vehicle-option:hover .vehicle-option-card { border-color: var(--red); }
   
   .form-submit {
     background: var(--red);
     color: var(--white);
     padding: 18px 32px;
     font-weight: 700;
     font-size: 14px;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     width: 100%;
     margin-top: 14px;
     position: relative;
     overflow: hidden;
     transition: transform 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
   }
   .form-submit::before {
     content: '';
     position: absolute;
     inset: 0;
     background: var(--white);
     transform: translateX(-100%);
     transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
   }
   .form-submit:hover::before { transform: translateX(0); }
   .form-submit:hover { color: var(--red); }
   .form-submit span, .form-submit svg { position: relative; z-index: 1; }
   
   .form-msg {
     display: none;
     padding: 16px;
     margin-top: 20px;
     border-left: 3px solid #00d97a;
     background: rgba(0, 217, 122, 0.08);
     color: #00d97a;
     font-size: 14px;
   }
   .form-msg.show { display: block; }
   
   /* CTA BANNER */
   .cta-banner {
     padding: 100px 0;
     background:
       radial-gradient(ellipse at center, rgba(227,6,19,0.25) 0%, transparent 60%),
       var(--black);
     text-align: center;
     position: relative;
     overflow: hidden;
   }
   .cta-banner h2 {
     font-family: var(--font-display);
     font-size: clamp(40px, 7vw, 90px);
     line-height: 0.9;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     margin-bottom: 24px;
   }
   .cta-banner h2 .accent { color: var(--red); }
   .cta-banner p {
     color: var(--gray-light);
     max-width: 560px;
     margin: 0 auto 36px;
     font-size: 17px;
     line-height: 1.7;
   }
   
   /* FOOTER */
   .footer {
     background: var(--black);
     padding: 80px 0 30px;
     border-top: 1px solid var(--border);
   }
   
   .footer-grid {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1fr;
     gap: 50px;
     margin-bottom: 60px;
   }
   
   .footer-brand p {
     color: var(--gray);
     font-size: 14px;
     line-height: 1.7;
     margin-top: 20px;
     max-width: 320px;
   }
   
   .footer-col h4 {
     font-family: var(--font-display);
     font-size: 16px;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     margin-bottom: 24px;
     color: var(--white);
   }
   
   .footer-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
   }
   .footer-col a {
     color: var(--gray);
     font-size: 14px;
     transition: color 0.3s;
   }
   .footer-col a:hover { color: var(--red); }
   
   .footer-bottom {
     padding-top: 30px;
     border-top: 1px solid var(--border);
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 16px;
     color: var(--gray);
     font-size: 13px;
   }
   
   .footer-credits a {
     color: var(--red);
     font-weight: 700;
     transition: color 0.2s;
   }
   .footer-credits a:hover { color: var(--white); }
   
   /* WHATSAPP FLOAT */
   .wa-float {
     position: fixed;
     bottom: 24px;
     right: 24px;
     width: 60px;
     height: 60px;
     background: #25D366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 90;
     box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
     transition: transform 0.3s;
     animation: float 3s ease-in-out infinite;
   }
   .wa-float:hover { transform: scale(1.1) rotate(8deg); }
   .wa-float svg { width: 30px; height: 30px; fill: var(--white); }
   .wa-float::before {
     content: '';
     position: absolute;
     inset: -6px;
     border-radius: 50%;
     border: 2px solid #25D366;
     animation: ripple 2s infinite;
   }
   
   @keyframes float {
     0%, 100% { transform: translateY(0); }
     50% { transform: translateY(-6px); }
   }
   @keyframes ripple {
     0% { opacity: 1; transform: scale(1); }
     100% { opacity: 0; transform: scale(1.5); }
   }
   
   /* REVEAL ANIMATIONS */
   .reveal {
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                 transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
   }
   .reveal.visible {
     opacity: 1;
     transform: translateY(0);
   }
   
   /* RESPONSIVE */
   @media (max-width: 1024px) {
     .services-grid { grid-template-columns: repeat(2, 1fr); }
     .fleet-grid { grid-template-columns: repeat(2, 1fr); }
     .gallery-grid { grid-template-columns: repeat(3, 1fr); }
     .reviews-grid { grid-template-columns: repeat(2, 1fr); }
     .about-grid, .coverage-content, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
     .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
     .process-grid::before { display: none; }
     .footer-grid { grid-template-columns: 1fr 1fr; }
   }
   
   @media (max-width: 768px) {
     .nav, .header-cta { display: none; }
     .mobile-toggle { display: flex; }
   
     .mobile-menu {
       display: block;
       position: fixed;
       top: 78px; left: 0; right: 0;
       background: var(--black);
       padding: 30px 24px;
       transform: translateY(-150%);
       transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
       border-bottom: 1px solid var(--border);
       z-index: 99;
       text-align: center;
     }
     .mobile-menu.active { transform: translateY(0); }
     .mobile-menu .nav-link {
       display: block;
       padding: 18px 0;
       border-bottom: 1px solid var(--border);
       font-size: 16px;
       text-align: center;
     }
     .mobile-menu .nav-link::after { left: 50%; transform: translateX(-50%); }
     .mobile-menu .header-cta {
       display: inline-flex;
       margin-top: 24px;
       justify-content: center;
     }
   
     .hero {
       padding: 100px 0 40px;
       min-height: 100vh;
       min-height: 100svh;
       display: flex;
       align-items: center;
       justify-content: center;
     }
     .page-hero { padding: 130px 0 70px; }
     .hero-bg-text, .page-hero-bg-text { font-size: 110px; }
   
     .services-grid, .fleet-grid { grid-template-columns: 1fr; }
     .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
     .gallery-item.big { grid-column: span 2; grid-row: span 1; }
   
     /* Zones: ocultar desktop, mostrar mobile */
     .zones-desktop { display: none; }
     .zones-mobile { display: block; }
   
     /* Reviews carousel en mobile */
     .reviews-carousel {
       padding: 0 56px;
     }
     .reviews-grid {
       display: flex;
       overflow: hidden;
       gap: 0;
       scroll-snap-type: x mandatory;
     }
     .reviews-grid .review-card {
       flex: 0 0 100%;
       scroll-snap-align: start;
     }
     .reviews-arrow { display: flex; }
     .reviews-arrow-prev { left: 0; }
     .reviews-arrow-next { right: 0; }
     .reviews-dots { display: flex; }
   
     .vehicle-options { grid-template-columns: 1fr; }
   
     .form-row { grid-template-columns: 1fr; gap: 0; }
     .form-row .form-group { margin-bottom: 20px; }
     .form-wrap { padding: 28px 22px; }
   
     .reviews-head { flex-direction: column; align-items: flex-start; }
     .reviews-rating { text-align: left; }
   
     .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
     .footer-grid > *:nth-child(3) { display: none; } /* ocultar columna Servicios en mobile */
     .footer-brand .logo { justify-content: center; }
     .footer-brand p { margin-left: auto; margin-right: auto; }
     .footer-bottom { flex-direction: column; text-align: center; }
   
     .about-img { height: 380px; }
   
     .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
     .wa-float svg { width: 28px; height: 28px; }
   
     .marquee-item { gap: 30px; font-size: 22px; }
     .marquee-track { gap: 30px; }
   }
   
   @media (max-width: 480px) {
     .container { padding: 0 18px; }
     .hero h1 { font-size: 48px; }
     .section-title { font-size: 36px; }
     .service-card { padding: 36px 24px; }
     .service-icon { width: 40px; height: 40px; }
     .service-title { font-size: 20px; }
     .review-card { padding: 24px; }
   }