/* --- Variables y Reset --- */
:root {
    --primary-orange: #f37a32;
    --primary-blue: #0f428c;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --background-white: #ffffff;
    --body-font: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body-font);
    background: var(--background-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* --- Partículas --- */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}

/* --- Header --- */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.header-container { display: flex; align-items: center; }
.logo { max-height: 50px; }

/* --- Hero Section (Dos Columnas) --- */
.hero {
    padding: 160px 0 80px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Etiqueta de "En Construcción" */
.badge {
    background: rgba(243, 122, 50, 0.1);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(243, 122, 50, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    line-height: 1.15;
}
.highlight { color: var(--primary-orange); }
.glow-text { text-shadow: 0 4px 15px rgba(15, 66, 140, 0.15); }

.description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Imagen del Carro */
/* --- Imagen del Carro (Optimizada para PNG transparente) --- */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center; /* Centra el carro si la columna es más ancha */
}

.car-img {
    /* filter: drop-shadow crea una sombra sobre la silueta real del carro, no sobre un cuadrado */
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.25));
    transition: transform 0.5s ease;
    width: 100%;
    max-width: 600px; /* Evita que el carro se vea exageradamente grande en monitores ultra anchos */
}

/* Efecto al pasar el mouse (flota un poco más y se acerca) */
.car-img:hover {
    transform: translateY(-15px) scale(1.02);
    filter: drop-shadow(0 35px 35px rgba(0,0,0,0.3)); /* La sombra se difumina más al "subir" */
}

/* --- Botones --- */
.cta-buttons { display: flex; gap: 20px; }
.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-primary {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(243, 122, 50, 0.3);
}
.btn-primary:hover {
    background: #d66421;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(243, 122, 50, 0.4);
}

/* --- Contacto Provisional --- */
.contact-preview { margin-bottom: 80px; }
.contact-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-blue);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.icon-large { font-size: 3rem; color: var(--primary-orange); }
.phone-item p { color: #666; }
.phone-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: var(--transition);
}
.phone-link:hover { color: var(--primary-orange); }

/* --- Footer --- */
footer {
    padding: 40px 0;
    background: #111;
    color: var(--text-light);
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.logo-footer { max-height: 40px; filter: grayscale(1) brightness(2); opacity: 0.7; }
footer p { font-size: 0.9rem; opacity: 0.5; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }
    .hero-content { align-items: center; }
    .description { max-width: 100%; }
    .info-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .contact-wrapper { padding: 30px 20px; }
}