/* --- VARIABLES DE MARCA --- */
:root {
    --gold-text: #c5a059;
    --gold-glow: rgba(197, 160, 89, 0.25);
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

/* --- RESET Y BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: var(--white);
    overflow-x: hidden;
}

/* --- SELECTOR DE IDIOMAS (Cápsula Flotante) --- */
.lang-switcher {
    position: fixed;
    top: 30px;
    right: 5%;
    z-index: 10000; /* Por encima de todo */
    font-size: 12px;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50px;
    display: flex;
    gap: 15px;
    backdrop-filter: blur(5px); /* Efecto de vidrio esmerilado */
}

.lang-switcher span {
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.5;
}

.lang-switcher span.active {
    color: var(--gold-text);
    font-weight: bold;
    opacity: 1;
}

.lang-switcher span:hover {
    opacity: 1;
    color: var(--gold-text);
}

/* --- SECCIÓN PRINCIPAL (HERO) --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../image/fondo.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 8%;
    width: 100%;
}

/* --- LOGO --- */
.main-logo {
    width: 540px; /* Tamaño aumentado */
    height: auto;
    display: block;
    margin-bottom: 40px;
    /* Retroiluminación dorada tenue */
    filter: drop-shadow(0 0 25px var(--gold-glow));
}

/* --- NAVEGACIÓN --- */
.main-nav {
    margin-bottom: 35px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    margin-right: 35px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    opacity: 1;
    color: var(--gold-text);
}

/* --- TEXTOS --- */
.hero-text {
    max-width: 580px;
}

.hero-text h2 {
    color: var(--gold-text);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* --- BOTÓN (CTA) --- */
.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.4s ease;
    background: transparent;
}

.btn-cta:hover {
    background: var(--gold-text);
    border-color: var(--gold-text);
    color: #000;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}

/* --- RESPONSIVE (MÓVILES) --- */
@media (max-width: 768px) {
    .lang-switcher {
        top: 20px;
        right: 50%;
        transform: translateX(50%); /* Centrado horizontal */
        padding: 8px 15px;
    }

    .hero {
        justify-content: center;
        text-align: center;
        background-position: 75% center; /* Ajuste para ver mejor la moto en vertical */
    }

    .hero-content {
        padding: 0 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-logo {
        width: 85%; /* Se adapta al ancho del celular */
        max-width: 350px;
        margin-bottom: 30px;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .main-nav a {
        margin-right: 0;
        font-size: 11px;
    }

    .hero-text h2 {
        font-size: 1.1rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .btn-cta {
        width: 100%;
        max-width: 280px;
    }
/* --- SECCIÓN DE CONTACTO --- */
.contact-section {
    background: #0a0a0a;
    padding: 100px 8%;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.contact-container h3 {
    color: var(--gold-text);
    letter-spacing: 4px;
    margin-bottom: 50px;
    font-size: 1.5rem;
}

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

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input, textarea {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    color: var(--white);
    font-family: inherit;
    transition: 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--gold-text);
    background: rgba(197, 160, 89, 0.05);
    }
/* --- PÁGINA DE CONTACTO --- */
.contact-page {
    background: #050505 !important;
}

.sub-nav {
    padding: 40px 8%;
    text-align: left;
}

.sub-nav a {
    color: var(--gold-text);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.sub-nav a:hover {
    border-bottom: 1px solid var(--gold-text);
}

.contact-form-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.form-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.form-container h1 {
    color: var(--white);
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.form-container p {
    color: var(--gold-text);
    margin-bottom: 50px;
    opacity: 0.8;
}

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

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

.form-container input, 
.form-container textarea {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    padding: 18px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.form-container input:focus, 
.form-container textarea:focus {
    outline: none;
    border-color: var(--gold-text);
    background: #181818;
}

.full-width {
    grid-column: span 2;
}

.btn-submit {
    background: var(--gold-text);
    color: #000;
    border: none;
    padding: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .input-row {
        grid-template-columns: 1fr;
    }
    .form-container h1 {
        font-size: 1.8rem;
    }
}
}