@import url('/assets/css/partials/header.css');
@import url('/assets/css/partials/banner.css');
@import url('/assets/css/partials/motor-reserva.css');
@import url('/assets/css/partials/motor-reserva-hotel.css');
@import url('/assets/css/partials/package.css');
@import url('/assets/css/partials/offers.css');
@import url('/assets/css/partials/news.css');
@import url('/assets/css/partials/about-us.css');
@import url('/assets/css/partials/fly-out-menu.css');
@import url('/assets/css/partials/campanhas.css');
@import url('/assets/css/partials/footer.css');


body *,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Poppins", sans-serif;
}

.title-div h2 {
    font-size: 2em;
    font-weight: 300;
    margin: 0;
    color: #0072ce;
}

.colorfull-lines {
    display: flex;
}

.colorfull-lines span {
    display: block;

    width: 25px;
    height: 4px;

    margin: 2px 0 36px;
}

.colorfull-lines .yellow {
    background-color: #FFC600;
}

.colorfull-lines .orange {
    background-color: #FF6A14;
}

.colorfull-lines .green {
    background-color: #97D700;
}

.colorfull-lines .dark-blue {
    background-color: #054E72;
}




.popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.popup-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    min-width: 320px;
    max-width: 90vw;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: popup-fadeIn 0.3s ease-out;
}

@keyframes popup-fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}

.popup-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
    cursor: pointer;

    margin-bottom: 16px;
}

.popup-input:focus {
    outline: none;
    border-color: #007bff;
    background: #fff;
}

.popup-button {
    width: 100%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-button:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.popup-button:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .popup-container {
        margin: 20px;
        padding: 20px;
    }

    .popup-input {
        padding: 10px 12px;
    }

    .popup-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Seção de Serviços */
.our-services {
    padding: 6rem 2rem;
    background-color: white;
    position: relative;
    overflow: hidden;

    background-color: #054E7208;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-swiper {
    /* margin-top: 50px; */
    position: relative;
    padding: 1rem 0 3rem 0;
    overflow: hidden;
    width: 100%;
}

.services-swiper .swiper-wrapper {
    align-items: center;
    width: 100%;
}

.services-swiper .swiper-slide {
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.15));
    width: auto;
    flex-shrink: 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 280px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 198, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
} */

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-color: #0072CE;
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #054E72;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover .service-icon {
    background-color: #FFC600;
    transform: scale(1.1);
}

.service-icon img,
.service-icon svg {
    width: 60px;
    height: 60px;
    color: white;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #0072CE;
}

/* Paginação do swiper */
.services-swiper .swiper-pagination {
    bottom: 0 !important;
}

.services-swiper .swiper-pagination-bullet {
    background-color: #0072CE !important;
    width: 9px !important;
    height: 9px !important;
    margin: 0 2.75px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.services-swiper .swiper-pagination-bullet-active {
    background-color: #FF6A14 !important;
    transform: scale(1.3);
}

/* Navigation Arrows - removidas para manter consistência */
.services-next,
.services-prev {
    display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .our-services {
        padding: 4rem 2rem;
    }

    .service-card {
        height: 250px;
        padding: 40px 25px;
        max-width: 250px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .service-icon img,
    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    .service-card h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .our-services {
        padding: 4rem 1rem;
    }

    .service-card {
        height: 220px;
        padding: 35px 20px;
        max-width: 220px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .service-icon img,
    .service-icon svg {
        width: 35px;
        height: 35px;
    }

    .service-card h3 {
        font-size: 16px;
    }
}

@media (max-width: 610px) {
    .our-services {
        padding: 4rem 0.5rem;
    }

    .service-card {
        height: 200px;
        padding: 30px 15px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .service-card {
        height: 180px;
        padding: 25px 15px;
        max-width: 180px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon img,
    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-card h3 {
        font-size: 15px;
    }
}