/* ============================================
    ESTILOS GENERALES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #383836;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.return-home {
    text-decoration: none;
}

/* ============================================
    NAVEGACIÓN
============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #383836;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

nav.scrolled {
    background-color: #383836;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    background-clip: text;
}

.return-home .logo-uru {
    color: #f97316;
}

.return-home .logo-track {
    color: #ffffff;
}


.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f97316;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f97316;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
    HERO SECTION CON VIDEO
============================================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(74, 26, 10, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-logo-img{
    width: 100px;
    height: 100px;
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideIn 1s;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #e5e7eb;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ============================================
    BOTONES GENERALES
============================================ */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
    background: #e55a0d;
}

.btn-primary.solid {
    background: #f97316;
}

/* ============================================
    SECCIÓN DE BENEFICIOS (GENERAL + GRID 8 + CUADRADOS)
============================================ */
.benefits {
    padding: 5rem 2rem;
    background-color: #383836;
    color: #fff;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 4rem;
}

.section-title .highlight,
.highlight {
    color: #f97316;
}

.grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    padding: 0 10%;
}

.benefit-box {
background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 25px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.6);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    color: #ff6600;
    margin-bottom: 20px;
    transition: color 0.3s, transform 0.3s;
}

.benefit-box:hover .benefit-icon {
    color: #ff8533;
    transform: scale(1.1);
}

.benefit-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-box p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-more {
    background: transparent;
    color: #ff6600;
    border: 1px solid #ff6600;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #ff6600;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}

@media (max-width: 1200px) {
    .grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-8 {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        padding: 0 5%;
        gap: 25px;
    }

    .benefit-box {
        padding: 30px 20px;
    }

    .benefits .section-title {
        font-size: 2.2rem;
    }
}

/* ============================================
    SERVICIOS DESTACADOS
============================================ */
.servicios-destacados {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicios-destacados h2 {
    color: #ff6600;
    margin-bottom: 50px;
    font-size: 2.3rem;
    letter-spacing: 1px;
}

.servicios-container {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.lista-servicios {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.servicio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #202020;
    padding: 15px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.servicio-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.servicio-item h3 {
    color: #ddd;
    font-size: 1.1rem;
}

.servicio-item.active {
    background: #ff6600;
    color: #fff;
}

.servicio-item.active h3 {
    color: #fff;
}

.servicio-detalle {
    flex: 2;
    position: relative;
}

.detalle {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: opacity 0.4s ease;
}

.detalle.hidden {
    display: none;
}

.detalle img {
    width: 55%;
    border-radius: 20px;
    object-fit: cover;
}

.detalle-texto h3 {
    font-size: 1.8rem;
    color: #ff6600;
    margin-bottom: 15px;
}

.detalle-texto p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-servicio {
    background: #ff6600;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-servicio:hover {
    background: #ff8533;
}

@media (max-width: 900px) {
    .servicios-container {
        flex-direction: column;
    }
    .detalle img {
        width: 100%;
    }
}

/* ============================================
    SECCIÓN DE SERVICIOS INTERACTIVOS
============================================ */
.serv-section {
    padding: 5rem 2rem;
    background: #4f4f4e;
    position: relative;
    overflow: hidden;
}

.serv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.serv-section .container {
    position: relative;
    z-index: 2;
}

.serv-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 4rem;
}

.serv-title .highlight {
    color: #f97316;
}

.serv-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.serv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.serv-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.serv-card:hover {
    transform: translateY(-10px);
    border-color: #f97316;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
}

.serv-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.serv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.serv-card:hover .serv-image img {
    transform: scale(1.1);
}

.serv-content {
    padding: 2rem;
}

.serv-content h3 {
    font-size: 1.5rem;
    color: #f97316;
    margin-bottom: 1rem;
    font-weight: 600;
}

.serv-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.serv-btn {
    display: inline-block;
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

.serv-btn:hover {
    background: #f97316;
    color: #fff;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .serv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .serv-card {
        margin: 0 1rem;
    }
    
    .serv-title {
        font-size: 2.5rem;
    }
    
    .serv-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
    PROCESS SECTION - FUTURISTA
============================================ */
.process {
    padding: 5rem 2rem;
    background: #4f4f4e;
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #f97316 20%, 
        #f97316 80%, 
        transparent 100%
    );
    transform: translateX(-50%);
}

.process-step-futuristic {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.process-step-futuristic[data-step="1"],
.process-step-futuristic[data-step="3"] {
    flex-direction: row;
}

.process-step-futuristic[data-step="2"],
.process-step-futuristic[data-step="4"] {
    flex-direction: row-reverse;
}

.step-circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-number-futuristic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #f97316;
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step-content-futuristic {
    flex: 1;
    max-width: 380px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s;
    position: relative;
}

.process-step-futuristic[data-step="1"] .step-content-futuristic,
.process-step-futuristic[data-step="3"] .step-content-futuristic {
    margin-left: calc(50% + 60px);
}

.process-step-futuristic[data-step="2"] .step-content-futuristic,
.process-step-futuristic[data-step="4"] .step-content-futuristic {
    margin-right: calc(50% + 60px);
    text-align: right;
}

.step-content-futuristic::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f97316, transparent);
}

.process-step-futuristic[data-step="1"] .step-content-futuristic::before,
.process-step-futuristic[data-step="3"] .step-content-futuristic::before {
    left: -30px;
    transform: translateY(-50%);
}

.process-step-futuristic[data-step="2"] .step-content-futuristic::before,
.process-step-futuristic[data-step="4"] .step-content-futuristic::before {
    right: -30px;
    transform: translateY(-50%) rotate(180deg);
}

.step-content-futuristic:hover {
    border-color: #f97316;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.step-content-futuristic h3 {
    font-size: 1.4rem;
    color: #f97316;
    margin-bottom: 0.8rem;
}

.step-content-futuristic p {
    color: #9ca3af;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .step-circle {
        left: 30px;
    }
    
    .process-step-futuristic {
        flex-direction: row !important;
    }
    
    .step-content-futuristic {
        margin-left: 100px !important;
        margin-right: 0 !important;
        text-align: left !important;
        max-width: none;
    }
    
    .step-content-futuristic::before {
        left: -30px !important;
        right: auto !important;
        transform: translateY(-50%) !important;
    }
}

/* ============================================
    INSTITUCIONAL
============================================ */
.institucional-section {
    background-color:#383836;;
    color: #fff;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.institucional-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.institucional-image img {
    max-width: 350px;
    width: 100%;
    border-radius: 12px;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.4));
    transition: transform 0.4s ease;
}

