﻿:root {
    --primary: #1e90ff;
    --primary-light: #4da6ff;
    --primary-dark: #0066cc;
    --secondary: #f8f9fa;
    --accent: #ff6b6b;
    --accent-light: #ff8e8e;
    --dark: #0a2540;
    --light: #ffffff;
    --gray: #f0f2f5;
    --text: #444;
    --border: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light);
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(-100%);
        transition: transform 0.5s ease;
    }

    .btn:hover::after {
        transform: translateX(0);
    }

    .btn:hover {
        background: var(--primary-dark);
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(30, 144, 255, 0.3);
    }

.btn-accent {
    background: var(--accent);
}

    .btn-accent:hover {
        background: var(--accent-light);
        box-shadow: 0 15px 25px rgba(255, 107, 107, 0.3);
    }

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title h2 {
        font-size: 40px;
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 3px;
        }

    .section-title p {
        font-size: 18px;
        max-width: 700px;
        margin: 25px auto 0;
        color: var(--dark);
    }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.header-scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .logo h1 {
        font-size: 30px;
        background: linear-gradient(to right, var(--primary), var(--primary-dark));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-left: 10px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

.logo-icon {
    font-size: 36px;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-left: 30px;
    }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

            nav ul li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 3px;
                background: var(--primary);
                transition: width 0.3s ease;
                border-radius: 2px;
            }

            nav ul li a:hover::after,
            nav ul li a.active::after {
                width: 100%;
            }

            nav ul li a:hover {
                color: var(--primary);
            }

.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, rgba(10, 37, 64, 0.9) 0%, rgba(30, 144, 255, 0.9) 100%), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    color: var(--light);
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.2;
    }

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 58px;
    margin-bottom: 25px;
    color: var(--light);
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Servicios */
.services {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

    .services::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: var(--primary-light);
        opacity: 0.05;
        border-radius: 50%;
        z-index: 0;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    transform: translateY(0);
}

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

.service-icon {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--light);
}

.service-content {
    padding: 35px 30px;
}

    .service-content h3 {
        margin-bottom: 18px;
        font-size: 24px;
        color: var(--primary-dark);
    }

    .service-content p {
        margin-bottom: 0;
    }

/* Pasos */
.steps {
    position: relative;
    background: url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1100&q=80') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--light);
}

    .steps::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(38, 38, 38, 0.92);
    }

    .steps .section-title h2,
    .steps .section-title p {
        color: var(--light);
    }

        .steps .section-title h2::after {
            background: var(--light);
        }

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

    .steps-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: var(--light);
        opacity: 0.3;
    }

.step {
    position: relative;
    width: calc(50% - 50px);
    padding: 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 70px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .step:nth-child(odd) {
        margin-left: auto;
    }

    .step:nth-child(even) {
        margin-right: auto;
    }

    /*.step::before {
        content: '';
        position: absolute;
        top: 35px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: var(--light);
        z-index: 1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }*/

    .step:nth-child(odd)::before {
        right: -57px;
    }

    .step:nth-child(even)::before {
        left: -57px;
    }

.step-number {
    position: absolute;
    top: 32px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    z-index: 2;
    background: var(--light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step:nth-child(odd) .step-number {
    right: -50px;
}

.step:nth-child(even) .step-number {
    left: -50px;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--light);
}

.step p {
    color: rgba(255, 255, 255, 0.9);
}

/* Beneficios */
.benefits {
    background: linear-gradient(135deg, #f5f7fa 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

    .benefits::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 600px;
        height: 600px;
        background: var(--primary-light);
        opacity: 0.05;
        border-radius: 50%;
        z-index: 0;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--light);
    border-radius: 15px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary);
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

.benefit-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 25px;
}

.benefit-card h3 {
    margin-bottom: 18px;
    font-size: 24px;
}

.benefit-card p {
    margin-bottom: 0;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--light);
    transition: var(--transition);
}

    .faq-item:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.faq-question {
    background: var(--light);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
}

    .faq-question i {
        transition: transform 0.4s ease;
        color: var(--primary);
        font-size: 22px;
    }

.faq-answer {
    background: var(--gray);
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 1000px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Videos */
.videos {
    background: linear-gradient(to bottom, #f8f9fa, #e6f0ff);
    position: relative;
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.video-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
}

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

.video-thumb {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .video-thumb i {
        font-size: 70px;
        color: rgba(255, 255, 255, 0.9);
        transition: transform 0.3s ease;
    }

    .video-thumb:hover i {
        transform: scale(1.1);
        color: var(--light);
    }

.video-content {
    padding: 25px;
    background: var(--light);
}

    .video-content h3 {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .video-content p {
        margin-bottom: 0;
    }

/* Testimonios */
.testimonials {
    background: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1100&q=80') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    color: var(--light);
}

    .testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(30, 144, 255, 0.92);
    }

    .testimonials .section-title h2,
    .testimonials .section-title p {
        color: var(--light);
    }

        .testimonials .section-title h2::after {
            background: var(--light);
        }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-info h4 {
    color: var(--light);
    margin-bottom: 5px;
    font-size: 20px;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.testimonial-content {
    font-style: italic;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.rating {
    color: #FFD700;
    margin-top: 20px;
    font-size: 18px;
}

/* Contacto */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--primary-dark);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary);
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p,
.contact-text a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-text a:hover {
        color: var(--primary);
    }

.contact-map {
    height: 350px;
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--primary-dark);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.2);
    }

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

    .whatsapp-btn:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
        animation: none;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 20px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--light);
    margin-bottom: 30px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--primary);
    }

.footer-col p {
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 15px;
    }

        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }

            .footer-col ul li a:hover {
                color: var(--primary);
                padding-left: 8px;
            }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--light);
        transition: var(--transition);
        font-size: 20px;
    }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

.opening-hours li {
    display: flex;
    justify-content: space-between;
    color: #bbb;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    color: #999;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 48px;
    }

    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .mobile-menu {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        background: var(--light);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: all 0.4s ease;
        z-index: 1000;
    }

        nav ul.active {
            left: 0;
        }

        nav ul li {
            margin: 20px 0;
        }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 20px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .steps-container::before {
        left: 30px;
    }

    .step {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

        .step:nth-child(odd)::before,
        .step:nth-child(even)::before {
            left: -55px;
        }

        .step:nth-child(odd) .step-number,
        .step:nth-child(even) .step-number {
            left: -48px;
        }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 16px;
    }

    .hero {
        min-height: 700px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero {
        min-height: 600px;
    }

    .stats {
        gap: 30px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.logo-car {
    font-size: 28px;
    color: var(--primary);
}

.logo-gps {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 14px;
    color: #02bde9;
    background: white;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}