/* =====================================================
   VARIABLES
===================================================== */

:root {

    --primary: #ffc400;
    --primary-dark: #e5ad00;

    --dark: #071522;
    --dark-2: #0d2232;

    --text: #172331;
    --muted: #66717c;

    --light: #f5f7f9;
    --white: #ffffff;

    --border: #e5e8eb;

    --radius: 8px;

    --container: 1200px;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font-family: inherit;
}


/* =====================================================
   GENERAL
===================================================== */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;
}

.section {

    padding: 90px 0;
}

.section-heading {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;
}

.section-heading h2 {

    font-size: 36px;

    line-height: 1.2;

    margin: 8px 0 15px;
}

.section-heading p {

    color: var(--muted);

    font-size: 16px;
}

.eyebrow,
.eyebrow-dark {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.eyebrow {
    color: var(--primary);
}

.eyebrow-dark {
    color: #c29300;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 24px;

    border-radius: 6px;

    font-weight: 700;

    border: none;

    cursor: pointer;

    transition: .25s;
}

.btn-primary {

    background: var(--primary);

    color: #111;
}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);
}

.btn-outline {

    border: 1px solid rgba(255,255,255,.5);

    color: white;

    background: transparent;
}

.btn-outline:hover {

    background: white;

    color: var(--dark);
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {

    background: var(--dark);

    color: white;

    font-size: 12px;
}

.top-bar-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    min-height: 38px;
}

.top-info {

    display: flex;

    gap: 25px;
}

.top-info span {

    display: flex;

    gap: 7px;

    align-items: center;
}

.social-links {

    display: flex;

    gap: 18px;
}

.social-links a:hover {

    color: var(--primary);
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    background: white;

    position: sticky;

    top: 0;

    z-index: 1000;

    border-bottom: 1px solid var(--border);
}

.nav-content {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;
}

.logo-placeholder {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: var(--dark);

    font-weight: 900;

    font-size: 17px;

    border-radius: 5px;
}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;
}

.logo-text strong {

    font-size: 18px;

    letter-spacing: -.5px;
}

.logo-text strong span {

    color: #e8ae00;
}

.logo-text small {

    font-size: 8px;

    letter-spacing: 1.5px;

    color: var(--muted);

    margin-top: 4px;
}


/* MENU */

.main-menu {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.main-menu a {

    font-size: 14px;

    font-weight: 500;

    position: relative;

    padding: 28px 0;
}

.main-menu a::after {

    content: "";

    position: absolute;

    bottom: 18px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .25s;
}

.main-menu a:hover::after,
.main-menu a.active::after {

    width: 100%;
}

.menu-toggle {

    display: none;

    border: none;

    background: none;

    font-size: 22px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 480px;

    position: relative;

    color: white;

    display: flex;

    align-items: center;

    overflow: hidden;
}


/*
    AQUÍ PUEDES PONER LA IMAGEN REAL:

    background-image:
    url("images/hero.jpg");

*/

.hero-image {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #101b25 0%,
            #101b25cc 40%,
            transparent 80%
        );

    z-index: 0;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,21,34,.95),
            rgba(7,21,34,.55),
            rgba(7,21,34,.15)
        );

    z-index: 1;
}

.hero-content {

    position: relative;

    z-index: 2;
}

.hero-text {

    max-width: 650px;

    padding: 80px 0;
}

.hero h1 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.03;

    margin: 15px 0 25px;

    letter-spacing: -2px;
}

.hero h1 span {

    color: var(--primary);
}

.hero p {

    font-size: 18px;

    max-width: 600px;

    color: #e5e9ed;
}

.hero-benefits {

    display: flex;

    gap: 35px;

    margin-top: 35px;
}

.hero-benefits > div {

    display: flex;

    gap: 10px;

    align-items: center;
}

.hero-benefits i {

    color: var(--primary);

    font-size: 25px;
}

.hero-benefits strong {

    display: block;

    font-size: 14px;
}

.hero-benefits small {

    color: #c8d0d7;

    font-size: 11px;
}


/* =====================================================
   COTIZADOR
===================================================== */

.quote-wrapper {

    position: relative;

    margin-top: -65px;

    z-index: 10;
}

.quote-box {

    background: var(--dark);

    color: white;

    padding: 30px;

    border-radius: 9px;

    box-shadow: 0 15px 45px rgba(0,0,0,.18);
}

.quote-box h2 {

    font-size: 24px;
}

.quote-box > p {

    color: #b8c2ca;

    font-size: 14px;

    margin-bottom: 25px;
}

.form-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 15px;
}

.form-group label {

    display: block;

    font-size: 11px;

    font-weight: 600;

    margin-bottom: 7px;

    color: #dce2e7;
}

.input-icon {

    position: relative;
}

.input-icon i {

    position: absolute;

    left: 13px;

    top: 50%;

    transform: translateY(-50%);

    color: #65727d;

    pointer-events: none;
}

