/*
 * Hoja de Estilos Personalizada para Gasoline
 * Autor: Tu Desarrollador Web Senior
 * Versión: 2.0 (Logos en SVG)
*/

/* ======== VARIABLES DE COLOR Y FUENTES ======== */
:root {
    --color-fondo: #f5f5f5;
    --color-texto-principal: #1a314c;
    --color-naranja-acento: #ff4f00;
    --font-principal: 'Montserrat', sans-serif;
}

/* ======== ESTILOS GLOBALES ======== */
body {
    background-color: var(--color-fondo);
    font-family: var(--font-principal);
    color: var(--color-texto-principal);
    overflow-x: hidden;
}

/* ======== LOGOS DE LAS ESQUINAS ======== */
.logo-esquina-superior {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 120px;
    height: auto;
    z-index: 100;
}

.logo-esquina-inferior {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 500px;
    height: auto;
    z-index: 100;
}


/* ======== ESTILOS DEL CONTENIDO CENTRAL ======== */
.main-content {
    padding: 15px;
}

/* --- NUEVA CLASE PARA EL LOGO SVG PRINCIPAL --- */
/* Controlamos el ancho del SVG y usamos max-width para asegurar que sea responsivo. */
.logo-principal-svg {
    width: 600px;  /* Ancho base del logo en pantallas grandes. */
    max-width: 90%; /* Asegura que nunca exceda el 90% del ancho de su contenedor. */
    height: auto; /* Mantiene la proporción del SVG. */
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #62676b;
}

/* ======== ESTILOS DEL BOTÓN PERSONALIZADO ======== */
.btn-custom-orange {
    background-color: var(--color-naranja-acento);
    border-color: var(--color-naranja-acento);
    color: #fff;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-custom-orange:hover {
    background-color: #e64a19;
    border-color: #e64a19;
    color: #fff;
    transform: translateY(-2px);
}


/* ======== REGLAS DE RESPONSIVIDAD (MEDIA QUERIES) ======== */
@media (max-width: 768px) {
    .logo-esquina-superior {
        top: 30px;
        right: 30px;
        width: 70px;
    }

    .logo-esquina-inferior {
        width: 200px;
    }

    /* Ajustamos el tamaño del logo principal en tablets. */
    .logo-principal-svg {
        width: 450px;
    }

    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-esquina-superior {
        top: 20px;
        right: 20px;
        width: 50px;
    }

    .logo-esquina-inferior {
        width: 150px;
    }

    /* Reducimos significativamente el logo principal en móviles. */
    .logo-principal-svg {
        width: 300px;
    }

    .subtitle {
        font-size: 0.8rem;
    }
}