/* =========================================================
   GINA FLOTILLAS
   ESTILOS PRINCIPALES
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 78px;
    background: #050505;
    border-bottom: 1px solid #222222;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: 155px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    transition: color .25s ease;
}

.nav a:hover {
    color: #fba600;
}


/* =========================================================
   HERO
   ========================================================= */

/* =========================
   HERO GINA FLOTILLAS
   ========================= */

.hero {
    position: relative;
    height: 800px;
    min-height: 600px;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.20),
            rgba(0,0,0,.05)
        ),
        url("assets/hero/hero-gina-flotillas.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Oscurecimiento muy ligero */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.10) 100%
    );
}

.hero-brand {
    position: absolute;
    left: 7%;
    top: 52%;
    transform: translateY(-50%);

    z-index: 5;

    color: #ffffff;

    font-size: clamp(60px, 7vw, 105px);
    font-weight: 900;

    line-height: .82;
    letter-spacing: -.055em;

    white-space: nowrap;

    text-shadow:
        0 3px 15px rgba(0,0,0,.75);
}

.hero-slogan {
    position: absolute;

    right: 7%;
    top: 52%;
    transform: translateY(-50%);

    z-index: 5;

     color: #ffffff !important;

    font-size: clamp(30px, 3.8vw, 58px);
    font-weight: 900;

    line-height: .95;
    letter-spacing: .02em;

    text-align: right;

    text-shadow:
        0 3px 15px rgba(0,0,0,.75);
}

/* =========================
   ISOTIPO ARRIBA AL CENTRO
   ========================= */

.hero-isotipo {
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);

    width: 320px;

    z-index: 5;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-isotipo img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   GINA FLOTILLAS
   LADO IZQUIERDO
   ========================= */

.hero-brand {
    position: absolute;

    left: 7%;
    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 92px);
    font-weight: 900;

    line-height: .9;
    letter-spacing: -.055em;

    white-space: nowrap;

    text-shadow:
        0 3px 12px rgba(0,0,0,.65);
}

/* =========================
   TE LLEVA MÁS LEJOS
   LADO DERECHO
   ========================= */

.hero-slogan {
    position: absolute;

    right: 7%;
    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    color: #fba600;

    font-size: clamp(28px, 3.5vw, 55px);
    font-weight: 900;

    line-height: 1;
    letter-spacing: .03em;

    text-align: right;

    max-width: 500px;

    text-shadow:
        0 3px 12px rgba(0,0,0,.75);
}


/* =========================
   CELULAR
   ========================= */

@media (max-width: 768px) {

    .hero {
        height: 650px;
        min-height: 650px;

        background-position: center;
    }

    .hero-isotipo {
        top: 35px;
        width: 110px;
    }

    .hero-brand {
        left: 5%;
        top: 48%;

        font-size: clamp(38px, 10vw, 60px);

        white-space: normal;
        max-width: 45%;
    }

    .hero-slogan {
        right: 5%;
        top: 48%;

        font-size: clamp(22px, 6vw, 38px);

        max-width: 42%;
    }
}=========================================================
   BOTONES
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 46px;
    padding: 0 23px;

    border: 1px solid #fba600;

    background: #fba600;
    color: #000000;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;

    cursor: pointer;
    transition: all .25s ease;
}

.button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.orange-button {
    background: #fba600;
    color: #000000;
}

.orange-button:hover {
    background: #ffffff;
    color: #000000;
}


/* =========================================================
   SECCIONES
   ========================================================= */

