:root {
    --naranja: #E86A17;
    --naranja-claro: #FF8534;
    --naranja-oscuro: #C75610;
    --azul: #1A3A5C;
    --azul-claro: #2A4A6C;
    --blanco: #FAFAFA;
    --gris-claro: #F0F0F0;
    --gris: #666;
    --negro: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--negro);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 58, 92, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}
.logo-img {
    height: 50px;
    width: auto;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--naranja);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 28px;
    background: var(--blanco);
    clip-path: polygon(30% 0%, 70% 0%, 60% 70%, 70% 70%, 50% 100%, 30% 70%, 40% 70%);
}

.logo-text {
    color: var(--blanco);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    line-height: 1.1;
}

.logo-text span {
    color: var(--naranja);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--naranja);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--naranja);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--naranja);
    color: var(--blanco);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: var(--naranja-claro);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--blanco);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 50%, var(--azul) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(232, 106, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 106, 23, 0.1) 0%, transparent 40%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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: 50px 50px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--blanco);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--naranja);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 106, 23, 0.2);
    border: 1px solid var(--naranja);
    color: var(--naranja);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--naranja);
    color: var(--blanco);
    box-shadow: 0 4px 20px rgba(232, 106, 23, 0.4);
}

.btn-primary:hover {
    background: var(--naranja-claro);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(232, 106, 23, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--blanco);
    border: 2px solid var(--blanco);
}

.btn-secondary:hover {
    background: var(--blanco);
    color: var(--azul);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-media {
    position: relative;
    width: 100%;
    max-width: 300px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--naranja);
}

    .hero-media video,
    .hero-media img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 9/16;
        object-fit: cover;
    }

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: var(--blanco);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--naranja);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Servicios */
.servicios {
    padding: 8rem 2rem;
    background: var(--blanco);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(232, 106, 23, 0.1);
    color: var(--naranja);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--azul);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gris);
    max-width: 600px;
    margin: 0 auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servicio-card {
    background: var(--blanco);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--naranja);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 58, 92, 0.15);
}

.servicio-card:hover::before {
    transform: scaleX(1);
}

.servicio-icon {
    width: 70px;
    height: 70px;
    background: var(--blanco);
    border: 3px solid var(--naranja);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.servicio-card h3 {
    font-size: 1.8rem;
    color: var(--azul);
    margin-bottom: 1rem;
}

.servicio-card p {
    color: var(--gris);
    margin-bottom: 1.5rem;
}

.servicio-list {
    list-style: none;
}

.servicio-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--negro);
    font-size: 0.95rem;
}

.servicio-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--naranja);
    font-weight: bold;
}

/* Por qué elegirnos */
.por-que {
    padding: 8rem 2rem;
    background: var(--azul);
    position: relative;
    overflow: hidden;
}

.por-que::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 106, 23, 0.2) 0%, transparent 70%);
}

.por-que .section-title {
    color: var(--blanco);
}

.por-que .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.razones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.razon {
    text-align: center;
    padding: 2rem;
}

.razon-icon {
    width: 80px;
    height: 80px;
    background: rgba(232, 106, 23, 0.2);
    border: 2px solid var(--naranja);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.razon:hover .razon-icon {
    background: var(--naranja);
    transform: scale(1.1);
}

.razon h3 {
    font-size: 1.5rem;
    color: var(--blanco);
    margin-bottom: 0.5rem;
}

.razon p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Sobre nosotros */
.sobre {
    padding: 8rem 2rem;
    background: var(--gris-claro);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.sobre-badge {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.badge-circle {
    width: 100%;
    height: 100%;
    background: var(--naranja);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(232, 106, 23, 0.3);
}

.badge-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateBadge 20s linear infinite;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-text span {
    position: absolute;
    left: 50%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--blanco);
    transform-origin: 0 175px;
}

.badge-center {
    text-align: center;
    z-index: 1;
}

.badge-center .name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--blanco);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.sobre-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--azul);
    margin-bottom: 1.5rem;
}

.sobre-text h2 span {
    color: var(--naranja);
}

.sobre-text p {
    color: var(--gris);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--blanco);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(232, 106, 23, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--naranja);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
    color: var(--azul);
}

/* Zonas */
.zonas {
    padding: 6rem 2rem;
    background: var(--blanco);
}

.zonas-content {
    text-align: center;
}

.zonas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.zona-tag {
    background: var(--gris-claro);
    color: var(--azul);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zona-tag:hover {
    background: var(--naranja);
    color: var(--blanco);
    transform: scale(1.05);
}

/* Galería */
.galeria {
    padding: 8rem 2rem;
    background: var(--gris-claro);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.galeria-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--azul);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(26, 58, 92, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-titulo {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--blanco);
    margin-bottom: 0.25rem;
}

.galeria-ubicacion {
    display: block;
    color: var(--naranja);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-cerrar {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--blanco);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-cerrar:hover {
    color: var(--naranja);
}

/* Contacto */
.contacto {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
    position: relative;
}

.contacto::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(232, 106, 23, 0.1), transparent);
}

.contacto-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contacto-info {
    max-width: 800px;
}

.contacto-info h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--blanco);
    margin-bottom: 1.5rem;
}

.contacto-info h2 span {
    color: var(--naranja);
}

.contacto-info > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contacto-datos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.dato {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dato:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.dato-icon {
    width: 55px;
    height: 55px;
    background: var(--naranja);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dato-text {
    color: var(--blanco);
    text-align: left;
}

.dato-text small {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dato-text a,
.dato-text span {
    color: var(--blanco);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

.dato-text a:hover {
    color: var(--naranja);
}

.contacto-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--blanco);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
}

/* CTA flotante */
.cta-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-whatsapp {
    background: #25D366;
    color: white;
}

.cta-phone {
    background: var(--naranja);
    color: white;
}

.cta-btn:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--negro);
    color: var(--blanco);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--blanco);
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--naranja);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--naranja);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--naranja);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .nav-phone {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-media {
        max-width: 350px;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .sobre-badge {
        width: 280px;
        height: 280px;
    }
    
    .badge-text span {
        transform-origin: 0 140px;
    }
    
    .contacto-datos {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--azul);
        padding: 1rem 2rem 2rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

        .nav-links.active li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .nav-links.active a {
            display: block;
            padding: 1rem 0;
        }

    .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(5px, -5px);
    }
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sobre-features {
        grid-template-columns: 1fr;
    }
    
    .cta-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .cta-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .dato {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

