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

:root {
    --primary-red: #F73B1D;
    --primary-green: #007C2F;
    --text-dark: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 80px;           /* altura máxima do header */
  display: flex;
  align-items: center;
}

header img {
  height: 180px;
  vertical-align: middle;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
  max-height: 200px;       /* tamanho visual no site */
  display: block;
  transform: translateY(-8px);
}

.logo i {
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: var(--primary-red);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-red);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    margin-right: 2px;
}

/* Hero Section */
.hero {
    height: 90vh; /* Altura maior para acomodar melhor o conteúdo */
    margin: 80px 3rem 0 3rem; /* Margens laterais menores e sem margem inferior */
    border-radius: 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-top: 40px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.quote-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
      position: relative;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    color: var(--text-dark);
}

.quote-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-btn:hover {
    background: #e5341a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 59, 29, 0.3);
}

/* Sections */
.section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

/* Packages Section */
.packages-carousel {
    position: relative;
    margin-top: 2rem;
}

.packages-wrapper {
    overflow: hidden;
}

.packages-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s ease;
}

.packages-track .package-card {
    flex: 0 0 calc((100% - 4rem) / 3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}


#packages-prev {
    left: -20px;
}

#packages-next {
    right: -20px;
}


.packages-track {
    display: flex;
    overflow: hidden;
    gap: 2rem;
    scroll-behavior: smooth;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-btn.prev { left: -15px; }
.carousel-btn.next { right: -15px; }

.package-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.package-content {
    padding: 1.5rem;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-description {
    color: #666;
    margin-bottom: 1rem;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn:hover {
    background: #1ea952;
    transform: translateY(-2px);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon {
    color: var(--primary-red);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-image {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2026&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

/* Links da lista de serviços no rodapé */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card,
.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation for images */
.package-image,
.about-image {
    position: relative;
    overflow: hidden;
}

.package-image::before,
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.package-image:hover::before,
.about-image:hover::before {
    left: 100%;
}

/* Additional button styles */
.quote-btn,
.whatsapp-btn {
    position: relative;
    overflow: hidden;
}

.quote-btn::before,
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.quote-btn:hover::before,
.whatsapp-btn:hover::before {
    left: 100%;
}

/* Form enhancements */
.form-group input:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(0, 124, 47, 0.1);
}

.checkbox-group input[type="checkbox"] {
    accent-color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu {
        display: block;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 1rem;
        background: var(--light-gray);
    }

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

    .hero p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .packages-track {
        overflow-x: auto;
    }

     .packages-track .package-card {
        flex: 0 0 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .package-card,
    .service-card {
        margin: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Print styles */
@media print {
    .header,
    .floating-whatsapp {
        display: none;
    }

    .hero {
        height: auto;
        padding: 2rem 0;
        z-index: 1;
    }

    .quote-form {
        background: white;
        box-shadow: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
        z-index: 1;
    }

    .package-card,
    .service-card {
        border: 2px solid var(--text-dark);
    }
}

@media (max-width: 768px) {
    .hero {
        margin: 70px 1.5rem 2rem 1.5rem;
        height: auto;
        padding-bottom: 2rem;
        border-radius: 15px;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .hero {
        margin: 70px 1rem 2rem 1rem;
        height: auto;
        padding-bottom: 2rem;
        border-radius: 12px;
        z-index: 1;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-whatsapp {
        animation: none;
    }
}
/* Estilos para o menu de passageiros avançado */
.passenger-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1050;
}

.passenger-input {
    height: 48px;
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.passenger-input:hover {
    border-color: var(--primary-green);
}

.passenger-input.active {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 124, 47, 0.1);
}

.passenger-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
   z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.passenger-dropdown-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.passenger-row:last-child {
    border-bottom: none;
}

.passenger-info {
    display: flex;
    flex-direction: column;
}

.passenger-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.passenger-subtitle {
    font-size: 0.875rem;
    color: #666;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary-green);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.counter-btn:hover:not(:disabled) {
    background: var(--primary-green);
    color: white;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.counter-value {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
    font-size: 1rem;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     z-index: 1049;
    display: none;
    pointer-events: none;
}

.overlay.active {
    display: block;
    pointer-events: all;
}

/* Sugestões de autocomplete */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
}

.suggestion-item {
    padding: 0.5rem;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Hotel page layout */
.hotel-section {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.hotel-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hotel-text {
    flex: 1;
}

.hotel-img {
    width: 100%;
    max-width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hotel-section {
    padding-top: 100px; /* ajuste só no mobile */
  }
}

@media (max-width: 768px) {
    .hotel-content {
        flex-direction: column;
        text-align: center;
    }

    .hotel-img {
        max-width: 90%;
    }
}
/* cruzeiro page layout */
.cruzeiros-section {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}
.cruzeiros-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cruzeiros-text {
    flex: 1;
}

.cruzeiros-img {
    width: 100%;
    max-width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .cruzeiros-section {
    padding-top: 100px; /* ajuste só no mobile */
  }
}

@media (max-width: 768px) {
    .cruzeiros-content {
        flex-direction: column;
        text-align: center;
    }

    .cruzeiros-img {
        max-width: 90%;
    }
}

/* aluguel de carros page layout */
.aluguel-de-carros-section {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}
.aluguel-de-carros-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.aluguel-de-carros-text {
    flex: 1;
}

.aluguel-de-carros-img {
    
    display: block;
    margin: 2rem auto;
    width: 100%;
    max-width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .aluguel-de-carros-section {
    padding-top: 100px; /* ajuste só no mobile */
  }
}

@media (max-width: 768px) {
    .aluguel-de-carros-content {
        flex-direction: column;
        text-align: center;
    }

    .aluguel-de-carros-img {
        max-width: 90%;
    }
}

/* passaporte e vistos page layout */
.passaporte-e-vistos-section {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}
.passaporte-e-vistos-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.passaporte-e-vistos-text {
    flex: 1;
}

.passaporte-e-vistos-img {
    
    display: block;
    margin: 2rem auto;
    width: 100%;
    max-width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .passaporte-e-vistos-section {
    padding-top: 100px; /* ajuste só no mobile */
  }
}

@media (max-width: 768px) {
    .passaporte-e-vistos-content {
        flex-direction: column;
        text-align: center;
    }

    .passaporte-e-vistos-img {
        max-width: 90%;
    }
}

/* intercambio page layout */
.intercambio-section {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}
.intercambio-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.intercambio-text {
    flex: 1;
}

.intercambio-img {
    
    display: block;
    margin: 2rem auto;
    width: 100%;
    max-width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intercambio-section {
    padding-top: 100px; /* ajuste só no mobile */
  }
}

@media (max-width: 768px) {
    .intercambio-content {
        flex-direction: column;
        text-align: center;
    }

    .intercambio-img {
        max-width: 90%;
    }
}

/* rodoviario page layout */
.rodoviario-section {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}
.rodoviario-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rodoviario-text {
    flex: 1;
}

.rodoviario-img {
    
    display: block;
    margin: 2rem auto;
    width: 100%;
    max-width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .rodoviario-section {
    padding-top: 100px; /* ajuste só no mobile */
  }
}

@media (max-width: 768px) {
    .rodoviario-content {
        flex-direction: column;
        text-align: center;
    }

    .rodoviario-img {
        max-width: 90%;
    }
}

/* experiencias page layout */
.experiencias-section {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}
.experiencias-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.experiencias-text {
    flex: 1;
}

.experiencias-img {
    
    display: block;
    margin: 2rem auto;
    width: 100%;
    max-width: 40%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .experiencias-section {
    padding-top: 100px; /* ajuste só no mobile */
  }
}

@media (max-width: 768px) {
    .experiencias-content {
        flex-direction: column;
        text-align: center;
    }

    .experiencias-img {
        max-width: 90%;
    }
}


@media (max-width: 768px) {
  .social-icons {
    display: flex;
    justify-content: center; /* Centraliza só no mobile */
    gap: 15px; /* Espaçamento entre ícones */
    margin: 20px 0;
  }
}

/* Ajusta os ícones individuais */
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1); /* fundo leve */
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: rgba(247, 59, 29, 1); /* efeito ao passar o mouse */
}

/* Ajusta o botão hambúrguer só no mobile */
@media (max-width: 768px) {
  #menu-btn.mobile-menu {
    position: absolute; /* garante controle de posição */
    top: 20px;          /* ajuste vertical se necessário */
    right: 20px;        /* diminua este valor para mover à esquerda */
    z-index: 1000;      /* garante que fique visível */
  }
}

html {
  scroll-padding-top: 90px; /* altura do header + margem */
}

/* Centralizar texto somente em telas menores que 768px (mobile) */
@media (max-width: 768px) {
    .pagina-hoteis p,
    .pagina-hoteis h1,
    .pagina-hoteis h2,
    .pagina-hoteis h3,
    .pagina-hoteis h4,
    .pagina-hoteis h5,
    .pagina-hoteis h6,
    .pagina-hoteis li,
    .pagina-cruzeiros p,
    .pagina-cruzeiros h1,
    .pagina-cruzeiros h2,
    .pagina-cruzeiros h3,
    .pagina-cruzeiros h4,
    .pagina-cruzeiros h5,
    .pagina-cruzeiros h6,
    .pagina-cruzeiros li {
        text-align: center;
    }
}