:root {
    --vw-navy: #001e50;
    --vw-blue: #00b0f0;
    --vw-green: #37d37a;
    --vw-dark-navy: #001840;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-brand img {
    height: 40px;
    margin-right: 15px;
}

.brand-name {
    font-weight: 700;
    color: var(--vw-navy);
    font-size: 1.5rem;
}

.navbar-brand {
    position: relative;
}

.navbar-brand::before,
.navbar-brand::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    height: 2px;
    background-color: var(--vw-navy);
}

.navbar-brand::before {
    right: 100%;
    margin-right: 15px;
}

.navbar-brand::after {
    left: 100%;
    margin-left: 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url('../images/fondo.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    padding: 60px 0;
}

.hero-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#leadForm .form-control,
#leadForm .form-select {
    color: var(--vw-navy);
    font-weight: 500;
}

#leadForm .form-control::placeholder {
    color: var(--vw-navy);
    opacity: 0.8;
}

.btn-presupuesto {
    background-color: var(--vw-blue);
    color: white;
    border: none;
    font-weight: 700;
    padding: 12px;
    width: 100%;
    margin-top: 10px;
    transition: transform 0.2s;
}

.btn-presupuesto:hover {
    background-color: #0099d0;
    color: white;
    transform: scale(1.02);
}

/* Car Cards */
.car-card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.car-image-container {
    position: relative;
    overflow: hidden;
}

.car-image-container img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.badge-car {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.car-title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #000;
    letter-spacing: -0.05em;
}

.car-description {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #444;
    line-height: 1.4;
}

.car-price {
    font-weight: 700;
    font-size: 1.8rem;
    color: #000;
    margin-top: 0px;
}

.btn-consultar {
    background-color: #25d366; /* Verde WhatsApp / CTA */
    color: white;
    border-radius: 25px;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-consultar:hover {
    background-color: #1eb956;
    color: white;
}

/* Banner Marquee */
.rolling-banner {
    background-color: #00bfff; /* Celeste brillante */
    color: white;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee span {
    padding-right: 0px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer structure */
.footer-main {
    background-color: #f7f7f7;
    padding: 50px 0;
    color: #333;
}

.sede-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--vw-navy);
}

.sede-info p {
    margin-bottom: 0px;
    font-size: 0.95rem;
    color: var(--vw-navy);
}

.sede-info .schedule {
    font-weight: 600;
}

/* Bottom Footer */
.footer-bottom {
    background-color: var(--vw-navy); 
    padding: 40px 0;
}

.social-icons-group {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: white;
    color: var(--vw-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, background-color 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: var(--vw-blue);
    color: white;
}

.salto-logo {
    height: 25px;
    opacity: 0.9;
}

/* WhatsApp Floating */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}

.whatsapp-btn:hover img {
    transform: scale(1.1);
}



