/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remover espaços entre seções */
section {
    margin: 0;
    padding: 0;
}

.hero,
.popular-tours,
.popular-transfers,
.why-choose-us {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}
body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    height: 100%;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #2c5aa0, #1e3f6b);
    position: relative;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh;
    min-height: 100vh;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.footer, .footer * {
    margin-bottom: 0 !important;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2c5aa0, #1e3f6b);
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e3f6b, #2c5aa0);
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2c5aa0 #1a1a1a;
}


#global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('back.png') no-repeat center center;
    background-size: 120%;
    z-index: -3;
    opacity: 0.8;
    animation: heroBackgroundMove 25s ease-in-out infinite;
}

#global-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 90, 160, 0.9), rgba(30, 63, 107, 0.9));
    z-index: 1;
}

/* Remover body::after problemático */


/* Animações globais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Classes de animação */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Estilos para a página Sobre */
.about-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.about-section {
    background: transparent;
    padding: 2rem 0;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.about-section h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-info, .about-location, .services, .team, .contact {
    margin: 0;
}

/* Responsividade para About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-img {
        max-width: 100%;
    }
}

.about-info h2, .about-location h2, .services h2, .team h2, .contact h2 {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 25%, #ff6b35 50%, #ff8c42 75%, #ff6b35 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s linear infinite;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: none;
}

.about-info p, .about-location p, .team p, .contact p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.services ul {
    list-style-type: none;
    padding-left: 1rem;
}

.services li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.services li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.slogan {
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    color: #2c5aa0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.slogan h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.slogan p {
    font-size: 1.2rem;
    margin: 0;
}

.hero-about {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('boca.png');
}

.hero-about h1 {
    background: linear-gradient(90deg, #2c5aa0 0%, #ff6b35 25%, #2c5aa0 50%, #ff6b35 75%, #2c5aa0 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s linear infinite;
}

.hero-contact h1 {
    background: linear-gradient(90deg, #2c5aa0 0%, #ff6b35 25%, #2c5aa0 50%, #ff6b35 75%, #2c5aa0 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s linear infinite;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid .feature-card h3 {
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-grid .feature-card .contact-link {
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-grid .feature-card .contact-link:hover {
    color: #ff6b35 !important;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.contact-grid .feature-card .map-link {
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-grid .feature-card .map-link:hover {
    color: #ff6b35 !important;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.contact-grid .feature-card .feature-icon {
    position: relative;
}

.contact-grid .feature-card .feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 140, 66, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsividade para Contact Grid */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Header e Navegação */
.header {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(30, 63, 107, 0.8)), 
                url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: visible;
    animation: heroBackgroundMove 25s ease-in-out infinite;
}




.header.scrolled {
    background: linear-gradient(rgba(30, 63, 107, 0.9), rgba(44, 90, 160, 0.9)), 
                url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    box-shadow: 0 8px 32px rgba(44, 90, 160, 0.4);
    animation: heroBackgroundMove 20s ease-in-out infinite;
}

.navbar {
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-3px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #ff6b35, #fff, #ff6b35);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

/* Botão de Reserva */
.reserve-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 5;
    display: inline-block;
    white-space: nowrap;
    max-width: fit-content;
}

.reserve-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
    color: white;
    animation: pulse 1s ease-in-out infinite;
}

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

.reserve-btn:hover::before {
    left: 100%;
}

.nav-item:last-child {
    margin-left: 0.5rem;
}

/* Seletor de Idioma */
.language-selector {
    position: relative;
    margin-left: 1rem;
    z-index: 1001;
    pointer-events: auto;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    z-index: 1001;
    width: auto;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 1000;
    position: relative;
    user-select: none;
    outline: none;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.language-btn:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.3);
}

