/*
Theme Name: Salzburgo Auto Parts
Theme URI: https://salzburgogroup.cl
Author: Salzburgo Group
Description: Tema a medida para Salzburgo Group Chile (Venta de Repuestos y Maquinaria). Estilo industrial oscuro con diseño Racing.
Version: 1.0
Text Domain: salzburgo
*/

/* =========================================
   1. VARIABLES Y CONFIGURACIÓN BASE
   ========================================= */
:root {
    --salz-yellow: #EAB308;
    --salz-dark: #020617;
    --salz-slate: #1E293B;
    --salz-text: #F1F5F9;
    --salz-gray: #94A3B8;
}

/* =========================================
   2. SCROLLBAR PERSONALIZADO (Estilo Racing)
   ========================================= */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--salz-dark);
}

::-webkit-scrollbar-thumb {
    background-color: var(--salz-yellow);
    border-radius: 10px;
    border: 3px solid var(--salz-dark);
}

/* Firefox */
html {
    scrollbar-width: auto;
    scrollbar-color: var(--salz-yellow) var(--salz-dark);
}

/* =========================================
   3. ANIMACIONES (KEYFRAMES)
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up { 
    animation: fadeInUp 0.8s ease-out forwards; 
}

.animate-fade-in { 
    animation: fadeIn 0.5s ease-out forwards; 
}

/* =========================================
   4. CLASES DE LÓGICA (PARA EL FORMULARIO JS)
   ========================================= */
.hidden-step { 
    display: none !important; 
}

.active-step { 
    display: block !important; 
    animation: fadeIn 0.4s ease-in-out;
}

/* =========================================
   5. COMPONENTES Y ESTILOS RACING (ELEMENTOR LEGACY)
   ========================================= */

/* Botón Amarillo Inclinado */
.salz-btn {
    background-color: var(--salz-yellow) !important;
    color: var(--salz-dark) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    border-radius: 0px !important;
    transform: skewX(-10deg);
    transition: all 0.3s ease;
    padding: 15px 40px !important;
    display: inline-block;
    cursor: pointer;
}

.salz-btn span {
    transform: skewX(10deg);
    display: inline-block;
}

.salz-btn:hover {
    background-color: #FACC15 !important;
    transform: skewX(-10deg) scale(1.05);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}

/* Tarjetas "Nosotros" */
.salz-card {
    height: 100%;
    background-color: rgba(30, 41, 59, 0.5) !important;
    border: 1px solid #334155;
    padding: 40px 20px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.salz-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--salz-yellow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.salz-card:hover::before { transform: scaleX(1); }
.salz-card:hover {
    border-color: var(--salz-yellow);
    transform: translateY(-5px);
    background-color: rgba(30, 41, 59, 0.8) !important;
}

/* Maquinaria Pesada */
.salz-machine-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #334155;
    height: 400px;
    display: flex;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.salz-machine-card:hover { border-color: var(--salz-yellow); }

.salz-machine-card::before {
    content: ''; 
    position: absolute; 
    inset: 0;
    background: linear-gradient(to top, #020617 0%, rgba(2,6,23,0.7) 60%, transparent 100%);
    z-index: 1;
}

.salz-tag {
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    padding: 4px 10px; border-radius: 2px;
}
.tag-sale { background-color: var(--salz-yellow); color: var(--salz-dark); }
.tag-rent { background-color: rgba(255, 255, 255, 0.1); color: var(--salz-text); border: 1px solid rgba(255, 255, 255, 0.2); }

/* =========================================
   6. REGLAS RESPONSIVE
   ========================================= */
@media (max-width: 767px) {
    .salz-btn {
        width: 100%;
        text-align: center;
    }
    
    .salz-machine-card {
        height: 320px;
    }
}