.institucional-image img:hover {
    transform: scale(1.05);
}

.institucional-text {
    flex: 1;
    min-width: 320px;
}

.institucional-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.institucional-text p {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 15px;
}

.btn-mas {
    display: inline-block;
    background: transparent;
    border: 2px solid #ff7b00;
    color: #ff7b00;
    padding: 10px 25px;
    border-radius: 6px;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.btn-mas:hover {
    background: #ff7b00;
    color: #000;
}

@media (max-width: 900px) {
    .institucional-container {
        flex-direction: column;
        text-align: center;
    }

    .institucional-image img {
        max-width: 250px;
    }
}

.separador {
    width: 100%;
    height: 80px;
    background-color: #383836;;
    position: relative;
    margin-top: -20px;
}

.separador::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff7b00, transparent);
    box-shadow: 0 0 15px #ff7b00;
}

/* ============================================
    STATS SECTION
============================================ */
.stats {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
    CTA SECTION
============================================ */
.cta {
    padding: 5rem 2rem;
    background: #4f4f4e;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #9ca3af;
}

.btn-white {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

/* ============================================
    FOOTER
============================================ */
footer {
    padding: 4rem 2rem 2rem;
    background: #383836;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-brand-logo {
    max-width: 280px;
    height: auto;
}

.footer-section h4 {
    color: #f97316;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6b7280;
}

/* ============================================
    ANIMACIONES DE SCROLL
============================================ */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
    DETALLE DE BENEFICIO (REUTILIZADO EN VARIAS PÁGINAS)
============================================ */
.detalle-beneficio {
    padding: 80px 0;
    background: #383836;
    color: #fff;
}

.detalle-beneficio:nth-child(even) {
    background: #4f4f4e;
}

.detalle-beneficio .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detalle-beneficio h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 40px;
}

.detalle-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detalle-imagen {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
    border-radius: 15px;
    object-fit: cover;
}

.detalle-texto {
    flex: 2;
    min-width: 300px;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.detalle-texto p {
    margin-bottom: 20px;
}

.detalle-texto ul {
    list-style: none;
    padding: 0;
}

.detalle-texto li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.detalle-texto li::before {
    content: "✔";
    color: #f97316;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 992px) {
    .detalle-content {
        flex-direction: column;
        text-align: center;
    }

    .detalle-imagen {
        max-width: 380px;
    }

    .detalle-texto ul li {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .detalle-beneficio {
        padding: 50px 0;
    }

    .detalle-beneficio h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .detalle-imagen {
        max-width: 100%;
        height: auto;
    }

    .detalle-texto {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

/* ============================================
    BENEFICIOS INTRO
============================================ */
.beneficios-intro {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #4a1a0a 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.beneficios-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.beneficios-intro-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.beneficios-icon {
    margin-bottom: 20px;
}

.beneficios-icon svg {
    width: 60px;
    height: 60px;
}

.beneficios-intro h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
}

.beneficios-intro h1 .highlight {
    color: #f97316;
}

.beneficios-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ccc;
}

.beneficios-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .beneficios-intro h1 {
        font-size: 2.5rem;
    }
    .beneficios-intro h2 {
        font-size: 1.3rem;
    }
    .beneficios-intro p {
        font-size: 1.1rem;
    }
}

/* ============================================
    CARRUSEL PEQUEÑO
============================================ */
.carrusel-pequeno {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: grab;
    padding: 20px 0;
}

.carrusel-pequeno .item {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    margin: 0 10px;
    background-color: orange;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.carrusel-pequeno .item svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.carrusel-pequeno .item:hover {
    transform: scale(1.2);
}

/* ============================================
    QUIÉNES SOMOS
============================================ */
.quienes-somos {
    background: #0a0a0a;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

.qs-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.qs-texto {
    flex: 1;
    min-width: 320px;
}

.qs-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qs-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 1rem;
}

/* ============================================
    INNOVACIÓN Y TECNOLOGÍA
============================================ */
.tecnologia-urutrack {
    position: relative;
    background-color: #383836;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.tecnologia-urutrack::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    transform: skewY(-4deg);
    z-index: 0;
}

.tecnologia-contenido {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    flex-wrap: wrap;
    padding: 0 40px;
}

.tecnologia-texto {
    flex: 1;
    min-width: 320px;
}

.tecnologia-texto h2 {
    font-size: 2.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.tecnologia-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 2rem;
}

.tecnologia-texto ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.tecnologia-texto ul li {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tecnologia-texto ul li:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateX(6px);
}

.tecnologia-texto ul li i {
    color: #f97316;
    font-size: 1.3rem;
}

.btn-ver-servicios {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-ver-servicios:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

.tecnologia-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tecnologia-img::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at center, rgba(249,115,22,0.3), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s infinite alternate;
}

.tecnologia-img img {
    position: relative;
    z-index: 1;
    width: 85%;
    max-width: 420px;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.3);
    transition: transform 0.4s ease;
}

.tecnologia-img img:hover {
    transform: scale(1.05) rotate(2deg);
}

@media (max-width: 992px) {
    .tecnologia-contenido {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }

    .tecnologia-texto h2 {
        font-size: 2.2rem;
    }

    .tecnologia-img img {
        max-width: 320px;
    }

    .tecnologia-img::before {
        width: 250px;
        height: 250px;
    }
}

/* ============================================
    CTA FINAL ESTÁTICA
============================================ */
.cta-servicios-interactivo {
    padding: 6rem 0;
    background: #4f4f4e;
    text-align: center;
    color: #fff;
}

.cta-servicios-interactivo h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f97316;
}

.cta-servicios-interactivo p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-servicios-interactivo .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: #f97316;
    color: #000;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-servicios-interactivo .btn-primary:hover {
    background: #fff;
    color: #f97316;
    transform: scale(1.05);
}