.language-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Garantir que o botão seja clicável */
.language-btn * {
    pointer-events: none;
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

.flag-emoji {
    font-size: 20px;
    margin-right: 8px;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.lang-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.language-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-btn i {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-30%) translateY(-10px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
    border: 1px solid #ddd;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    width: max-content;
}

.language-dropdown.active .language-options {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-30%) translateY(0) !important;
    z-index: 99999 !important;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-option:hover {
    background: rgba(44, 90, 160, 0.1);
    color: #2c5aa0;
}

.language-option:first-child {
    border-radius: 15px 15px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 15px 15px;
}

.language-option:only-child {
    border-radius: 15px;
}

/* Garantir que o dropdown seja sempre o elemento mais alto */
.language-options {
    z-index: 99999 !important;
    position: fixed !important;
}

.language-dropdown.active .language-options {
    z-index: 99999 !important;
    position: fixed !important;
}

/* Exceção apenas para o dropdown */
.language-options {
    z-index: 99999 !important;
}

.language-dropdown.active .language-options {
    z-index: 99999 !important;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(44, 90, 160, 0.7) 0%,
        rgba(44, 90, 160, 0.75) 20%,
        rgba(44, 90, 160, 0.8) 40%,
        rgba(44, 90, 160, 0.85) 60%,
        rgba(30, 63, 107, 0.9) 80%,
        rgba(30, 63, 107, 0.95) 100%
    );
    z-index: -1;
}

@keyframes heroBackgroundMove {
    0% {
        background-position: center center;
        background-size: 120%;
    }
    25% {
        background-position: 30% 20%;
        background-size: 125%;
    }
    50% {
        background-position: 70% 80%;
        background-size: 130%;
    }
    75% {
        background-position: 40% 60%;
        background-size: 128%;
    }
    100% {
        background-position: center center;
        background-size: 120%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(44, 90, 160, 0.1));
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    height: 100%;
    padding: 2rem 2rem 4rem 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #87CEEB, #ff6b35, #ff8c42, #87CEEB, #ff6b35, #ff8c42, #87CEEB);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 100%;
    animation: fadeInUp 1s ease-out, gradientFlow 8s linear infinite;
}

@keyframes whiteGlow {
    0% {
        text-shadow: 
            0 0 8px rgba(0, 0, 0, 0.3),
            0 0 15px rgba(0, 0, 0, 0.2),
            0 0 25px rgba(0, 0, 0, 0.1);
    }
    100% {
        text-shadow: 
            0 0 12px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(0, 0, 0, 0.2);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease-out;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #87CEEB);
    background-size: 200% 200%;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
    border: 2px solid rgba(255,255,255,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button::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.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: auto;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
    font-family: 'Dancing Script', 'Poppins', cursive;
    font-weight: 700;
    position: relative;
}

.why-choose-us h2::before {
    content: '';
    display: none;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(15, 32, 54, 0.15) 0%, rgba(22, 45, 80, 0.1) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    border: 3px solid #ff6b35;
    backdrop-filter: blur(2px);
    background-clip: padding-box;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #2c5aa0, #87CEEB);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #87CEEB, #2c5aa0, #ff6b35);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 15px 15px;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    animation: pulse 1s ease-in-out;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Featured Destinations */
.featured-destinations {
    padding: 80px 0;
}

.featured-destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.destination-content p {
    color: #666;
    margin-bottom: 1rem;
}

.destination-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.destination-btn:hover {
    background: #1e3f6b;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2c5aa0, #1e3f6b);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('fique.jpeg') no-repeat center center;
    background-size: 120%;
    z-index: 0;
    opacity: 0.3;
    animation: heroBackgroundMove 25s ease-in-out infinite;
}

.newsletter .newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter h2,
.newsletter p,
.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.newsletter-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.5s;
}

.newsletter-btn:hover::before {
    left: 100%;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Popular Tours */
.popular-tours {
    padding: 5px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0;
    border: none;
    min-height: auto;
}

/* Removido para evitar sobreposição com background global */

.popular-tours h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    position: relative;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}

.popular-tours h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(44, 90, 160, 0.1), rgba(135, 206, 235, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
}

.popular-tours > .container > p {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0.2px;
    position: relative;
    white-space: nowrap;
}

.popular-tours > .container > p::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, #2c5aa0, transparent);
    border-radius: 1px;
}

.popular-tours .tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.popular-tours .tour-card {
    background: linear-gradient(145deg, rgba(15, 32, 54, 0.15) 0%, rgba(22, 45, 80, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid #ff6b35;
    backdrop-filter: blur(2px);
}

.popular-tours .tour-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ff6b35);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
}

.popular-tours .tour-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 2;
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.popular-tours .tour-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.popular-tours .tour-image {
    height: 180px;
    overflow: hidden;
}

.popular-tours .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-tours .tour-content {
    padding: 1.2rem;
}

.popular-tours .tour-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.3px;
}

.popular-tours .tour-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.popular-tours .tour-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.popular-tours .tour-features .feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.popular-tours .tour-features .feature:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(2px);
}

