* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
.header {
    background-color: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* LOGO */
.logo img {
    height: 55px;
    width: auto;
    display: block;
}

.nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav ul li a:hover {
    color: #d4af37;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url("../img/inicio.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 70px;
}

.hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    margin: 15px 0 25px;
}

.btn {
    background: #d4af37;
    color: #000;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
}

/* GENERAL */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.service-box {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box i {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
}

/* FLEET */
.fleet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 30px;
}

.fleet-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.fleet-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.fleet-card div {
    padding: 20px;
}

/* CONTACT */
.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 30px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.contact form button {
    width: 100%;
    background: #d4af37;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 25px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

/* INSTAGRAN */
.instagram {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #C13584;
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
    }
}
/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: #fff;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav ul li {
        padding: 15px 0;
    }

    .nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}
/* ===== MENU HAMBURGUESA PRO ===== */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU ANIMATION */
@media (max-width: 768px) {
    .nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        gap: 0;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav ul.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav ul li a {
        padding: 18px 0;
        display: block;
        width: 100%;
        text-align: center;
        font-size: 18px;
    }
}
body.menu-open {
    overflow: hidden;
}
/* ===== QUOTE BOX ===== */

.quote-box {
    max-width: 1100px;
    margin: 80px auto;
    padding: 40px;
    border-radius: 20px;
    background: radial-gradient(
        circle at top,
        #1a1a1a,
        #0b0b0b
    );
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

.quote-box h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.quote-box .subtitle {
    color: #ccc;
    margin-bottom: 35px;
}
/* CAMPOS TARIFA */
.quote-box .field input,
.quote-box .field select {
    width: 100%;
    height: 56px;               /* 👈 MISMA ALTURA */
    background-color: #111;
    color: #fff;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Placeholder */
.quote-box input::placeholder {
    color: #aaa;
}

/* Opciones del select */
.quote-box select option {
    background-color: #111;
    color: #fff;
}

/* Focus elegante */
.quote-box input:focus,
.quote-box select:focus {
    border-color: #C9A227;
    outline: none;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #151515, #0f0f0f);
    border: 1px solid #2a2a2a;
    color: #fff;
    font-size: 15px;
    appearance: none;
    cursor: pointer;
}

.field select:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-whatsapp {
    margin-top: 35px;
    padding: 16px;
    width: 100%;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #d4af37, #f1cf63);
    color: #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.btn-whatsapp:hover {
    filter: brightness(1.05);
}
.note {
    margin-top: 15px;
    font-size: 13px;
    color: #aaa;
}
.btn-instagram {
    margin-top: 35px;
    padding: 16px;
    width: 100%;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #d4af37, #f1cf63);
    color: #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.btn-instagram:hover {
    filter: brightness(1.05);
}
.note {
    margin-top: 15px;
    font-size: 13px;
    color: #aaa;
}
/* ===== MODAL QUIENES SOMOS ===== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 2000;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: radial-gradient(circle at top, #1b1b1b, #0c0c0c);
    color: #fff;
    max-width: 700px;
    width: 90%;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,.7);
    animation: modalIn .35s ease;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

@keyframes modalIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* ===== PAGINAS INTERNAS ===== */

.page-hero {
    height: 45vh;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url("../img/quienes_somos.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.page-hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.page-hero h1 {
    font-size: 42px;
}

.page-content {
    padding: 70px 20px;
}

.container.narrow {
    max-width: 850px;
}

.page-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.page-btn {
    display: inline-block;
    margin-top: 20px;
}
.fleet-info {
    padding: 15px 0;
}

.fleet-specs {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-weight: 500;
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

.fleet-specs i {
    color: #C9A227; /* dorado elegante */
}
/* MENU */
#menu {
    display: flex;
    gap: 30px;
}

#menu li a {
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease;
}

#menu li a:hover,
#menu li a.active {
    color: #C9A227;
}

/* HERO FIX POR HEADER FIXED */
.hero {
    padding-top: 80px;
}
/* ===============================
   PAGE TRANSITION (NEGRO + LOGO)
   =============================== */

#page-transition {
    position: fixed;
    inset: 0;
    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

#page-transition.active {
    opacity: 1;
    visibility: visible;
}

#page-transition img {
    width: 240px;
    animation: pulse 1.1s ease-in-out infinite alternate;
}

@keyframes logoFade {
    from {
        opacity: 10.6;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}
.page-enter {
    animation: pageIn 0.2s ease-out;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