/* ============================================
    PÁGINA DE CONTACTO
============================================ */
.hero-contacto {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #4a1a0a 100%);
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-contacto-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.15), transparent 50%);
}

.hero-contacto-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-contacto h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-contacto p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #d1d5db;
}

.contacto-main {
    padding: 5rem 2rem;
    background: #383836;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contacto-form-container {
    background-color: #4f4f4e;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contacto-form-container h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #9ca3af;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #383836;
    border: 1px solid #333;
    padding: 0.9rem 1.2rem;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: #9ca3af;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #f97316;
}

.link-orange {
    color: #f97316;
    text-decoration: none;
    transition: color 0.3s;
}

.link-orange:hover {
    color: #ea580c;
    text-decoration: underline;
}

.btn-submit-large {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-submit-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-submit-large:hover .btn-icon {
    transform: translateX(5px);
}

.success-message {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
    padding: 1rem;
    border-radius: 0.5rem;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.success-message.show {
    display: flex;
    animation: slideIn 0.5s;
}

.success-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contacto-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacto-info-card {
    background-color: #4f4f4e;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.contacto-info-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-subtitle {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: #f97316;
}

.contact-info-text h4 {
    color: #f97316;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info-text p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

.demo-benefits {
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 2.5rem;
    border-radius: 1.5rem;
}

.demo-benefits h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.benefits-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-contacto {
    padding: 5rem 2rem;
background-color: #4f4f4e;
    text-align: center;
}

.cta-contacto h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta-contacto p {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-phone,
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-cta-phone {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.btn-cta-phone svg,
.btn-cta-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* ============================================
    RESPONSIVE GENERAL
============================================ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }
    
    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-contacto {
        padding: 6rem 1.5rem 3rem;
    }
    
    .contacto-form-container {
        padding: 2rem;
    }
    
    .contacto-main {
        padding: 3rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-phone,
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .equipo-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .benefits, .features, .process, .stats, .cta {
        padding: 3rem 1rem;
    }

    .card, .feature-item {
        padding: 1.5rem;
    }

    .hero-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 1024px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 992px) {
    .innovacion-content {
        flex-direction: column;
        text-align: center;
    }
    .innovacion-text {
        order: 2;
    }
    .innovacion-img {
        order: 1;
    }
}

/* ============================================
    QUIÉNES SOMOS – EXCLUSIVA URUTRACK
============================================ */
.quienes-somos-exclusiva {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.quienes-somos-exclusiva::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 100, 0, 0.08), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 100, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.qs-exclusiva-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qs-titulo {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #fff;
}

.qs-titulo .line {
    display: block;
    overflow: hidden;
}

.qs-titulo .line:first-child {
    color: #ff6400;
    font-size: 3.8rem;
}

.qs-parrafos {
    margin-bottom: 30px;
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #ddd;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-orange {
    color: #ff6400;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 100, 0, 0.3);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-glow .glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255, 100, 0, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.btn-glow:hover .glow {
    width: 300px;
    height: 300px;
}

.qs-imagen-holograma {
    position: relative;
    text-align: center;
}

.holograma-frame {
    position: relative;
    display: inline-block;
    border: 2px solid #ff6400;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(255, 100, 0, 0.25),
        inset 0 0 20px rgba(255, 100, 0, 0.1);
    max-width: 400px;
    transition: all 0.4s ease;
}

.holograma-frame:hover {
    box-shadow: 0 0 30px rgba(255, 100, 0, 0.4);
}

.holograma-img {
    display: block;
    width: 100%;
    transition: transform 0.4s ease;
}

.holograma-frame:hover .holograma-img {
    transform: scale(1.05);
}

.holograma-scanline {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6400, transparent);
    animation: scan 3s linear infinite;
    opacity: 0.7;
}

.holograma-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.2), transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.holograma-frame:hover .holograma-glow {
    opacity: 1;
}

.holograma-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(500%); }
}