.popular-tours .tour-price {
    margin: 0.8rem 0;
    text-align: center;
}

.popular-tours .tour-price .price {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    display: inline-block;
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: -0.5px;
}

.popular-tours .tour-actions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    width: 100%;
}

.popular-tours .tour-actions .tour-btn {
    display: block;
    margin: 0 auto;
    font-size: 0.9rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 3px 8px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.popular-tours .tour-actions .tour-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff7a3d 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 5px 12px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.popular-tours .tour-actions .tour-details-btn {
    display: block;
    font-size: 0.85rem;
    padding: 8px 16px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 3px 8px rgba(44, 90, 160, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.popular-tours .tour-actions .tour-details-btn:hover {
    background: linear-gradient(135deg, #1e3f6b 0%, #2c5aa0 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 5px 12px rgba(44, 90, 160, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.popular-tours .view-all {
    text-align: center;
    margin-top: 1rem;
}

.popular-tours .view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e3f6b);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.popular-tours .view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.popular-tours .view-all-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.5s;
}

.popular-tours .view-all-btn:hover::before {
    left: 100%;
}

/* Popular Transfers */
.popular-transfers {
    padding: 5px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0;
    border: none;
    min-height: auto;
}

/* Removido para evitar sobreposição com background global */

.popular-transfers h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    position: relative;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}

.popular-transfers h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(44, 90, 160, 0.1), rgba(135, 206, 235, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
}

.popular-transfers > .container > p {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0.2px;
    position: relative;
    white-space: nowrap;
}

.popular-transfers > .container > p::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, #2c5aa0, transparent);
    border-radius: 1px;
}

.popular-transfers .transfers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.popular-transfers .transfer-card {
    background: linear-gradient(145deg, rgba(15, 32, 54, 0.15) 0%, rgba(22, 45, 80, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid #ff6b35;
    backdrop-filter: blur(2px);
    animation: fadeInUp 0.8s ease-out;
}

.popular-transfers .transfer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.popular-transfers .transfer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #2c5aa0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.popular-transfers .transfer-card:hover::before {
    transform: scaleX(1);
}

.popular-transfers .transfer-image {
    height: 180px;
    overflow: hidden;
}

.popular-transfers .transfer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-transfers .transfer-card:hover .transfer-image img {
    transform: scale(1.1);
}

.popular-transfers .transfer-content {
    padding: 1.2rem;
}

.popular-transfers .transfer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.3px;
}

.popular-transfers .transfer-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.transfer-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.transfer-btn:hover {
    background: #1e3f6b;
}

.popular-transfers .view-all {
    text-align: center;
    margin-top: 1rem;
}

.popular-transfers .view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e3f6b);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.popular-transfers .view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.popular-transfers .view-all-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.5s;
}

.popular-transfers .view-all-btn:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: transparent;
    color: white;
    padding: 10px 0 0px;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    transform: translateY(0px);
    min-height: 10vh;
    z-index: 10;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerWaves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,80 Q25,60 50,80 T100,80 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,90 Q25,70 50,90 T100,90 L100,100 L0,100 Z" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerWaves)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
    height: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #2c5aa0);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #2c5aa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 2rem 0.5rem 2rem;
    background: transparent;
    border-top: none;
    opacity: 0.8;
    position: relative;
    z-index: 15;
    margin: 0 !important;
    margin-bottom: 0 !important;
    transform: translateY(0px);
    min-height: 30px;
}

/* Faixa preta para cobrir o espaço azul */
.footer-bottom::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: #000;
    z-index: 999;
}

/* Ícone GBESSEN */
.gbessen-icon {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    z-index: 20;
}

.gbessen-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

.gbessen-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* WhatsApp Flutuante Simples */
.whatsapp-floating {
    position: fixed !important;
    top: 50vh !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    z-index: 99999 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: white !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.whatsapp-floating:hover {
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6) !important;
}

.whatsapp-floating i {
    font-size: 30px !important;
    color: white !important;
}

