/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #3b82f6;
    --white: #ffffff;
    --black: #000000;
    --dark-gray: #374151;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --gradient: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    --shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    --shadow-lg: 0 20px 40px rgba(37, 99, 235, 0.15);
}

/* Major headings use Arvo */
h1, h2, h3 {
    font-family: 'Arvo', serif;
}

/* Other headings use League Gothic */
h4, h5, h6 {
    font-family: 'League Gothic', sans-serif;
}

/* Paragraphs use SUSE Mono */
/* Paragraphs use Montserrat */
p {
    font-family: 'Montserrat', sans-serif;
}

/* Futuristic theme (inspired by Figma: Futuristic Game Landing) */
/* Theme utility (kept but without dark background by default) */
.theme-futuristic {
    --bg-dark: transparent;
    --bg-card: rgba(255, 255, 255, 0.8);
    --neon-blue: #60a5fa;
    --neon-cyan: #22d3ee;
    --neon-purple: #a78bfa;
    --line: rgba(148, 163, 184, 0.25);
}

.theme-futuristic .header { background: transparent; }
.theme-futuristic .nav { border-bottom: 1px solid rgba(96,165,250,.1); }
.theme-futuristic .nav-menu a { color: #cbd5e1; }
.theme-futuristic .nav-menu a:hover { color: var(--neon-cyan); }

.theme-futuristic .hero { background: transparent; }

.theme-futuristic .home .home-text h1,
.theme-futuristic .about h2,
.theme-futuristic .pricing__band h2,
.theme-futuristic .contact-header h2,
.theme-futuristic .contact .contact-details h3,
.theme-futuristic .contact-form-card h3 {
    background: linear-gradient(135deg, #93c5fd 0%, #22d3ee 40%, #a78bfa 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.theme-futuristic .home-subtitle,
.theme-futuristic .about-description,
.theme-futuristic .price-card__desc,
.theme-futuristic .contact-details p,
.theme-futuristic .contact-details span { color: #cbd5e1; }

.theme-futuristic .highlight-card,
.theme-futuristic .price-card,
.theme-futuristic .price-card--featured,
.theme-futuristic .contact-item,
.theme-futuristic .contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    box-shadow: inset 0 0 0 1px rgba(2,6,23,.2), 0 10px 40px rgba(2,6,23,.6);
}

.theme-futuristic .price-card__head .price-card__plan,
.theme-futuristic .highlight-card h3 {
    color: #e2e8f0;
}

.theme-futuristic .btn-primary,
.theme-futuristic .btn-contact-submit {
    background: linear-gradient(135deg, #3b82f6, #22d3ee 60%, #a78bfa);
    border: 1px solid rgba(147,197,253,.3);
}
.theme-futuristic .btn-outline {
    background: transparent; color: #cbd5e1; border-color: rgba(96,165,250,.4);
}
.theme-futuristic .btn-outline:hover { background: rgba(96,165,250,.1); color: #e2e8f0; }

.theme-futuristic .pricing__bg { background: radial-gradient(800px 800px at 50% 0%, rgba(59,130,246,.12), rgba(2,6,23,0) 70%); }

.theme-futuristic .price-card__dot { background: linear-gradient(135deg, #22d3ee, #a78bfa); }

.theme-futuristic .contact-icon { background: linear-gradient(135deg, #22d3ee, #3b82f6); }
.theme-futuristic .contact-emoji { filter: drop-shadow(0 2px 8px rgba(34,211,238,.45)); }

.theme-futuristic .footer { background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 50%, #edf0f3 100%); }
.theme-futuristic .footer-bottom p { color: #94a3b8; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background-color: #ffffff;
    background-image:
        linear-gradient(180deg, #ffffff 0%, #f6f7f9 50%, #edf0f3 100%);
    background-attachment: fixed;
}

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

/* Header */
.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Modern Hero */
.hero {
    position: relative;
    padding: 0;
    background: transparent;
}

/* Hero Overlay Content */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 8rem 2rem 4rem;
    z-index: 10;
    pointer-events: none;
}

.hero-title-main {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 60px rgba(255, 255, 255, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(255, 255, 255, 0.8),
            0 0 90px rgba(255, 255, 255, 0.6),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.4),
        0 0 40px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 35px rgba(37, 99, 235, 0.5),
        0 0 60px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
}

.hero-cta-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-overlay-content {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay-content {
        padding: 5rem 1rem 2.5rem;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 1.75rem;
        font-size: 1rem;
    }
}

.hero-modern {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-kicker {
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: .9rem;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.05;
    font-weight: 900;
    color: #0f172a;
    margin: .5rem 0 1rem;
}

.hero-sub {
    color: #475569;
    max-width: 44ch;
    margin-bottom: 1.75rem;
}

.hero-cta { border-radius: 999px; padding: .9rem 1.4rem; }

.hero-right { display: flex; justify-content: center; }
.hero-photo {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 16 / 11;
    background-color: #eef2f7;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

@media (max-width: 900px) {
    .hero-modern { grid-template-columns: 1fr; }
    .hero { padding: 6rem 0 4rem; }
    .hero-title { font-size: 2.4rem; }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-overlay .logo-container {
    margin-bottom: 2rem;
}

.hero-overlay .logo-text {
    margin-bottom: 2rem;
}

.hero-overlay .logo-title {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-overlay .logo-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #60a5fa 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.hero-overlay .logo-subtitle {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 6px;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite reverse;
}

.hero-overlay .hero-text {
    max-width: 500px;
    margin: 0 auto;
}

.hero-overlay .hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay .btn-contact {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-overlay .btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Gradient Text Styles */
.gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #1e40af 0%, #60a5fa 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text-bright {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #60a5fa 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    position: relative;
}

/* Contact: darker gradient to avoid low contrast on white cards */
.contact .gradient-text-bright {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Logo Sabana Express (truck illustration removed as unused) */

.logo-title {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.logo-name {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #60a5fa 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    position: relative;
}

.logo-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite reverse;
}

.logo-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-contact {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #60a5fa 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.services-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    position: relative;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dark-blue);
}

.service-card:nth-child(even) {
    flex-direction: column;
    direction: ltr;
}

.service-card:nth-child(even) * {
    direction: ltr;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: var(--shadow);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

.service-content p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.service-features i {
    color: #10b981;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.btn-service {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-service i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(3px);
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: auto;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Home Section */
.home {
    padding: 100px 0;
    background: transparent;
}

.home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-subtitle {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 25px;
}

.home-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-align: justify;
}

.home-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.home-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.highlight-icon i {
    position: relative;
    z-index: 2;
}

.highlight-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.highlight-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: left;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-align: justify;
}

.about-features {
    display: grid;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Photo Pools - Charcos de agua */
.about-pools {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.photo-pool:nth-child(2) {
    align-self: flex-end;
    margin-right: 20px;
}

.photo-pool {
    width: 300px;
    height: 300px;
    border-radius: 50% 40% 60% 30%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.2));
    border: 3px solid rgba(37, 99, 235, 0.3);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.15),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.photo-pool:hover {
    transform: translateY(-8px) scale(1.05);
    border-radius: 40% 60% 30% 50%;
    box-shadow: 
        0 15px 35px rgba(37, 99, 235, 0.25),
        inset 0 2px 15px rgba(255, 255, 255, 0.4);
}

.photo-pool::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ripple 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes ripple {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.pool-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.photo-pool:hover .pool-image {
    transform: scale(1.1);
}

/* Metrics band under about */
.about-metrics {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 28px 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    text-align: center;
}

.metric-item { color: var(--dark-gray); }
.metric-number { 
    font-size: 2.2rem; 
    font-weight: 800; 
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #60a5fa 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    position: relative;
    letter-spacing: 1px; 
}
.metric-label { 
    margin-top: 6px; 
    font-size: .9rem; 
    text-transform: uppercase; 
    letter-spacing: .8px; 
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #60a5fa 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    position: relative;
}

@media (max-width: 900px) {
    .about-content { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .about-pools { 
        flex-direction: column; 
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }
    
    .photo-pool:nth-child(2) {
        align-self: center;
        margin-right: 0;
    }
    
    .photo-pool {
        width: 200px;
        height: 200px;
    }
    
    .metric-grid { 
        grid-template-columns: 1fr 1fr; 
        row-gap: 16px; 
        gap: 20px;
    }
}

/* Responsive Home Section */
@media (max-width: 768px) {
    .home {
        padding: 80px 0;
    }
    
    .home-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .home-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .home-subtitle {
        text-align: center;
    }
    
    .home-description {
        text-align: center;
    }
    
    .home-buttons {
        justify-content: center;
    }
    
    .highlight-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .highlight-card:hover {
        transform: translateY(-5px);
    }
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .about-pools {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 30px;
    }
    
    .photo-pool {
        width: 180px;
        height: 180px;
    }
    
    .photo-pool:nth-child(2) {
        align-self: center;
        margin-right: 0;
    }
    
    .about-metrics {
        margin-top: 30px;
        padding: 20px 15px;
    }
    
    .metric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        row-gap: 20px;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .feature {
        padding: 15px;
    }
    
    .photo-pool {
        width: 150px;
        height: 150px;
    }
    
    .about-metrics {
        padding: 15px 10px;
    }
    
    .metric-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .metric-number {
        font-size: 1.6rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
}

/* Banner responsive styles */
.hero-banner {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Desktop banner - visible by default */
.hero-banner-desktop {
    display: block;
}

/* Mobile banner - hidden by default */
.hero-banner-mobile {
    display: none;
}

/* Mobile responsive - show mobile banner, hide desktop */
@media (max-width: 768px) {
    .hero-banner-desktop {
        display: none;
    }
    
    .hero-banner-mobile {
        display: block;
    }
    
    .hero {
        padding: 0;
        background: transparent;
        min-height: 100vh;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: transparent;
}

/* Vehicle Feature (character spec style) */
.vehicle-feature {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 50%, #edf0f3 100%);
}

/* Split Banners Carousel */
/* removed: split banners carousel styles */

/* Ensure nav symbols always render */
.split-prev::before { content: '\2039'; font-family: Arial, Helvetica, sans-serif; }
.split-next::before { content: '\203A'; font-family: Arial, Helvetica, sans-serif; }

/* Beliefs Section */
.beliefs { background: #0b3fad; color: #ffffff; padding: 5rem 0; position: relative; }
.beliefs__header { text-align: center; margin-bottom: 3rem; }
.beliefs__header h2 { font-weight: 800; letter-spacing: .3px; }
.beliefs__underline { display: inline-block; width: 120px; height: 6px; background: #ffd400; border-radius: 999px; margin-top: .75rem; }

.beliefs__grid { display: grid; }
.beliefs__grid--2x2 { grid-template-columns: 1fr; }

.beliefs__photos { display: flex; align-items: center; justify-content: center; }
.photo-grid-2x2 { position: relative; width: 100%; max-width: 900px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 28px; margin: 0 auto; justify-items: center; align-items: start; }
.photo-grid-2x2 .grid-lines { position: absolute; inset: 0; border: 3px solid rgba(255,255,255,.35); border-radius: 16px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.08); }
.belief-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.belief-card h3 { margin-top: .75rem; font-size: 1.1rem; }
.belief-card p { color: #e6eeff; font-size: .95rem; }
.photo-frame { width: 160px; height: 160px; border-radius: 14px; overflow: hidden; position: relative; }
.photo-frame::before { content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 2px rgba(59,130,246,.8); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Glowing blue frame */
.glow { box-shadow: 0 0 0 2px #3b82f6, 0 0 25px rgba(59,130,246,.75), 0 0 60px rgba(59,130,246,.45); }

@media (max-width: 900px) {
    .photo-grid-2x2 { max-width: 520px; gap: 18px; }
    .photo-frame { width: 140px; height: 140px; }
}

@media (max-width: 640px) {
    .photo-grid-2x2 { max-width: 420px; gap: 14px; grid-template-columns: 1fr; grid-template-rows: none; }
    .photo-grid-2x2 { display: grid; }
    .photo-grid-2x2 .grid-lines { display: none; }
    .belief-card { align-items: center; text-align: center; }
    .photo-frame { width: 120px; height: 120px; }
}

/* Sedes Section */
.sedes {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
}

.sedes__header {
    text-align: center;
    margin-bottom: 4rem;
}

.sedes__header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.sedes__underline {
    display: inline-block;
    width: 120px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 999px;
    margin-top: 0.75rem;
}

.sedes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sede-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.sede-card:hover {
    transform: translateY(-10px);
}

.sede-photo {
    width: 100%;
    max-width: 350px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.sede-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sede-card:hover .sede-photo img {
    transform: scale(1.05);
}

.sede-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.sede-card p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-sede {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-sede:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

.btn-sede i {
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sedes {
        padding: 4rem 0;
    }
    
    .sedes__header h2 {
        font-size: 2rem;
    }
    
    .sedes__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .sede-card {
        padding: 2rem;
    }
    
    .sede-photo {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .sedes__header h2 {
        font-size: 1.75rem;
    }
    
    .sede-card h3 {
        font-size: 1.5rem;
    }
    
    .btn-sede {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #e6edff 100%);
    padding: 6rem 0;
    position: relative;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials__header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.testimonials__header p {
    color: #64748b;
    font-size: 1.1rem;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa, #93c5fd);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.testimonial-quote {
    color: #3b82f6;
    font-size: 2.5rem;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials__header h2 {
        font-size: 2rem;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

.vehicle-feature .container {
    position: relative;
}

.vehicle-feature__text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.vehicle-feature__text h2 {
    font-size: 2.2rem;
    margin-bottom: .5rem;
}

.vehicle-feature__text h3 {
    font-weight: 700;
    color: #334155;
    margin-bottom: .75rem;
}

.vehicle-feature__text p {
    color: #475569;
}

.vehicle-feature__stage {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.vehicle-feature__image {
    width: 100%;
    height: auto;
    display: block;
}

.vehicle-spec {
    position: absolute;
}

.vehicle-spec--tl { top: 4%; left: -2%; }
.vehicle-spec--tr { top: 8%; right: -2%; }
.vehicle-spec--bl { bottom: 4%; left: -2%; }
.vehicle-spec--br { bottom: 8%; right: -2%; }

.vehicle-spec__card {
    width: 220px;
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
    backdrop-filter: blur(6px);
    position: relative;
}

/* Marco azul brillante con degradado */
.vehicle-spec__card::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 18px;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
}
.vehicle-spec__card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(255,255,255,0.95);
}
.vehicle-spec__card > * { position: relative; z-index: 1; }

.vehicle-spec__icon {
    width: 40px; height: 40px; display: grid; place-items: center;
    border-radius: 10px; margin-bottom: .5rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 100%);
}

.vehicle-spec__card h4 { font-size: 1rem; color: #1f2937; margin-bottom: .25rem; }
.vehicle-spec__card p { font-size: .85rem; color: #475569; line-height: 1.4; max-width: 220px; }

@media (max-width: 1024px) {
    /* Mantener posiciones relativas sobre la imagen en mobile grande */
    .vehicle-feature__stage { position: relative; }
    .vehicle-spec { transform: scale(.9); }
    .vehicle-spec__card { width: 200px; }
    .vehicle-spec__card h4 { font-size: .95rem; }
    .vehicle-spec__card p { font-size: .8rem; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
}

@media (max-width: 768px) {
    /* En móviles, los specs pasan debajo en grilla 2x2 */
    .vehicle-feature__stage {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        align-items: start;
    }
    .vehicle-feature__image { grid-column: 1 / -1; width: 100%; height: auto; }
    .vehicle-spec { position: static; transform: none; }
    .vehicle-spec__card { width: 100%; }
    .vehicle-spec__card h4 { font-size: .9rem; }
    .vehicle-spec__card p { font-size: .78rem; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.contact-emoji {
    font-size: 1.8rem;
    display: block;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-details span {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8fafc;
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-contact-submit {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-contact-submit i {
    font-size: 1rem;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-form-card {
        padding: 20px 15px;
    }
}

.services-contact {
    background: var(--gradient);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    50% { transform: rotate(180deg) translateX(20px); }
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.whatsapp-contact i {
    font-size: 1.5rem;
    color: #25D366;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-contact span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
}

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #60a5fa 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.quote-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.quote-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.quote-form .form-group {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
}

.quote-form .form-group.active {
    transform: translateY(0);
    opacity: 1;
}

.quote-form .form-group.hidden {
    display: none;
}

.quote-form .form-group.full-width {
    grid-column: 1 / -1;
}

.quote-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8fafc;
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.quote-form .form-group input::placeholder,
.quote-form .form-group textarea::placeholder {
    color: var(--medium-gray);
    font-weight: 400;
}

/* Select Styling */
.quote-form .form-group select {
    appearance: none;
    background-image: none;
    cursor: pointer;
    padding-right: 3rem;
}

.quote-form .select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    pointer-events: none;
    font-size: 0.8rem;
    margin-top: 1.5rem;
}

/* Dimensions Inputs */
.quote-form .dimensions-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-form .dimensions-inputs input {
    flex: 1;
}

.quote-form .dimensions-inputs span {
    color: var(--medium-gray);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Submit Button */
.quote-form .btn-submit {
    grid-column: 1 / -1;
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.quote-form .btn-submit:active {
    transform: translateY(-1px);
}

.quote-form .btn-submit i {
    font-size: 1rem;
}

/* Form Message */
.form-message {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-message.loading {
    background: #dbeafe;
    color: var(--primary-blue);
    border: 1px solid #bfdbfe;
}

/* Progress Indicator */
.form-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--gradient);
    transition: width 0.5s ease;
    border-radius: 0 5px 5px 0;
}

/* Animation for new fields */
@keyframes slideInFromRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-group.entering {
    animation: slideInFromRight 0.5s ease-out;
}

/* Validation States */
.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
    border-color: #10b981;
    background: #f0fdf4;
}

.form-group.valid::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-weight: bold;
    margin-top: 1.5rem;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-group.invalid::after {
    content: '✗';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-weight: bold;
    margin-top: 1.5rem;
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: var(--light-gray);
    text-align: center;
}

.clients h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #60a5fa 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.clients p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 160px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-logo img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.logo-small span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

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

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-overlay {
        padding: 2rem;
        margin: 0 1rem;
    }

    .hero-overlay .logo-name {
        font-size: 2.5rem;
    }

    .hero-overlay .logo-subtitle {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    /* removed: .truck-illustration responsive rules (unused) */

    .services-text h2 {
        font-size: 2rem;
    }

    .clients h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 1rem 2rem;
    }

    .logo-name {
        font-size: 2rem;
    }

    .logo-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    /* removed: .truck-illustration responsive rules (unused) */

    .services-text h2 {
        font-size: 2rem;
    }

    .clients h2 {
        font-size: 2rem;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.services-text {
    animation: slideInLeft 1s ease-out;
}

/* Banner text moon color overrides */
/* removed: hero-overlay moon color overrides (unused) */

.service-soft__card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.service-soft__list {
    list-style: none;
    padding-left: 0;
    color: #475569;
}

.service-soft__list li {
    position: relative;
    padding-left: 1.25rem;
    margin: 0.35rem 0;
}

.service-soft__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #93c5fd, #e5e7eb);
    box-shadow: 0 0 0 3px rgba(147,197,253,.25);
}

@media (max-width: 1024px) {
    .services-soft__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .services-soft {
        padding: 4rem 0;
    }
    .services-soft__grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing {
    position: relative;
    padding: 6rem 0 7rem;
    background: linear-gradient(180deg, #ffffff 0%, #f2f4f7 50%, #eceff3 100%);
}

.pricing__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pricing__header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing__band {
    position: relative;
    width: 100%;
    max-width: 1100px;
    border-radius: 22px;
    padding: 2.5rem 1.25rem 7rem;
    background: linear-gradient(180deg, #2b64ff 0%, #3b82f6 70%, #4f8ffd 100%);
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.35);
    overflow: hidden;
}

.pricing__band h2 {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.pricing__band p {
    text-align: center;
    opacity: 0.95;
    margin-top: 0.35rem;
}

/* translucent rounded squares inside */
.pricing__decor {
    position: absolute;
    top: 40px;
    width: 200px;
    height: 220px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    filter: blur(0.2px);
}

.pricing__decor--left { left: -30px; }
.pricing__decor--right { right: -30px; }

.pricing__toggle {
    display: inline-flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.18);
    padding: 6px;
    border-radius: 999px;
    margin: 1rem auto 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.pricing__toggle .toggle__btn {
    border: none;
    background: transparent;
    color: #e7efff;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
}

.pricing__toggle .toggle__btn--active {
    background: #ffffff;
    color: #2563eb;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: -5rem;
}

.price-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    padding: 1.25rem 1.25rem 1.5rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(15,23,42,0.12);
}

.price-card--featured {
    border-width: 2px;
    border-color: rgba(37, 99, 235, 0.35);
}

.price-card__head { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.price-card__dot { width: 12px; height: 12px; border-radius: 50%; background: #3b82f6; box-shadow: 0 0 0 5px rgba(59, 130, 246, .15); }
.price-card__plan { color: #1f2937; font-weight: 700; }

.price-card__price { display: flex; align-items: baseline; gap: .35rem; margin: .25rem 0 .5rem; }
.price-card__price .amount { font-size: 2rem; font-weight: 800; color: #0f172a; }
.price-card__price .unit { color: #6b7280; font-size: .85rem; }

.price-card__desc { color: #6b7280; margin-bottom: .75rem; }

.price-card__list { list-style: none; padding-left: 0; color: #334155; display: grid; gap: .4rem; }
.price-card__list li { position: relative; padding-left: 1.25rem; }
.price-card__list li::before { content: '\2713'; position: absolute; left: 0; color: #10b981; font-weight: 800; }

.price-card__actions { margin-top: 1rem; display: flex; }

.btn-outline { background: #ffffff; color: #2563eb; border: 2px solid #2563eb; padding: .65rem 1rem; border-radius: 999px; font-weight: 700; cursor: pointer; transition: all .2s ease; }
.btn-outline:hover { background: #2563eb; color: #ffffff; }

/* reuse existing .btn-primary color from site; ensure rounded */
.price-card .btn-primary { border-radius: 999px; padding: .7rem 1rem; font-weight: 700; }

@media (max-width: 1024px) {
    .pricing__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .pricing { padding: 4.5rem 0; }
    .pricing__grid { grid-template-columns: 1fr; margin-top: -2.5rem; }
    .pricing__band { padding-bottom: 3.5rem; }
}

/* WhatsApp Floating Buttons */
.whatsapp-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-floating {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.whatsapp-icon i {
    font-size: 32px;
    color: #ffffff;
}

.whatsapp-label {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: #1e40af;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-floating:hover .whatsapp-label {
    opacity: 1;
    right: 70px;
}

/* Animación de pulso flotante */
@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
}

/* Diferentes colores para identificar cada sede */
.whatsapp-bogota {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-medellin {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

/* Responsive - Ajustes para móvil */
@media (max-width: 768px) {
    .whatsapp-floating-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .whatsapp-floating {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon i {
        font-size: 28px;
    }
    
    .whatsapp-label {
        font-size: 13px;
        padding: 6px 12px;
        right: 65px;
    }
    
    .whatsapp-floating:hover .whatsapp-label {
        right: 62px;
    }
}

@media (max-width: 480px) {
    .whatsapp-floating-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .whatsapp-floating {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i {
        font-size: 26px;
    }
    
    /* En móviles pequeños, mostrar siempre las etiquetas */
    .whatsapp-label {
        opacity: 0.9;
        font-size: 11px;
        padding: 5px 10px;
        right: 58px;
    }
}