@media (max-width: 992px) {
    .qs-exclusiva-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .qs-titulo { font-size: 2.8rem; }
    .qs-titulo .line:first-child { font-size: 3.2rem; }
}


/* ============================================
    INSTITUCIONAL – MISIÓN, VISIÓN, VALORES
============================================ */
.institucional-urutrack {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.institucional-urutrack::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 100, 0, 0.06), transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 100, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.institucional-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.section-title .line {
    display: block;
    overflow: hidden;
}

.section-title .line:first-child {
    color: #ff6400;
    font-size: 3.8rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.institucional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.institucional-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 100, 0, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.institucional-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.institucional-card:hover {
    border-color: #ff6400;
    background: rgba(255, 100, 0, 0.05);
    box-shadow: 0 10px 30px rgba(255, 100, 0, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #ff6400;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 100, 0, 0.4);
}

.institucional-card h3 {
    font-size: 1.4rem;
    color: #ff6400;
    margin-bottom: 16px;
    font-weight: 700;
}

.institucional-card p {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
}

.valores-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.valor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    cursor: pointer;
}

.valor-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.valor-circle {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid #ff6400;
    color: #ff6400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    position: relative;
}

.valor-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid #ff6400;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
}

.valor-item:hover .valor-circle {
    background: #ff6400;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.5);
}

