/* =========================
   VARIABLES
========================= */

:root {
    --orange: #ff6a00;
    --orange-dark: #d95400;
    --black: #0b0b0b;
    --dark: #111111;
    --dark-2: #181818;
    --gray: #777;
    --light: #f5f5f5;
    --white: #ffffff;
    --border: #e5e5e5;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    width: min(1200px, 92%);
    margin: auto;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    width: 150px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: var(--orange);
}

.nav-whatsapp {
    background: var(--orange);
    color: #fff;
    padding: 10px 17px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.nav-whatsapp:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.nav-whatsapp i {
    margin-right: 5px;
}

.menu-btn {
    display: none;
    background: transparent;
    color: white;
    border: 0;
    font-size: 24px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.35)
        ),
        url("../imagenes/taller-bg.jpg") center/cover no-repeat;

    position: relative;

    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 92%);
    margin: auto;

    padding-top: 80px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--orange);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;

    margin-bottom: 20px;
}

.hero h1 {
    color: white;
    font-size: clamp(45px, 6vw, 78px);
    line-height: 1.05;
    max-width: 800px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    color: #ddd;
    font-size: 19px;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 24px;
    border-radius: 6px;

    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: var(--orange);
    color: white;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline {
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: white;
    color: #111;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.section-header {
    width: min(750px, 92%);
    margin: 0 auto 60px;
    text-align: center;
}

.section-header > span,
.section-mini-title {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.15;
    margin: 12px 0 18px;
}

.section-header h2 strong {
    color: var(--orange);
}

.section-header p {
    color: #666;
}


/* =========================
   SERVICES
========================= */

.services {
    background: #f7f7f7;
}

.services-grid {
    width: min(1200px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 10px;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: rgba(255,106,0,0.4);
}

.service-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1e8;
    color: var(--orange);

    border-radius: 8px;

    font-size: 26px;

    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card li {
    font-size: 14px;
    padding: 6px 0;
    color: #555;
}

.service-card li::before {
    content: "✓";
    color: var(--orange);
    font-weight: bold;
    margin-right: 9px;
}

.service-card > a {
    color: var(--orange);
    font-weight: bold;
    font-size: 14px;
}

.service-card > a i {
    margin-left: 5px;
    transition: 0.3s;
}

.service-card > a:hover i {
    transform: translateX(5px);
}


/* =========================
   BANNER
========================= */

.repair-banner {
    background:
        linear-gradient(
            90deg,
            #111,
            #1a1a1a
        );

    padding: 70px 0;
}

.repair-banner-content {
    width: min(1200px, 92%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.repair-banner span {
    color: var(--orange);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.repair-banner h2 {
    color: white;
    font-size: clamp(28px, 4vw, 42px);
    margin: 8px 0;
}

.repair-banner p {
    color: #aaa;
}


/* =========================
   ABOUT
========================= */

.about {
    width: min(1200px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-box {
    min-height: 430px;

    background:
        linear-gradient(
            135deg,
            #151515,
            #050505
        );

    border-radius: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;

    border: 1px solid #252525;

    position: relative;
    overflow: hidden;
}

.about-image-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background: var(--orange);

    opacity: 0.12;

    border-radius: 50%;

    filter: blur(30px);
}

.about-image-box i {
    position: relative;

    font-size: 90px;
    color: var(--orange);

    margin-bottom: 20px;
}

.about-image-box span {
    position: relative;

    font-size: 15px;
    letter-spacing: 5px;
    font-weight: bold;
}

.about-image-box strong {
    position: relative;

    font-size: 30px;
    color: var(--orange);
    letter-spacing: 3px;
}

.about-content h2 {
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.1;
    margin: 12px 0 25px;
}

.about-content h2 strong {
    color: var(--orange);
}

.about-content p {
    color: #666;
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.about-features > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features i {
    width: 45px;
    height: 45px;

    background: #fff1e8;
    color: var(--orange);

    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features span {
    display: flex;
    flex-direction: column;
}

.about-features strong {
    font-size: 15px;
}

.about-features small {
    color: #777;
}


/* =========================
   PROCESS
========================= */

.process {
    background: #f7f7f7;
}

.process-grid {
    width: min(1100px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 10px;

    border: 1px solid var(--border);

    position: relative;
}

.step-number {
    color: var(--orange);
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 20px;
}

.process-step > i {
    font-size: 28px;
    margin-bottom: 18px;
}

.process-step h3 {
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 14px;
}


/* =========================
   CONTACT
========================= */

.contact {
    background: #111;
    color: white;
}

.contact-container {
    width: min(1100px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text > span {
    color: var(--orange);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-text h2 {
    font-size: clamp(35px, 5vw, 52px);
    line-height: 1.1;
    margin: 15px 0 20px;
}

.contact-text p {
    color: #aaa;
    margin-bottom: 30px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
}

.contact-item > i {
    color: var(--orange);
    font-size: 22px;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    color: #aaa;
    font-size: 14px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #070707;
    color: white;
}

.footer-container {
    width: min(1200px, 92%);
    margin: auto;

    padding: 60px 0;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #888;
    max-width: 350px;
}

footer h3 {
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-links,
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-services span {
    color: #888;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid #222;

    padding: 20px;

    text-align: center;

    color: #666;
    font-size: 13px;
}


/* =========================
   FLOAT WHATSAPP
========================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    background: #25d366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    z-index: 999;

    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

    nav {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        background: #111;

        display: none;
        flex-direction: column;

        padding: 25px;

        gap: 20px;
    }

    nav.active {
        display: flex;
    }

    .nav-whatsapp {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}


@media (max-width: 650px) {

    .nav-container {
        height: 70px;
    }

    .logo img {
        width: 125px;
    }

    .hero {
        min-height: 750px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 75px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .repair-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-image-box {
        min-height: 320px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }

}