/* =========================================
   TALLER MASTER - ESTILO INDUSTRIAL
   ========================================= */

:root {
    --primary: #e74c3c;
    /* Rojo Motor */
    --dark: #2d3436;
    /* Gris Carbono */
    --gray: #636e72;
    /* Gris Metal */
    --light: #f5f6fa;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--dark);
    color: #b2bec3;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #444;
}

.tb-flex {
    display: flex;
    justify-content: space-between;
}

.tb-item i {
    color: var(--primary);
    margin-right: 5px;
}

/* --- NAVBAR --- */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani';
}

.logo i {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    font-family: 'Rajdhani';
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 25px;
    border-radius: 4px;
    transform: skew(-10deg);
    display: inline-block;
}

.btn-nav:hover {
    background: #c0392b;
}

/* --- HERO --- */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1486262715619-01b8c247a552?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero-badge {
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
    transform: skew(-10deg);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #dfe6e9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-red {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
    font-family: 'Rajdhani';
    font-size: 1.2rem;
    text-transform: uppercase;
}

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

.btn-transparent {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
    font-family: 'Rajdhani';
    font-size: 1.2rem;
    text-transform: uppercase;
}

.btn-transparent:hover {
    background: white;
    color: var(--dark);
}

/* --- SERVICIOS --- */
.section-services {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.bar {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-bottom-color: var(--primary);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
}

/* --- MARCAS --- */
.section-brands {
    background-color: var(--dark);
    padding: 40px 0;
    text-align: center;
}

.section-brands h3 {
    color: #b2bec3;
    margin-bottom: 30px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    color: var(--white);
    font-family: 'Rajdhani';
    font-weight: 800;
    font-size: 2rem;
    opacity: 0.5;
}

/* --- NOSOTROS --- */
.section-about {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    position: relative;
    flex: 1;
}

.about-img img {
    border-radius: 8px;
    box-shadow: 10px 10px 0px var(--primary);
}

.exp-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark);
    color: white;
    padding: 20px;
    font-family: 'Rajdhani';
    font-weight: bold;
    font-size: 1.2rem;
    border-left: 5px solid var(--primary);
}

.exp-box strong {
    font-size: 2.5rem;
    display: block;
    line-height: 1;
    color: var(--primary);
}

.about-text {
    flex: 1;
}

.about-text h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--primary);
}

/* --- CONTACTO --- */
.section-contact {
    padding: 60px 0;
    background: #e0e0e0;
}

.contact-box {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-header {
    background: var(--dark);
    color: white;
    padding: 30px;
    text-align: center;
}

.contact-header h2 {
    margin: 0;
    font-size: 2rem;
}

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.c-info {
    padding: 40px;
    background: #f9f9f9;
    border-right: 1px solid #eee;
}

.c-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.c-row i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.c-row strong {
    display: block;
    font-family: 'Rajdhani';
    font-size: 1.1rem;
}

.btn-waze {
    display: block;
    text-align: center;
    background: #33ccff;
    color: white;
    padding: 10px;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 20px;
}

.c-form {
    padding: 40px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    background: #fdfdfd;
    font-family: 'Roboto';
}

.full {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* --- FOOTER --- */
.footer {
    background: #111;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

/* --- WHATSAPP --- */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: 0.3s;
}

.float-wa:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-flex,
    .contact-body {
        grid-template-columns: 1fr;
        display: block;
    }

    .about-img {
        margin-bottom: 40px;
    }

    .c-info {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}