.valor-item:hover .valor-circle::before {
    opacity: 0.6;
}

.valor-item span {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.institucional-cta {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.institucional-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.institucional-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.6rem; }
    .section-title .line:first-child { font-size: 3rem; }
    .valores-row { gap: 20px; }
    .valor-circle { width: 60px; height: 60px; font-size: 1.2rem; }
}

/* ============================================
    MODALES DE VALORES
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    backdrop-filter: blur(5px);
}

.valor-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 500px;
    background: #111;
    border: 2px solid #ff6400;
    border-radius: 16px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 40px rgba(255, 100, 0, 0.3);
}

.valor-modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    padding: 30px;
    position: relative;
    color: #fff;
}

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.8rem;
    color: #ff6400;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: #000000;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.5);
}

.valor-modal h3 {
    text-align: center;
    color: #ff6400;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.valor-modal p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
}

.valor-modal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.valor-modal ul li {
    padding: 8px 0;
    color: #ccc;
    position: relative;
    padding-left: 20px;
}

.valor-modal ul li::before {
    content: '→';
    color: #ff6400;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ============================================
    CARACTERÍSTICAS DESTACADAS – MEJORADAS
============================================ */
.caracteristicas-destacadas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.caract-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 100, 0, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.caract-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.caract-item:hover {
    border-color: #ff6400;
    background: rgba(255, 100, 0, 0.05);
    box-shadow: 0 8px 25px rgba(255, 100, 0, 0.1);
    transform: translateY(-3px);
}

.caract-icon {
    width: 50px;
    height: 50px;
    background: #ff6400;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 100, 0, 0.4);
    transition: all 0.3s ease;
}

.caract-item:hover .caract-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.6);
}

.caract-texto {
    flex: 1;
}

.caract-texto h4 {
    color: #ff6400;
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.caract-texto p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.caract-bar {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-left: 16px;
    flex-shrink: 0;
}

.bar-fill {
    height: 100%;
    background: #ff6400;
    border-radius: 3px;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px rgba(255, 100, 0, 0.4);
}

@media (max-width: 768px) {
    .caract-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .caract-icon {
        margin: 0 0 12px 0;
    }
    .caract-bar {
        margin: 12px auto 0;
        width: 60%;
    }
}

/* ============================================
    BOTONES DE CARACTERÍSTICAS (ENLACES)
============================================ */
.caract-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 100, 0, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    text-decoration: none;
    color: inherit;      
    cursor: pointer;
}

