        .section-content>* {
            margin-bottom: 25px;
        }

        html {
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Georgia, 'Times New Roman', Times, serif;
            background: #16284f;
            color: white;
            overflow-x: hidden;
        }

        /* NAV */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            background: #16284f;
            border-bottom: 2px solid #ffc107;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1100px;
            margin: auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 35px;
            width: auto;
            transition: 0.3s;
        }

        #logo {
            opacity: 0;
            transform: translateY(-10px);
            transition: 0.3s ease;
        }

        #logo.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* MENU ICON */
        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            transition: 0.3s;
        }

        .menu-toggle.active {
            transform: rotate(90deg);
        }

        /* NAV LINKS */
        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
        }

        .nav-links a:hover {
            color: #ffc107;
        }

        /* OVERLAY */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 900;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* HEADER */
        .header-banner {
            margin-top: 70px;
        }

        .header-banner img {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
        }

        /* HERO */
        .hero-text {
            text-align: center;
            padding: 40px 20px;
        }

        .hero-text h2 {
            font-size: clamp(20px, 4vw, 32px);
        }

        .highlight {
            color: #ffc107;
        }

        /* SECTIONS */
        .section {
            padding: 35px 20px;
            text-align: center;
            scroll-margin-top: 90px;
        }


        .section-content {
            max-width: 1100px;
            margin: auto;
            padding: 0 20px;
        }

        #contacto h2 {
            margin-bottom: 25px;
        }

        #formulario {
            margin-top: 10px;
        }

        /* FEATURES */
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        /* CARDS */
        .card {
            width: 300px;
            /* ⬅️ tamaño fijo prolijo */
            background: #1F396F;
            padding: 25px;
            border-radius: 10px;
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            border: 1px solid #ffc107;
        }

        .card-title {
            font-size: 18px;
            font-weight: bold;
        }

        .card-sub {
            font-size: 13px;
            color: #ccc;
            margin-top: 8px;
        }

        .features {
            justify-content: center;
        }

        .step {
            width: 55px;
            height: 55px;
            border: 2px solid #e0a800;
            color: #fff;
            background: #16284f;

            font-size: 20px;
            font-weight: bold;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;
            margin: 0 auto 15px;
        }

        /* FORM */
        form {
            max-width: 700px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        input,
        textarea,
        select {
            font-family: Georgia, 'Times New Roman', Times, serif;
            padding: 12px;
            border-radius: 5px;
            border: none;
            font-size: 16px;
        }

        textarea {
            resize: none;
            min-height: 110px;
            max-height: 140px;
            width: 100%;
        }

        button {
            background: #ffc107;
            color: black;
            padding: 12px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        button:hover {
            background: #e0a800;
        }

        select {
            padding: 12px;
            border-radius: 5px;
            border: none;
            font-size: 16px;
        }

        .form-row {
            display: flex;
            gap: 10px;
        }


        .form-row input,
        .form-row select {
            flex: 1;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
            }
        }

        @media (min-width: 769px) {
            form {
                max-width: 700px;
            }

            .form-row {
                gap: 15px;
            }

            input,
            select {
                height: 45px;
            }
        }

        /* WHATSAPP */
        .whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .whatsapp:hover {
            transform: scale(1.1);
            transition: 0.3s;
        }

        /* ANIMACIONES */
        .fade {
            opacity: 0;
            transform: translateY(20px);
            transition: 1s;
        }

        .fade.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 📱 MOBILE */
        @media (max-width: 768px) {

            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                height: 100%;
                width: 260px;
                background: #16284f;
                flex-direction: column;
                padding-top: 80px;
                transition: 0.4s ease;
                z-index: 1000;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
            }

            .nav-links a {
                padding: 15px;
                border-bottom: 1px solid black;
                font-size: 18px;
            }

            .nav-links.active {
                left: 0;
            }

            .features {
                flex-direction: column;
            }

            .card {
                max-width: 100%;
            }

        }

        nav.scrolled .logo img {
            height: 35px;
            /* mismo tamaño, evita que crezca */
        }

        /* 💻 DESKTOP FIX */
        @media (min-width: 769px) {

            .nav-links {
                position: static;
                flex-direction: row;
                background: none;
                height: auto;
                width: auto;
                padding: 0;
            }
        }

        .tilde {
            color: #25D366;
            /* verde para las tildes */
            margin-right: 5px;
        }

        p {
            color: #fff;
            /* tu color actual para texto */
        }

        @keyframes shake {
            0% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-3px);
            }

            50% {
                transform: translateX(3px);
            }

            75% {
                transform: translateX(-3px);
            }

            100% {
                transform: translateX(0);
            }
        }
.lista-autos {
    list-style: none;
    padding: 0;
    margin-top: 15px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: left;
}

.lista-autos li {
    position: relative;
    padding-left: 20px;
}

.lista-autos li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #ffc107;
}
@media (min-width: 769px) and (max-width: 1200px) {
    .lista-autos {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
} 
@media (min-width: 1201px) {
    .lista-autos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
        text-align: center;
    }

    .lista-autos li {
        padding-left: 18px;
    }
}
        /* FOOTER */
footer {
    background: black;
    padding: 8px 10px; /* ⬅️ más chico (antes 15px o más) */
    text-align: center;
    border-top: 2px solid #ffc107;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px; /* ⬅️ menos separación entre íconos */
    margin: 5px 0; /* ⬅️ achica el espacio vertical */
}
/* CONTENEDOR DEL ICONO */
.social-icon {
    width: 32px;  /* ⬅️ apenas más chico */
    height: 32px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}


/* SVG */
.social-icon svg {
    width: 18px;
    height: 18px;
    fill: white; /* ⬅️ clave */
}

/* HOVER */
.social-icon:hover {
    background: #ffc107;
}

.social-icon:hover svg {
    fill: black;
}
.social-icon {
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.social-icon:focus-visible {
    outline: 2px solid #ffc107;
}
.social-icon:active {
    background: #1F396F;
}