:root {
    --primary-color: #18039c;
    --primary-light: #686de0;
    --accent-color: #f0932b;
    --text-dark: #130f40;
    --text-light: #535c68;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --background-fundo: #f8f8f8;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra de Navegação */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-signup:hover {
    background-color: var(--text-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Seção Hero */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
    min-height: 100vh;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 0;
    width: 60%;
    height: 120%;
    background: linear-gradient(135deg, #6e83f5 50%, #000399 100%);
    opacity: 0.3;
    border-radius: 0 0 0 100%;
    z-index: 0;
    filter: blur(1px);
}



.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text h1 strong {
    color: var(--bg-light);
    background-color: #000399;
    padding: 0 8px;
}

.hero-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(235, 133, 17, 0.2);
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(240, 147, 43, 0.3);
}

.btn-secondary {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img-main {
    max-width: 100%;
    border-radius: 20px;
}

.hero-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 120px;
}

.hero-social-icons a {
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f1f2f6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero-social-icons a:hover {
    color: var(--white);
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(72, 52, 212, 0.3);
}

.hero-social-icons i {
    font-size: 28px;
}

/* Seções Gerais */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.text-left {
    text-align: left;
}

/* Destinos */
.destinations-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.destinations-grid::-webkit-scrollbar {
    display: none;
}

.destination-card {
    min-width: 300px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    scroll-snap-align: center;

}

.destination-card.visible {
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    color: var(--accent-color);
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--text-dark);
    color: #fff;
}

/* Seção de Benefícios */


#beneficios {
    background-color: var(--background-fundo);
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-text {
    flex: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    padding: 20px;
    border-radius: 15px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.benefit-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item:hover {
    background: #d1dfff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.benefits-images {
    flex: 1;
    position: relative;
    height: 500px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.benefits-images.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-card {
    position: absolute;
    background: var(--white);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    width: 260px;
    z-index: 1;
}

.benefit-card:hover {
    z-index: 10;
    transform: scale(1.05);
    /* Similar hover effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
}

.b-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5px 5px 5px;
}

.b-city {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.b-pin {
    color: var(--accent-color);
}

/* Positioning - Replicating original layout */
.card-pos-1 {
    top: 0;
    right: 20px;
    z-index: 1;
    transform: rotate(5deg);
}

.card-pos-2 {
    top: 140px;
    left: 20px;
    z-index: 2;
    transform: rotate(-3deg);
}

.card-pos-3 {
    bottom: 20px;
    right: 40px;
    z-index: 3;
    transform: rotate(2deg);
}

/* Seção de Avaliações */
.reviews-container {
    position: relative;
    padding: 50px 0;
    min-height: 400px;
    background-image: radial-gradient(#e1eec3 1px, transparent 1px);
    background-size: 20px 20px;
}

.review-card {
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 380px;
    transition: var(--transition);
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-dest-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.review-content-wrapper {
    flex: 1;
}

.review-card.visible {
    opacity: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.card-1 {
    top: 20px;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 40px;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 5px;
    left: 20%;
    animation-delay: 1s;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-avatar {
    border-radius: 50%;
    width: 80px;
}

.review-header h4 {
    font-size: 1rem;
    color: var(--text-dark);
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Passos de Planejamento */
.planning-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

#planejamento {
    background-color: var(--background-fundo);
}

.planning-text {
    flex: 1;
}

.steps-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.step-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #e3e2e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.planning-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.planning-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.steps-img {
    max-width: 80%;
    position: relative;
    z-index: 2;
}

.big-number {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 800;
    color: #e2e2e2;
    z-index: 1;
    white-space: nowrap;
}


/* Seção do App */
.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-text {
    max-width: 400px;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.store-btn {
    cursor: pointer;
    border-radius: 8px;
    width: 150px;
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-3px);
}

.app-image {
    position: relative;
    height: 500px;
    width: 500px;
}

.phone-mockup {
    position: absolute;
    width: 250px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 8px solid #dadada;
    transition: var(--transition);
}

.p1 {
    top: 0;
    left: 5px;
    z-index: 1;
    transform: rotate(-5deg);
}

.p2 {
    top: 40px;
    right: 10px;
    z-index: 2;
    transform: rotate(5deg);
}

.app-image:hover .p1 {
    transform: rotate(0deg) translateX(-10px);
}

.app-image:hover .p2 {
    transform: rotate(0deg) translateX(10px);
}

/* Seção de Parceiros */
#parceiros {
    background-color: var(--bg-light);
    padding: 60px 0;
    margin-top: 100px;
}

.logos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: 20s slide infinite linear;
    width: fit-content;
}

.logos-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logos-slide img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* Seção do Rodapé */
.footer {
    background: #f9f9f9;
    padding-top: 50px;
    padding-bottom: 20px;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #74b9ff 100%);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    margin-bottom: 60px;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 5px;
    border-radius: 50px;
}

.newsletter-form input {
    border: none;
    padding: 10px 20px;
    outline: none;
    border-radius: 50px;
    width: 250px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 20px;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer {
    background-color: #e9e7e7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 900px) {
    .container {
        padding: 0 30px;
    }

    .hero-content,
    .benefits-container,
    .planning-container,
    .app-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .benefits-text,
    .planning-text,
    .app-text {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-images {
        margin-top: 50px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .benefit-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(0deg) !important;
        margin: 0;
        width: 80%;
        max-width: 350px;
    }

    .text-left {
        text-align: center;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .app-image {
        width: 100%;
        margin-top: 50px;
        display: flex;
        justify-content: center;
    }

    .phone-mockup {
        width: 40%;
    }

    .app-buttons {
        justify-content: center;
    }

    /* Grade de Destinos Responsiva */
    .destinations-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .destination-card {
        min-width: 85vw;
    }

    .slider-controls {
        display: flex;
    }

    .reviews-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .review-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 450px;
        margin: 0;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
        padding: 50px 0;
    }

    .nav-menu.active {
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(6px);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        position: static;
        transform: none;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .hero-social-icons {
        justify-content: center;
        margin-top: 60px;

    }
}

@media (max-width: 600px) {
    .navbar .container {
        align-items: center;
    }

    #parceiros {
        margin-top: -50px;
    }

    .logo img {
        height: 50px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}