.section {
    padding: 100px 5%;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-small {
    color: #fba600;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .20em;
    margin-bottom: 10px;
}

.section-heading h2 {
    color: #111111;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.03;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-heading p {
    color: #777777;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   PROMOCIONES
   ========================================================= */

.promotions {
    background: #f4f4f4;
}

.promotions-grid {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promotion-card {
    position: relative;
    overflow: hidden;
    background: #111111;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.promotion-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.promotion-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: center;

    padding: 25px 15px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.90)
        );
}

.promotion-content .button {
    min-width: 150px;
}


/* =========================================================
   UNIDADES
   ========================================================= */

.units {
    background: #ffffff;
}

.units-grid {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.unit-card {
    background: #eeeeee;
    overflow: hidden;
}

.unit-image-link {
    display: block;
    color: #ffffff;
}

.unit-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #dddddd;
}

.unit-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.unit-image-link:hover .unit-image img {
    transform: scale(1.04);
}

.unit-view {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    color: #ffffff;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.88)
        );

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.unit-view i {
    color: #fba600;
    font-size: 16px;
}

.unit-info {
    padding: 20px 22px;
}

.unit-brand {
    color: #fba600;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 5px;
}

.unit-info h3 {
    color: #111111;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
}


/* =========================================================
   FLOTILLAS
   ========================================================= */

.fleet {
    position: relative;
    overflow: hidden;

    background: #080808;
    color: #ffffff;

    padding: 120px 8%;
}

.fleet::after {
    content: "";

    position: absolute;
    width: 450px;
    height: 450px;

    right: -130px;
    top: -150px;

    border: 1px solid rgba(251,166,0,.2);
    border-radius: 50%;
}

.fleet-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.fleet-content .section-small {
    color: #fba600;
}

.fleet h2 {
    color: #ffffff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.fleet-content p {
    color: #bbbbbb;
    font-size: 15px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 30px;
}


/* =========================================================
   NOSOTROS
   ========================================================= */

.about {
    background: #f4f4f4;
}

.about .section-heading h2 {
    color: #111111;
}


/* =========================================================
   CONTACTO
   ========================================================= */

.contact {
    padding: 100px 5%;
    background: #111111;
    color: #ffffff;
    text-align: center;
}

.contact .section-heading h2 {
    color: #ffffff;
}

.contact .section-heading p {
    color: #bbbbbb;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #050505;
    color: #ffffff;
    padding: 60px 5% 25px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.footer-brand {
    max-width: 450px;
}

.footer-brand img {
    display: block;
    width: 150px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #999999;
    font-size: 12px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid #333333;
    border-radius: 50%;

    color: #ffffff;
    font-size: 18px;

    transition: all .25s ease;
}

.footer-social a:hover {
    color: #000000;
    background: #fba600;
    border-color: #fba600;
}

.footer-bottom {
    max-width: 1400px;
    margin: 45px auto 0;

    padding-top: 20px;

    border-top: 1px solid #222222;

    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 9px;
}


/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */

.whatsapp-floating {
    position: fixed;
    z-index: 999;

    right: 22px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

    font-size: 29px;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    transition: transform .25s ease;
}

.whatsapp-floating:hover {
    color: #ffffff;
    transform: scale(1.08);
}


/* =========================================================
   PÁGINA DE DETALLE DE UNIDAD
   ========================================================= */

.unit-detail {
    padding: 80px 0;
    background: #f5f5f5;
    min-height: 75vh;
}

.unit-detail-container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.unit-detail-image {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.unit-detail-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.unit-detail-content {
    padding: 10px;
}

.unit-detail-brand {
    color: #fba600;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.unit-detail-content h1 {
    color: #111111;
    margin: 0 0 25px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
}

.unit-detail-description {
    color: #555555;
    font-size: 17px;
    line-height: 1.7;
}

.unit-detail-description p {
    margin: 0 0 18px;
}

.unit-detail-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 30px 0;
}

.unit-spec {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px;

    background: #ffffff;
    border-radius: 8px;

    color: #333333;
    font-size: 14px;
    font-weight: 600;
}

.unit-spec i {
    color: #fba600;
}

.unit-detail-final {
    padding: 20px;
    margin-bottom: 25px;

    border-left: 4px solid #fba600;

    background: #ffffff;

    color: #222222;

    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
}

.unit-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.unit-whatsapp i {
    font-size: 20px;
}

.back-units {
    display: block;
    width: fit-content;

    color: #222222;

    font-size: 14px;
    font-weight: 700;

    transition: color .25s ease;
}

.back-units:hover {
    color: #fba600;
}

.back-units i {
    margin-right: 8px;
}


/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav {
        gap: 18px;
    }

    .hero-isotipo {
        width: 280px;
        right: 2%;
    }

    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .unit-detail-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

}


/* =========================================================
   RESPONSIVE CELULAR
   ========================================================= */

@media (max-width: 700px) {

    .container {
        width: 90%;
    }

    .header {
        height: 68px;
    }

    .header-container {
        width: 90%;
    }

    .logo img {
        width: 130px;
    }

    .nav {
        gap: 10px;
    }

    .nav a {
        font-size: 8px;
    }


    /* HERO */

    .hero {
        min-height: 650px;
        height: calc(100vh - 68px);

        background-position: center center;
    }

    .hero-container {
        align-items: flex-end;
        padding-bottom: 70px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero p {
        font-size: 13px;
        max-width: 330px;
    }

    .hero-isotipo {
        width: 180px;
        right: 5%;
        top: 28%;
        transform: translateY(-50%);
        opacity: .9;
    }


    /* SECCIONES */

    .section {
        padding: 70px 20px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 40px;
    }


    /* PROMOCIONES */

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .promotion-card img {
        aspect-ratio: 4 / 5;
    }


    /* UNIDADES */

    .units-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .unit-image {
        aspect-ratio: 4 / 3;
    }


    /* FLOTILLAS */

    .fleet {
        padding: 80px 25px;
    }


    /* CONTACTO */

    .contact {
        padding: 80px 20px;
    }


    /* FOOTER */

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        margin-top: 10px;
    }


    /* WHATSAPP */

    .whatsapp-floating {
        right: 16px;
        bottom: 16px;
        width: 55px;
        height: 55px;
        font-size: 27px;
    }


    /* DETALLE */

    .unit-detail {
        padding: 45px 0;
    }

    .unit-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .unit-detail-content h1 {
        font-size: 32px;
    }

    .unit-detail-description {
        font-size: 16px;
    }

    .unit-detail-specs {
        grid-template-columns: 1fr;
    }


/* =========================================================
   GINA FLOTILLAS - AJUSTES FINALES
   ========================================================= */

/* BOTONES: todos como botones reales */
a.button,
button.button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
    min-width: 180px !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 28px !important;
    margin: 0 !important;
    border: 1px solid #fba600 !important;
    border-radius: 0 !important;
    background: #fba600 !important;
    color: #000000 !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
}

a.button i,
button.button i {
    font-size: 15px !important;
    line-height: 1 !important;
}

a.button:hover,
button.button:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}

