/* =========================================================
   XPLORE MOTORCYCLES — HOME
   Page-specific styles. Shared layout lives in base.css.
   ========================================================= */

.booking-engine-box {
    background-color: rgba(22, 22, 22, 0.9); border: 1px solid #252525; width: 100%; box-shadow: 0 30px 60px rgba(0,0,0,0.6); text-align: left;
}

.booking-tabs {
    display: flex; background-color: #111111; border-bottom: 1px solid #252525;
}

.tab-item {
    flex: 1; padding: 15px; text-align: center; font-size: 12px; font-weight: 800; letter-spacing: 3px; color: #A9A9A9; cursor: pointer; transition: all 0.3s ease; border-bottom: 3px solid transparent;
}

.tab-item:hover {
    color: #FFFFFF;
}

.tab-item.active {
    color: #111111; background-color: #E2C28A; border-bottom-color: #A38A5F;
}

.booking-form {
    display: flex; flex-wrap: wrap; padding: 15px; gap: 12px; align-items: flex-end;
}

.form-group {
    flex: 1; min-width: 150px; display: flex; flex-direction: column; gap: 6px;
}

.form-group.group-date {
    flex: 1.5; min-width: 250px; transition: all 0.3s ease;
}

.form-group.group-submit {
    flex: 1.2; min-width: 180px;
}

.form-group label {
    font-size: 9px; font-weight: 700; letter-spacing: 2px; color: #888888; text-transform: uppercase;
}

.form-group select,
.form-group input {
    background-color: #FFFFFF; color: #111111; border: 1px solid #E5E5E5; padding: 10px 12px; font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 600; outline: none; width: 100%; box-sizing: border-box; height: 45px;
}

.booking-submit-btn {
    background-color: #E2C28A; color: #111111; border: none; height: 45px; padding: 0 20px; font-size: 12px; font-weight: 800; letter-spacing: 2px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; width: 100%; box-sizing: border-box;
}

.booking-submit-btn:hover {
    background-color: #FFFFFF;
}

/* MEDIA QUERY AJUSTADA */
@media (max-width: 900px) {
    .xplore-home-hero {
        height: auto !important;
        min-height: 100vh !important;
        background-attachment: scroll !important;
        padding-top: 140px !important; /* Ajuste fino de padding superior para não sobrepor o menu mobile */
        padding-bottom: 60px !important;
    }

    .xplore-home-hero h1 {
        font-size: 26px !important;
    }

    .booking-form {
        flex-direction: column; align-items: stretch;
    }

    .form-group {
        width: 100%;
    }

    .booking-submit-btn {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .xplore-manifesto-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .xplore-manifesto-img {
        height: 300px !important;
    }
}

.city-link {
    text-decoration: none !important;
    display: block !important;
    border-left: 1px solid #333 !important;
    padding-left: 15px !important;
    transition: all 0.3s ease !important;
}

.city-link h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 5px 0 !important;
    letter-spacing: 1px !important;
    color: #FFFFFF !important;
    transition: color 0.3s ease !important;
}

.city-link p {
    color: #777777 !important;
    font-size: 11px !important;
    font-family: monospace !important;
    margin: 0 !important;
    transition: color 0.3s ease !important;
}

.city-link:hover {
    border-left-color: #A38A5F !important;
}

.city-link:hover h4 {
    color: #A38A5F !important;
}

.city-link:hover p {
    color: #AAAAAA !important;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

@media (max-width: 991px) {
    .xplore-tours-asymmetric-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .xplore-tours-asymmetric-grid > div:first-child {
        height: 380px !important;
    }
}

.fleet-slide {
    flex: 0 0 calc(25% - 22.5px);
    width: calc(25% - 22.5px);
}

.fleet-img-placeholder {
    background-color: #222; height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: #555; font-size: 11px; font-weight: 700; letter-spacing: 1px;
}

.fleet-flags {
    font-size: 14px; margin-bottom: 15px; display: flex; justify-content: center; gap: 6px;
}

.fleet-bike-title {
    color: #FFFFFF !important; font-size: 18px; font-weight: 700; margin: 0 0 8px 0; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.fleet-category {
    color: #A38A5F !important; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}

/* EDITORIAL CTA LINK STYLES */
.editorial-cta {
    color: #CCCCCC !important;
    text-decoration: none !important;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.editorial-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #A38A5F;
    transition: width 0.3s ease;
}

.cta-arrow {
    color: #A38A5F;
    transition: transform 0.3s ease;
}

.editorial-cta:hover {
    color: #FFFFFF !important;
}

.editorial-cta:hover::after {
    width: 100%;
}

.editorial-cta:hover .cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .fleet-slide {
        flex: 0 0 calc(33.333% - 20px); width: calc(33.333% - 20px);
    }
}

@media (max-width: 900px) {
    .fleet-slide {
        flex: 0 0 calc(50% - 15px); width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .xplore-rentals-section {
        padding: 80px 10px;
    }

    .fleet-slide {
        flex: 0 0 100%; width: 100%;
    }

    #fleetPrevBtn,
    #fleetNextBtn {
        display: none;
    }
}

.review-slide {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
}

@media (max-width: 900px) {
    .xplore-reviews-section {
        padding: 80px 10px;
    }

    .review-slide {
        flex: 0 0 100%; width: 100%;
    }

    #prevBtn,
    #nextBtn {
        display: none;
    }
}