/* Page Header */
.page-header {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.page-header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: -1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #2c5aa0 0%, #ff6b35 25%, #2c5aa0 50%, #ff6b35 75%, #2c5aa0 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s linear infinite;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Destinations Page */
.destinations-page {
    padding: 80px 0;
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.destination-features .feature {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Tours Page */
.tours-page {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 100%;
}

/* Responsividade para Tours Grid */
@media (max-width: 1600px) {
    .tours-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.tour-card {
    background: linear-gradient(145deg, rgba(15, 32, 54, 0.15) 0%, rgba(22, 45, 80, 0.1) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    border: 3px solid #ff6b35;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(0px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #2c5aa0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tour-card:hover::before {
    transform: scaleX(1);
}

.tour-image {
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tour-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tour-features .feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.tour-features .feature:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(2px);
}

.tour-btn {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.tour-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.tour-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.5s;
}

.tour-btn:hover::before {
    left: 100%;
}

.tour-price {
    margin: 1rem 0;
    text-align: center;
    margin-top: auto;
    margin-bottom: 1rem;
}

.tour-price .price {
    background: linear-gradient(135deg, #2c5aa0, #1e3f6b);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
}

.tour-price .price:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.tour-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    margin-top: 0;
}

.tour-actions .tour-btn {
    display: block !important;
    margin: 0 auto !important;
}

.tour-actions .tour-details-btn {
    display: block !important;
}

.tour-details-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.tour-details-btn:hover {
    background: #218838;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: color 0.3s ease;
    z-index: 1001;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-subtitle {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.tour-description {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.tour-description p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tour-itinerary {
    margin-bottom: 2rem;
}

.itinerary-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.itinerary-number {
    font-size: 1.5rem;
    min-width: 50px;
}

.itinerary-content h3 {
    color: #2c5aa0;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.itinerary-content p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.itinerary-content h4 {
    color: #333;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.itinerary-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.itinerary-content li {
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.culinary-list, .surf-info, .moreré-details, .cueira-details, .amendoeiras-details, .castelhanos-details, .sunset-options, .garapua-nature, .garapua-pools, .garapua-schedule, .garapua-payment, .historico-details, .historico-info, .historico-payment, .volta-schedule, .volta-payment, .castelhanos-schedule, .castelhanos-payment, .morro-details, .morro-praia-details, .morro-schedule, .morro-payment, .cavalo-details, .cavalo-payment {
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.tour-duration {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #2196f3;
}

.tour-duration h3 {
    color: #1976d2;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.tour-duration ul {
    margin: 0;
    padding-left: 1.5rem;
}

.tour-duration li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.tour-price-modal {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #2c5aa0;
}

.price-large {
    background: #2c5aa0;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.modal-reserve-btn {
    margin: 0;
    font-size: 1.1rem;
    padding: 12px 30px;
}

/* Transfers Page */
.transfers-page {
    padding: 80px 0;
}

.transfers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Responsividade para Transfers Grid */
@media (max-width: 1200px) {
    .transfers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .transfers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.transfer-card {
    background: linear-gradient(145deg, rgba(15, 32, 54, 0.15) 0%, rgba(22, 45, 80, 0.1) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid #ff6b35;
    backdrop-filter: blur(2px);
}

.transfer-card:hover {
    transform: translateY(-5px);
}

.transfer-image {
    height: 200px;
    overflow: hidden;
}

.transfer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transfer-content {
    padding: 1.5rem;
}

.transfer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.transfer-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.transfer-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.transfer-features .feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.transfer-features .feature:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(2px);
}

.transfer-price {
    margin: 1rem 0;
    text-align: center;
}

.transfer-price .price {
    background: #2c5aa0;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
}

.transfer-details-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.transfer-details-btn:hover {
    background: #218838;
}

.popular-transfers .transfer-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.popular-transfers .transfer-features .feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.popular-transfers .transfer-features .feature:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(2px);
}

.popular-transfers .transfer-price {
    margin: 0.8rem 0;
    text-align: center;
}

.popular-transfers .transfer-price .price {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    display: inline-block;
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: -0.5px;
}

.popular-transfers .tour-actions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    width: 100%;
}

.popular-transfers .tour-actions .tour-btn {
    display: block;
    margin: 0 auto;
    font-size: 0.9rem;
    padding: 8px 16px;
}

.popular-transfers .tour-actions .transfer-details-btn {
    display: block;
    font-size: 0.8rem;
    padding: 6px 12px;
}

.popular-transfers .transfer-details-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.8rem;
}

.popular-transfers .transfer-details-btn:hover {
    background: #218838;
}

/* Transfer Modal Styles */
.transfer-details, .transfer-payment {
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c5aa0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.scroll-to-top:hover {
    background: #1e3f6b;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(44, 90, 160, 0.4);
}

/* Animações adicionais */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

/* Efeito de loading */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #2c5aa0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Efeito de hover para imagens */
.tour-image, .transfer-image, .destination-image {
    position: relative;
    overflow: hidden;
}

.tour-image::after, .transfer-image::after, .destination-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(44, 90, 160, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card:hover .tour-image::after,
.transfer-card:hover .transfer-image::after,
.destination-card:hover .destination-image::after {
    opacity: 1;
}

/* Efeito de onda nos botões */
@keyframes wave {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button:hover,
.tour-btn:hover,
.reserve-btn:hover {
    animation: wave 0.6s ease-in-out;
}

/* Efeito de gradiente animado no background - removido para evitar conflito com vídeo */

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh !important;
        padding: 2rem 0 !important;
    }
    
    .hero-content h1 {
        font-size: 1.1rem !important;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    body .hero-content h1 {
        font-size: 1.1rem !important;
    }
    
    html body .hero-content h1 {
        font-size: 1.1rem !important;
    }
    
    @media screen and (max-width: 768px) {
        .hero-content h1 {
            font-size: 1.1rem !important;
        }
    }
    
    .hero-content p {
        font-size: 0.7rem !important;
        margin-bottom: 1.5rem;
    }
    
    .popular-tours {
        padding: 20px 0 !important;
        margin-top: 0 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .popular-tours h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .popular-tours > .container > p {
        font-size: 0.6rem !important;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .popular-tours .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .popular-transfers {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .popular-transfers .transfers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .why-choose-us {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .popular-tours .tour-content,
    .popular-transfers .transfer-content {
        padding: 0.8rem;
    }
    
    .tour-content h3 {
        font-size: 1rem;
    }
    
    .tour-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Cards específicos para mobile */
    .tour-card:has(.tour-content h3:contains("Quadriciclo Ecológico 1")),
    .tour-card:has(.tour-content h3:contains("Quadriciclo Ecológico 2")) {
        transform: scale(0.9) !important;
    }
    
    .tour-card:has(.tour-content h3:contains("Quadriciclo Ecológico 1")) .tour-content,
    .tour-card:has(.tour-content h3:contains("Quadriciclo Ecológico 2")) .tour-content {
        padding: 0.6rem !important;
    }
    
    .tour-card:has(.tour-content h3:contains("Quadriciclo Ecológico 1")) .tour-content h3,
    .tour-card:has(.tour-content h3:contains("Quadriciclo Ecológico 2")) .tour-content h3 {
        font-size: 0.9rem !important;
    }
    
    .tour-card:has(.tour-content h3:contains("Quadriciclo Ecológico 1")) .tour-content p,
    .tour-card:has(.tour-content h3:contains("Quadriciclo Ecológico 2")) .tour-content p {
        font-size: 0.7rem !important;
        line-height: 1.3;
    }
    
    .tour-features .feature {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .tour-price .price {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .tour-actions .tour-btn,
    .tour-actions .tour-details-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #2c5aa0, #1e3f6b);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: #fff !important;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 1rem 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        display: block;
    }
    
    .nav-menu .nav-link:hover {
        color: #ff6b35 !important;
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
        transform: translateX(5px);
    }
    
    .nav-menu .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .reserve-btn {
        background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
        color: #fff !important;
        padding: 12px 24px !important;
        border-radius: 25px !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
        transition: all 0.3s ease !important;
        margin: 1rem auto !important;
        display: block !important;
        text-decoration: none !important;
        text-align: center !important;
        width: fit-content !important;
    }
    
    .nav-menu .reserve-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6) !important;
        color: #fff !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


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

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .form-group {
        min-width: 100%;
        max-width: 400px;
    }
}

/* Remover gradientes de fade problemáticos */

@media (max-width: 480px) {
    .popular-tours .tours-grid,
    .popular-transfers .transfers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    

    .container {
        padding: 0 15px;
    }
    
    /* Background global para mobile */
    #global-background {
        height: 100vh !important;
        min-height: 100vh !important;
        background-size: cover !important;
        background-position: center !important;
        background-attachment: fixed !important;
    }
    
    body {
        min-height: 100vh !important;
        height: auto !important;
    }
    
    /* Newsletter background para mobile */
    .newsletter::after {
        background-size: 300% !important;
        opacity: 0.4 !important;
    }

    .feature-card,
    .destination-card,
    .blog-card,
    .transfer-card {
        margin: 0 10px;
    }
    
    /* Footer para mobile */
    .footer {
        padding: 1rem 0 !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .footer-section {
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .footer-section ul {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .social-links {
        justify-content: center !important;
        gap: 1rem !important;
    }
    
    .footer-bottom {
        text-align: center !important;
        padding: 0.5rem 1rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.7rem !important;
    }
    
    /* Remover coluna Institucional no mobile */
    .footer-section h4:contains("Institucional") {
        display: none !important;
    }
    
    .footer-section:has(h4:contains("Institucional")) {
        display: none !important;
    }
    
    .footer-section:has(h4:contains("Institucional")) + .footer-section {
        display: none !important;
    }
    
    /* Mover GBESSEN para baixo do copyright no mobile */
    .gbessen-icon {
        order: 999 !important;
        margin-top: 1rem !important;
        margin-bottom: 0 !important;
    }
    
    .footer-bottom {
        order: 998 !important;
    }
    
    /* Subir redes sociais, institucional e serviços no mobile */
    .footer-section:has(h4:contains("Serviços")) {
        order: -1 !important;
    }
    
    .footer-section:has(h4:contains("Institucional")) {
        order: -2 !important;
    }
    
    .social-links {
        order: -3 !important;
    }
    
    /* Remover faixa preta do footer no mobile */
    .footer-bottom::after {
        display: none !important;
    }
    
    .footer-bottom {
        background: transparent !important;
        border-top: none !important;
    }
    
    /* Aumentar altura do footer no mobile */
    .footer {
        min-height: 15vh !important;
        padding: 2rem 0 !important;
    }
    
    /* Subir um pouco o GBESSEN no mobile */
    .gbessen-icon {
        margin-top: 22rem !important;
        margin-bottom: 17rem !important;
    }
}

    /* Ajuste específico para desktop - subir GBESSEN */
@media (min-width: 769px) {
    .gbessen-icon {
        top: 80px !important;
    }
}

/* Garantir que o GBESSEN apareça em todas as páginas no desktop */
@media (min-width: 769px) {
    .gbessen-icon {
        position: absolute !important;
        top: 80px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100px !important;
        height: 100px !important;
        z-index: 20 !important;
        display: block !important;
    }
    
    .gbessen-icon a {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .gbessen-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
}

/* Correções para páginas específicas no mobile */
@media (max-width: 768px) {
    /* Passeios, Transfers, Sobre, Contato - Hero */
    .page-header {
        min-height: 40vh !important;
        padding: 2rem 0 !important;
    }
    
    .page-header h1 {
        font-size: 1.5rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .page-header p {
        font-size: 0.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Tours Page - Forçar visibilidade */
    .tours-page {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .tours-page .tours-grid {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .tours-page .tour-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    /* Transfers Page - Forçar visibilidade */
    .transfers-page {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .transfers-page .transfers-grid {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .transfers-page .transfer-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    /* About Page - Forçar visibilidade */
    .about-section {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    .about-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    /* Contact Page - Forçar visibilidade */
    .contact-section {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    .contact-grid {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    .contact-grid .feature-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    /* Remover todas as animações que podem causar problemas */
    .tours-page *,
    .transfers-page *,
    .about-section *,
    .contact-section * {
        animation: none !important;
        transition: none !important;
    }
    
    /* Padronizar footer em todas as páginas no mobile */
    .footer {
        min-height: 25vh !important;
        padding: 3rem 0 !important;
    }
    
    .footer-bottom {
        padding: 1rem 2rem 0.5rem 2rem !important;
        min-height: 30px !important;
    }
    
    /* GBESSEN em todas as páginas no mobile */
    .gbessen-icon {
        margin-top: 23rem !important;
        margin-bottom: 18rem !important;
    }
    
    /* Diminuir copyright no mobile para todas as páginas */
    .footer-bottom p {
        font-size: 0.5rem !important;
    }
}