/* Promociones: conserva botón centrado */
.promotion-content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 22px !important;
    background: #111111 !important;
}

/* Flotillas: botón debajo del texto */
.fleet-content > a.button {
    margin-top: 5px !important;
}

/* Nosotros: título grande y todo centrado */
#nosotros.about {
    background: #f4f4f4 !important;
    padding: 105px 7% !important;
    text-align: center !important;
}

#nosotros .about-grid {
    display: block !important;
    width: 100% !important;
    max-width: 1050px !important;
    margin: 0 auto !important;
}

#nosotros .about-title {
    position: static !important;
    padding: 0 !important;
    margin: 0 0 38px !important;
}

#nosotros .about-title::before {
    display: none !important;
    content: none !important;
}

#nosotros .about-title h2 {
    margin: 0 !important;
    color: #111111 !important;
    font-size: clamp(52px, 6vw, 76px) !important;
    line-height: .95 !important;
    font-weight: 900 !important;
    letter-spacing: -.05em !important;
}

#nosotros .about-description {
    width: 100% !important;
    max-width: 950px !important;
    margin: 0 auto !important;
}

#nosotros .about-description p {
    margin: 0 auto 22px !important;
    color: #555555 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    text-align: center !important;
}

#nosotros .about-description p:last-child {
    margin-bottom: 0 !important;
}

/* Contacto: botón centrado y sólido */
.contact-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 35px !important;
}

.contact-actions a.button {
    display: inline-flex !important;
    min-width: 180px !important;
    width: 180px !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 25px !important;
    background: #fba600 !important;
    color: #000000 !important;
    border: 1px solid #fba600 !important;
}

/* Hero */
.hero {
    background-image:
        linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,.05)),
        url("./assets/hero/hero-gina-flotillas.png") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-brand {
    color: #ffffff !important;
    left: 7% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: clamp(58px, 7vw, 105px) !important;
    line-height: .84 !important;
}

.hero-slogan {
    color: #ffffff !important;
    right: 7% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: clamp(32px, 4vw, 62px) !important;
    line-height: .94 !important;
}

.hero-isotipo {
    top: 85px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 320px !important;
}

.hero-isotipo img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

@media (max-width: 700px) {
    #nosotros.about {
        padding: 75px 7% !important;
    }

    #nosotros .about-title {
        margin-bottom: 30px !important;
    }

    #nosotros .about-title h2 {
        font-size: 52px !important;
    }

    #nosotros .about-description p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .hero-isotipo {
        top: 65px !important;
        width: 180px !important;
    }

    .hero-brand {
        left: 5% !important;
        top: 57% !important;
        font-size: clamp(39px, 10vw, 58px) !important;
    }

    .hero-slogan {
        right: 5% !important;
        top: 57% !important;
        font-size: clamp(22px, 6vw, 36px) !important;
    }
}