.caract-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.caract-item:hover {
    border-color: #ff6400;
    background: rgba(255, 100, 0, 0.05);
    box-shadow: 0 8px 25px rgba(255, 100, 0, 0.1);
    transform: translateY(-3px);
    text-decoration: none;
}

.caract-item:hover .caract-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.6);
}

.caract-item h4,
.caract-item p,
.caract-item i {
    pointer-events: none;
}


/* ============================================
        CARRUSEL PANTALLA COMPLETA
============================================ */
        .carrusel-servicios {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: #000;
        }

        .carrusel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carrusel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            pointer-events: none;
        }

        .carrusel-slide.active {
            opacity: 1;
            pointer-events: all;
        }

        .slide-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: brightness(0.5);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.7) 50%,
                rgba(0, 0, 0, 0.3) 100%
            );
        }

        .slide-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .slide-text {
            flex: 1;
            max-width: 600px;
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-categoria {
            display: inline-block;
            background: rgba(249, 115, 22, 0.2);
            color: #f97316;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 20px;
            border: 1px solid rgba(249, 115, 22, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .slide-text h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

        .slide-text .highlight {
            color: #f97316;
        }

        .slide-text p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .slide-features {
            list-style: none;
            padding: 0;
            margin-bottom: 35px;
        }

        .slide-features li {
            color: #e5e7eb;
            font-size: 1.1rem;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.slide-features li::before {
    content: '✓';
    color: #f97316;
    font-weight: bold;
    font-size: 1.4rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

        .btn-carrusel {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
        }

        .btn-carrusel:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
        }

        .btn-carrusel svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s;
        }

        .btn-carrusel:hover svg {
            transform: translateX(5px);
        }

        .carrusel-controls {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 15px;
        }

        .control-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .control-dot:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        .control-dot.active {
            width: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .carrusel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(249, 115, 22, 0.2);
            border: 2px solid rgba(249, 115, 22, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .carrusel-arrow:hover {
            background: rgba(249, 115, 22, 0.4);
            border-color: #f97316;
            transform: translateY(-50%) scale(1.1);
        }

        .carrusel-arrow svg {
            width: 24px;
            height: 24px;
            color: #f97316;
        }

        .arrow-left {
            left: 30px;
        }

        .arrow-right {
            right: 30px;
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #f97316, #ea580c);
            width: 0%;
            transition: width 5s linear;
            z-index: 11;
        }

        .carrusel-slide.active .progress-bar {
            width: 100%;
        }

        @media (max-width: 768px) {
            .slide-content {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .slide-text {
                max-width: 100%;
            }

            .slide-text h2 {
                font-size: 2rem;
            }

            .slide-features {
                margin-bottom: 25px;
            }

            .carrusel-arrow {
                width: 50px;
                height: 50px;
            }

            .arrow-left {
                left: 15px;
                display: none;
            }

            .arrow-right {
                right: 15px;
                display: none;
            }

            .carrusel-controls {
                bottom: 30px;
            }
        }

/* ============================================
    SERVICIOS MODERNOS - COMPLETO
============================================ */

.servicios-modernos { 
    padding: 6rem 0; 
    background-color: #383836; 
}

.filter-tabs { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 1rem; 
    justify-content: center; 
    margin-bottom: 3rem; 
}
.filter-tab { 
    background: rgba(255,255,255,.05); 
    border: 1px solid rgba(249,115,22,.3); 
    color: #ccc; 
    padding: .8rem 1.8rem; 
    border-radius: 50px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all .4s; 
    backdrop-filter: blur(10px); 
}
.filter-tab.active, 
.filter-tab:hover { 
    background: #f97316; 
    color: white; 
    border-color: #f97316; 
    box-shadow: 0 0 20px rgba(249,115,22,.5); 
}

.servicios-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 2rem; 
}
.servicio-item { 
    background: rgba(17,17,17,.8); 
    border: 1px solid rgba(249,115,22,.2); 
    border-radius: 20px; 
    padding: 2rem; 
    text-align: center; 
    cursor: pointer; 
    transition: all .5s ease; 
    backdrop-filter: blur(12px); 
}
.servicio-item:hover { 
    transform: translateY(-15px) scale(1.05); 
    border-color: #f97316; 
    box-shadow: 0 20px 40px rgba(249,115,22,.3); 
}
.servicio-icon { 
    font-size: 3.5rem; 
    color: #f97316; 
    margin-bottom: 1rem; 
}
.servicio-item h3 { 
    color: #fff; 
    font-size: 1.3rem; 
    margin: 0; 
}

.modal-overlay { 
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,.9); 
    z-index: 999; 
    backdrop-filter: blur(10px); 
}

.servicio-modal { 
    display: none; 
    position: fixed; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%) scale(0.7); 
    width: 80%; 
    max-width: 1000px; 
    max-height: 85vh; 
    overflow-y: auto; 
    background: #111; 
    border-radius: 24px; 
    z-index: 1000; 
    box-shadow: 0 30px 80px rgba(249,115,22,.4); 
    transition: all .4s ease; 
}
.servicio-modal.active { 
    display: block; 
    transform: translate(-50%, -50%) scale(1); 
}

.modal-content { 
    padding: 3rem; 
    position: relative; 
}
.modal-close { 
    position: absolute; 
    top: 1.5rem; right: 2rem; 
    font-size: 2rem; 
    color: #f97316; 
    cursor: pointer; 
    font-weight: bold;
}
.modal-close:hover { 
    transform: scale(1.2); 
}

.modal-header { 
    text-align: center; 
    margin-bottom: 2rem; 
}
.modal-icon { 
    font-size: 4rem; 
    color: #f97316; 
    margin-bottom: 1rem; 
}
.modal-header h2 { 
    font-size: 2.2rem; 
    background: linear-gradient(135deg, #f97316, #ea580c); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin: 0;
}

.modal-body { 
    max-height: 65vh; 
    overflow-y: auto; 
    padding-right: 1rem; 
}
.modal-body p { 
    color: #ddd; 
    line-height: 1.8; 
    font-size: 1.1rem; 
    margin: 1rem 0; 
}
.modal-body strong { 
    color: #f97316; 
}
.modal-body h4 { 
    color: #f97316; 
    margin: 1.5rem 0 .8rem; 
    font-size: 1.3rem; 
}

.modal-list { 
    margin: 1.2rem 0; 
    padding-left: 1.5rem; 
    list-style: none; 
}
.modal-list li { 
    color: #f97316; 
    margin: .6rem 0; 
    position: relative; 
    padding-left: 1.8rem; 
    font-weight: 500; 
}
.modal-list li::before { 
    content: "✓"; 
    position: absolute; 
    left: 0; 
    color: #f97316; 
    font-weight: bold; 
    font-size: 1.2rem;
}

.modal-cta { 
    display: block; 
    text-align: center; 
    background: #f97316; 
    color: white; 
    padding: 1rem 2rem; 
    border-radius: 50px; 
    font-weight: 600; 
    text-decoration: none; 
    margin-top: 2rem; 
    transition: all .3s;
}
.modal-cta:hover { 
    background: #f55c09;
}

@media (max-width: 768px) {
    .servicios-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 1.5rem; 
    }
    .servicio-item { 
        padding: 1.5rem; 
    }
    .servicio-modal { 
        width: 95%; 
        padding: 1.5rem; 
    }
    .modal-header h2 { 
        font-size: 1.8rem; 
    }
    .modal-icon { 
        font-size: 3rem; 
    }
    .modal-body { 
        font-size: 1rem; 
    }
}

.btn-login {
    background-color: #ff7a00; 
    color: white;
    padding: 10px 18px;
    border-radius: 8px; 
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.btn-login:hover {
    background-color: #e66900; 
    color: #fff;
    transform: scale(1.07);
    border-color: #ffa64d;
}
/* ============================================
    NAV SÓLIDO + 100% RESPONSIVE + MODALES
============================================ */

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #383836;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.logo-img {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}
nav.scrolled .logo-img {
    width: 42px;
    height: 42px;
}

.carrusel-servicios,
.hero,
.hero-contacto,
.beneficios-intro,
.quienes-somos,
.quienes-somos-exclusiva,
.servicios-modernos,
.institucional-urutrack,
.process,
.stats,
.cta,
footer {
    padding-top: 90px;
    margin-top: 0 !important;
}

.carrusel-servicios {
    height: calc(100vh - 90px);
    overflow: hidden;
}

.servicios-modernos {
    padding: 6rem 2rem;
    background: #383836;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
}

.filter-tab {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(249,115,22,.3);
    color: #ccc;
    padding: .8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .4s;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.filter-tab:hover,
.filter-tab.active {
    background: #f97316;
    color: white;
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249,115,22,.5);
    transform: translateY(-2px);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.servicio-item {
    background: rgba(17,17,17,.9);
    border: 1px solid rgba(249,115,22,.2);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    cursor: pointer;
    transition: all .5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.servicio-item:hover {
    transform: translateY(-12px) scale(1.04);
    border-color: #f97316;
    box-shadow: 0 25px 50px rgba(249,115,22,.25);
}

.servicio-icon {
    font-size: 3.8rem;
    color: #f97316;
    margin-bottom: .8rem;
}

.servicio-item h3 {
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0;
}

.servicio-modal,
.valor-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 92%;
    max-width: 1000px;
    max-height: 92vh;
    background: #111;
    border: 1px solid rgba(249,115,22,.3);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(249,115,22,.4);
    z-index: 2001 !important;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    overflow-y: auto;
}

.servicio-modal.active,
.valor-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.modal-content { padding: 2.5rem 2rem; }

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: .8rem;
    scrollbar-width: thin;
    scrollbar-color: #f97316 #333;
}

.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: #333; border-radius: 10px; }
.modal-body::-webkit-scrollbar-thumb { background: #f97316; border-radius: 10px; }

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(10px);
    z-index: 2000 !important;
}
.modal-overlay.active { display: block; }

@media (max-width: 1024px) {
    .servicios-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.8rem;
    }
}

@media (max-width: 768px) {
    nav { padding: 0.9rem 1.5rem; }
    nav.scrolled { padding: 0.7rem 1.5rem; }
    .logo-img { width: 44px; height: 44px; }
    nav.scrolled .logo-img { width: 38px; height: 38px; }

    .servicios-modernos { padding: 5rem 1.5rem; }
    .filter-tab { padding: .7rem 1.4rem; font-size: .9rem; }
    .servicios-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
    .servicio-item { padding: 2rem 1.5rem; }
    .servicio-icon { font-size: 3.4rem; }
    .servicio-item h3 { font-size: 1.25rem; }
    .modal-content { padding: 2rem 1.5rem; }

    .carrusel-servicios,
    .hero, .hero-contacto, .beneficios-intro, .quienes-somos,
    .quienes-somos-exclusiva, .servicios-modernos, .institucional-urutrack,
    .process, .stats, .cta, footer {
        padding-top: 78px;
    }
    .carrusel-servicios {
        height: calc(100vh - 78px);
    }
}

@media (max-width: 560px) {
    .servicios-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .servicio-item { padding: 2.5rem 2rem; }
    .servicio-icon { font-size: 4rem; }
    .servicio-item h3 { font-size: 1.4rem; }
}

@media (max-width: 380px) {
    .filter-tab { padding: .6rem 1.2rem; font-size: .85rem; }
    .modal-content { padding: 2rem 1.2rem; }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    animation: slideIn 1s ease;
    letter-spacing: 3px;
}

/* URU — naranja sólido */
.hero-uru {
    color: #f97316;
}

/* TRACK — blanco puro */
.hero-track {
    color: #ffffff;
}

/* Subtítulo (como en el logo) */
.hero-sub {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #ffffff;
    opacity: 0.85;
    letter-spacing: 0.5rem;
    font-weight: 300;
    animation: fadeIn 1.5s ease;
}

.contact-info-icon i {
    font-size: 2rem;
    color: #ff7a00; /* tu color naranja */
}