.input-icon input,
.input-icon select {

    width: 100%;

    height: 45px;

    border: none;

    border-radius: 5px;

    padding: 0 12px 0 38px;

    outline: none;

    color: #27333d;

    background: white;
}

.quote-button {

    display: flex;

    margin: 22px auto 0;

    min-width: 180px;
}

.quote-features {

    display: flex;

    justify-content: center;

    gap: 45px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.1);

    font-size: 11px;

    color: #d0d7dc;
}

.quote-features i {

    color: var(--primary);

    margin-right: 5px;
}


/* =====================================================
   SERVICIOS
===================================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-card {

    padding: 35px 25px;

    border: 1px solid var(--border);

    border-radius: 7px;

    transition: .25s;

    background: white;
}

.service-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.service-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff5d7;

    color: #b58400;

    font-size: 24px;

    margin-bottom: 25px;
}

.service-card h3 {

    font-size: 17px;

    margin-bottom: 12px;
}

.service-card p {

    color: var(--muted);

    font-size: 13px;

    min-height: 75px;
}

.service-card a {

    display: inline-flex;

    gap: 7px;

    align-items: center;

    color: #bd8c00;

    font-size: 12px;

    font-weight: 700;

    margin-top: 20px;
}


/* =====================================================
   FLEET
===================================================== */

.fleet-section {

    background: #fafbfc;
}

.fleet-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 15px;
}

.vehicle-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 7px;

    overflow: hidden;

    transition: .25s;
}

.vehicle-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.vehicle-image {

    height: 160px;

    background: #eef1f3;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #9aa4ad;

    font-size: 12px;

    font-weight: 700;
}

.vehicle-content {

    padding: 18px;
}

.vehicle-content h3 {

    font-size: 16px;

    margin-bottom: 7px;
}

.vehicle-content span {

    font-size: 11px;

    color: var(--muted);
}

.vehicle-content i {

    margin-right: 5px;
}


/* =====================================================
   BENEFITS
===================================================== */

.benefits-section {

    padding: 65px 0;
}

.benefits-section h2 {

    text-align: center;

    font-size: 32px;
}

.benefits-section h2 span {

    color: var(--primary-dark);
}

.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 35px;

    margin-top: 45px;
}

.benefit {

    display: flex;

    gap: 15px;
}

.benefit-icon {

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #fff5d7;

    color: #b58400;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;
}

.benefit h3 {

    font-size: 14px;

    margin-bottom: 5px;
}

.benefit p {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;
}


/* =====================================================
   COVERAGE
===================================================== */

.coverage-section {

    background: var(--dark);

    color: white;

    padding: 80px 0;
}

.coverage-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.coverage-text h2 {

    font-size: 42px;

    line-height: 1.15;

    margin: 15px 0 20px;
}

.coverage-text p {

    color: #bcc6ce;

    margin-bottom: 30px;

    max-width: 500px;
}

.coverage-map {

    min-height: 330px;
}

.map-placeholder {

    height: 330px;

    background: #102738;

    border: 1px solid #284052;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 10px;

    color: #8fa0ad;
}

.map-placeholder i {

    font-size: 45px;

    color: var(--primary);
}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    background: var(--dark-2);

    color: white;

    padding: 45px 0;
}

.cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cta-content h2 {

    font-size: 27px;

    max-width: 600px;

    line-height: 1.2;
}

.cta-content p {

    color: #b8c2ca;

    font-size: 13px;

    margin-top: 5px;
}

.cta-buttons {

    display: flex;

    gap: 12px;

    flex-shrink: 0;
}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background: #f5f6f7;

    padding-top: 55px;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 50px;
}

.footer-brand p {

    color: var(--muted);

    font-size: 12px;

    max-width: 280px;

    margin-top: 20px;
}

footer h4 {

    font-size: 14px;

    margin-bottom: 15px;
}

footer a,
footer p {

    display: block;

    color: var(--muted);

    font-size: 12px;

    margin-bottom: 9px;
}

footer a:hover {

    color: #a67900;
}

.footer-bottom {

    border-top: 1px solid var(--border);

    padding: 18px 0;

    font-size: 10px;

    color: var(--muted);
}

.footer-bottom .container {

    display: flex;

    justify-content: space-between;
}

.footer-bottom a {

    display: inline;

    margin-left: 20px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    z-index: 1000;

    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .main-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .form-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .top-info span:not(:first-child) {
        display: none;
    }

    .navbar .btn {
        display: none;
    }

    .hero {
        min-height: 570px;
    }

    .hero-text {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-benefits {
        flex-direction: column;

        gap: 15px;
    }

    .quote-wrapper {
        margin-top: -40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .quote-features {
        flex-direction: column;

        gap: 10px;

        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .coverage-content {
        grid-template-columns: 1fr;
    }

    .coverage-text h2 {
        font-size: 32px;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;

        gap: 10px;
    }

    .footer-bottom a {
        margin-left: 0;

        margin-right: 15px;
    }
}


@media (max-width: 450px) {

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-image {
        height: 190px;
    }
}