/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --azul-turquesa: #00B4D8;
    --verde-suave: #52B788;
    --laranja-queimado: #E76F51;
    --branco-neve: #F9F9F9;
    --cinza-grafite: #333333;
    
    /* Variações */
    --azul-escuro: #0077B6;
    --verde-escuro: #2D6A4F;
    --laranja-escuro: #D64933;
    
    /* Transparências */
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --overlay-gradient: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(82, 183, 136, 0.15));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color:#F9F9F9;
    color: var(--cinza-grafite);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative !important;
    top: 0 !important;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background: #FFFFFF;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 102, 0, 0.3) 0%,
        rgba(255, 102, 0, 0.1) 20%,
        transparent 50%,
        rgba(255, 102, 0, 0.1) 80%,
        rgba(255, 102, 0, 0.3) 100%
    );
}

.main-header.hidden {
    transform: translateY(-100%);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
}

.header-logo .logo-image {
    height: 80px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: var(--cinza-grafite);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
}

.header-nav a:hover {
    color: #FF6600;
}

.header-nav a.active {
    color: #FF6600;
    font-size: 1.15rem;
    font-weight: 700;
}

.header-cta {
    background: linear-gradient(#fff2, #0001), #FF6600;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 0.6rem;
    position: relative;
    border: none;
    
    /* Efeito neumórfico de profundidade */
    box-shadow:
        1px 1px 2px 0 #fffd,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        0 4px 8px rgba(0, 0, 0, 0.1);
    
    transition: all 0.3s cubic-bezier(0.25, 1.5, 0.5, 1);
}

.header-cta svg {
    width: 22px;
    height: 22px;
}

.header-cta:hover {
    background: linear-gradient(#fff2, #0001), #00B4D8;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        1px 1px 3px 0 #fffd,
        0 6px 15px rgba(0, 180, 216, 0.4),
        0 0 25px rgba(0, 180, 216, 0.3);
}

.header-cta:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        1px 1px 2px 0 #fff,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        2px 2px 8px #0001 inset;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-flag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-size: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.language-flag:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.language-flag.active {
    opacity: 1;
    transform: scale(1.1);
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}


/* Language Selector Mobile */
.language-selector-mobile {
    display: none;
}

@media (max-width: 768px) {
    .language-selector-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-top: 1px solid #f0f0f0;
    }
}

.language-selector-mobile .language-flag {
    width: 32px;
    height: 32px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: #F9F9F9;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

/* Formas Abstratas Minimalistas */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
}

/* Forma Geométrica Azul - Topo direito */
.shape-circle-1 {
    top: 8%;
    right: 5%;
    width: 400px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(0, 180, 216, 0.3) 0%,
        rgba(0, 180, 216, 0.2) 50%,
        transparent 100%
    );
    clip-path: polygon(0% 0%, 100% 20%, 80% 100%, 0% 80%);
    animation: floatShape 15s ease-in-out infinite;
}

/* Forma Laranja Angular - Inferior esquerdo */
.shape-circle-2 {
    bottom: 10%;
    left: 0;
    width: 350px;
    height: 250px;
    background: linear-gradient(
        45deg,
        rgba(255, 102, 0, 0.28) 0%,
        rgba(255, 140, 66, 0.18) 60%,
        transparent 100%
    );
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 70%);
    animation: floatShape 18s ease-in-out infinite reverse;
}

/* Ondas Azuis - Centro esquerdo */
.shape-wave {
    top: 40%;
    left: 5%;
    width: 500px;
    height: 200px;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 180, 216, 0.15) 30%, transparent 70%),
        linear-gradient(90deg, transparent 0%, rgba(0, 180, 216, 0.12) 50%, transparent 80%),
        linear-gradient(90deg, transparent 0%, rgba(0, 180, 216, 0.10) 70%, transparent 90%);
    background-size: 100% 25%, 100% 20%, 100% 30%;
    background-position: 0% 0%, 0% 40%, 0% 80%;
    background-repeat: no-repeat;
    clip-path: polygon(0% 50%, 20% 30%, 40% 60%, 60% 20%, 80% 70%, 100% 40%, 100% 100%, 0% 100%);
    opacity: 0.8;
}

/* Forma Verde Orgânica - Centro direito */
.shape-mountain {
    top: 25%;
    right: 8%;
    width: 280px;
    height: 400px;
    background: linear-gradient(
        180deg,
        rgba(82, 183, 136, 0.2) 0%,
        rgba(82, 183, 136, 0.15) 40%,
        rgba(82, 183, 136, 0.08) 70%,
        transparent 100%
    );
    clip-path: polygon(30% 0%, 70% 0%, 90% 30%, 80% 60%, 100% 80%, 60% 100%, 40% 90%, 20% 70%, 0% 50%, 10% 20%);
    opacity: 0.9;
}

/* Linha Diagonal Laranja - Acento */
.shape-path {
    top: 60%;
    right: 20%;
    width: 300px;
    height: 80px;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 102, 0, 0.22) 30%,
        rgba(255, 140, 66, 0.15) 70%,
        transparent 100%
    );
    clip-path: polygon(0% 50%, 100% 20%, 95% 30%, 5% 60%);
    transform: rotate(-15deg);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Imagem do Jeep na Direita */
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 550px;
    object-fit: contain;
}

/* Hero Badge - Estilo Neumórfico com Pulso */
.hero-badge {
    --badge-hue-orange: 20deg;
    --badge-hue-blue: 195deg;
    
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: none;
    
    background: linear-gradient(#fff2, #0001), #ffffff;
    
    box-shadow:
        1px 1px 2px 0 #fffd,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        2px 2px 8px #0001 inset;
    
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.3px;
    
    user-select: none;
    z-index: 10;
}

.hero-badge span {
    color: #5550;
    background-image: linear-gradient(90deg, #FF6600, #00B4D8, #FF6600);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 0px #fff8);
    animation: gradientSlow 6s ease-in-out infinite;
}

.hero-badge svg {
    width: clamp(16px, 2vw, 18px);
    height: clamp(16px, 2vw, 18px);
    stroke: #FF6600;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

/* Ponto pulsante no badge */
.hero-badge::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 102, 0, 0.3);
    border: 1px solid rgba(255, 102, 0, 0.6);
    box-shadow:
        1px 1px 2px -1px #fffe inset,
        0 0 10px 2px rgba(255, 102, 0, 0.3),
        0 0 20px 10px rgba(0, 180, 216, 0.2);
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        background-color: rgba(255, 102, 0, 0.3);
        box-shadow:
            1px 1px 2px -1px #fffe inset,
            0 0 10px 2px rgba(255, 102, 0, 0.3),
            0 0 20px 10px rgba(0, 180, 216, 0.2);
    }
    50% {
        background-color: rgba(0, 180, 216, 1);
        box-shadow:
            1px 1px 2px -1px #fffe inset,
            0 0 15px 3px rgba(0, 180, 216, 0.6),
            0 0 30px 15px rgba(255, 102, 0, 0.3);
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #000000;
    line-height: 1.15;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: clamp(-2px, -0.1vw, -1px);
}

.title-line {
    display: block;
    color: #000000;
}

.title-line.highlight {
    color: #000000;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--cinza-grafite);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    opacity: 0.85;
}

.hero-subtitle strong {
    font-weight: 700;
    color: var(--azul-turquesa);
    opacity: 1;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1.2rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    padding: clamp(0.85rem, 1.5vw, 1.1rem) clamp(1.5rem, 3vw, 2.2rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    cursor: pointer;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    border: none;
    
    /* Efeito neumórfico de profundidade */
    box-shadow:
        1px 1px 2px 0 #fffd,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        0 4px 8px rgba(0, 0, 0, 0.1);
    
    transition: all 0.3s cubic-bezier(0.25, 1.5, 0.5, 1);
}

.btn-primary {
    background: linear-gradient(#fff2, #0001), #FF6600;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(#fff2, #0001), #00B4D8;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        1px 1px 3px 0 #fffd,
        0 6px 15px rgba(0, 180, 216, 0.4),
        0 0 25px rgba(0, 180, 216, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        1px 1px 2px 0 #fff,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        2px 2px 8px #0001 inset;
}

.btn-secondary {
    background: linear-gradient(#fff2, #0001), linear-gradient(180deg, #00B4D8, #FF6600, #00B4D8);
    background-size: 100% 100%, 100% 300%;
    color: white;
    animation: gradientVertical 15s ease-in-out infinite, btnGlowOuter2 15s ease-in-out infinite;
}

.btn-secondary:hover {
    background: linear-gradient(#fff2, #0001), #00B4D8;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        1px 1px 3px 0 #fffd,
        0 6px 15px rgba(0, 180, 216, 0.4),
        0 0 25px rgba(0, 180, 216, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow:
        1px 1px 2px 0 #fff,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        2px 2px 8px #0001 inset;
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(160px, 20vw, 180px), 1fr));
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    max-width: 850px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: clamp(0.6rem, 1.2vw, 0.9rem);
    background: white;
    padding: clamp(0.8rem, 1.5vw, 1.1rem) clamp(1rem, 1.8vw, 1.3rem);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.feature-icon {
    flex-shrink: 0;
    width: clamp(36px, 5vw, 42px);
    height: clamp(36px, 5vw, 42px);
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-turquesa);
}

.feature-icon svg {
    width: clamp(18px, 2.5vw, 22px);
    height: clamp(18px, 2.5vw, 22px);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.feature-text strong {
    color: var(--cinza-grafite);
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.feature-text span {
    color: rgba(51, 51, 51, 0.7);
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 500;
    line-height: 1.4;
}


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

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

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 102, 0, 0.7), 0 0 40px rgba(255, 102, 0, 0.3);
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

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

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

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

@keyframes morphBlob {
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
    25% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 70% 30% 45%;
    }
    75% {
        border-radius: 60% 40% 45% 55% / 65% 35% 65% 35%;
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

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

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

/* Glow externo acompanha gradiente - Botão Primário (diagonal) */
@keyframes btnGlowOuter {
    0% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 20px rgba(255, 102, 0, 0.4),
            0 0 30px rgba(255, 102, 0, 0.2);
    }
    25% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 25px rgba(0, 180, 216, 0.5),
            0 0 35px rgba(0, 180, 216, 0.25);
    }
    50% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 20px rgba(255, 140, 66, 0.4),
            0 0 30px rgba(255, 140, 66, 0.2);
    }
    75% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 25px rgba(0, 180, 216, 0.5),
            0 0 35px rgba(0, 180, 216, 0.25);
    }
    100% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 20px rgba(255, 102, 0, 0.4),
            0 0 30px rgba(255, 102, 0, 0.2);
    }
}

/* Glow externo - Botão Secundário (vertical) */
@keyframes btnGlowOuter2 {
    0% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 20px rgba(0, 180, 216, 0.4),
            0 0 30px rgba(0, 180, 216, 0.2);
    }
    50% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 25px rgba(255, 102, 0, 0.5),
            0 0 35px rgba(255, 102, 0, 0.25);
    }
    100% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 20px rgba(0, 180, 216, 0.4),
            0 0 30px rgba(0, 180, 216, 0.2);
    }
}

/* Glow externo - Header (horizontal) */
@keyframes btnGlowOuter3 {
    0% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 15px rgba(255, 102, 0, 0.3),
            0 0 25px rgba(255, 102, 0, 0.15);
    }
    50% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 20px rgba(0, 180, 216, 0.4),
            0 0 30px rgba(0, 180, 216, 0.2);
    }
    100% {
        box-shadow:
            1px 1px 2px 0 #fffd,
            2px 2px 2px #0001 inset,
            2px 2px 4px #0001 inset,
            0 0 15px rgba(255, 102, 0, 0.3),
            0 0 25px rgba(255, 102, 0, 0.15);
    }
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-menu a:hover {
    background: #f8f9fa;
    color: #FF6600;
}

.mobile-cta {
    background: linear-gradient(135deg, #FF6600, #FF8C42) !important;
    color: white !important;
    padding: 1.2rem !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #FF8C42, #FF6600) !important;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-nav {
        gap: 1.5rem;
    }
    
    .header-nav a {
        font-size: 0.9rem;
    }
    
    .header-content {
        padding: 1rem 2.5rem;
    }
    
    .header-logo .logo-image {
        height: 65px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: auto 1fr auto;
        padding: 1rem 1.5rem;
    }
    
    .header-logo .logo-image {
        height: 50px;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .language-selector {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    
    .mobile-menu {
        display: flex;
        align-items: flex-end;
    }
    
    .mobile-menu a {
        text-align: right;
        padding: 1rem 0;
    }
    
    .hero-container {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.8rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .hero-image img {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
    }
    
    .hero-image img {
        max-width: 350px;
    }
}

/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

/* Formas abstratas no background */
.about-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 102, 0, 0.10) 0%,
        rgba(255, 140, 66, 0.05) 40%,
        rgba(255, 102, 0, 0.02) 70%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle at 70% 70%,
        rgba(0, 180, 216, 0.10) 0%,
        rgba(0, 180, 216, 0.05) 40%,
        rgba(0, 180, 216, 0.02) 70%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: 1;
}

/* Formas adicionais */
.about-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: linear-gradient(
        45deg,
        rgba(82, 183, 136, 0.08) 0%,
        rgba(82, 183, 136, 0.04) 50%,
        transparent 100%
    );
    border-radius: 50%;
    transform: rotate(30deg);
}

.shape-2 {
    position: absolute;
    bottom: 25%;
    left: 10%;
    width: 250px;
    height: 150px;
    background: linear-gradient(
        135deg,
        rgba(255, 102, 0, 0.08) 0%,
        rgba(0, 180, 216, 0.06) 50%,
        transparent 100%
    );
    border-radius: 50% 20% 50% 20%;
    transform: rotate(-20deg);
}

.shape-3 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 140, 66, 0.06) 30%,
        rgba(0, 180, 216, 0.06) 70%,
        transparent 100%
    );
    border-radius: 50px;
    z-index: 2;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

/* Coluna 1: Widgets */
.about-widgets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: space-between;
}

.widget {
    background: #F9F9F9;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    
    /* Efeito Neumorfismo de Profundidade */
    box-shadow: 
        0 4px 12px rgba(255, 102, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

.widget-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #FF6600;
    
    /* Efeito de profundidade tipo input */
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.25),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.15);
}

.widget-icon svg {
    width: 24px;
    height: 24px;
}

.widget-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.widget-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333333;
    line-height: 1;
    margin: 0;
}

.widget h3 {
    color: #747474f9;
        font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.2px;
}

.widget p {
    display: none;
}

/* Coluna 2: Imagem Central */
.about-image {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Coluna 3: Conteúdo */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.about-subtitle {
    color: #FF6600;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.about-title {
    color: #333333;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 500px;
}

.about-description:last-of-type {
    margin-bottom: 2.5rem;
}

.btn-about {
    background: linear-gradient(#fff2, #0001), #FF6600;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    border: none;
    align-self: flex-start;
    
    /* Efeito neumórfico de profundidade */
    box-shadow:
        1px 1px 2px 0 #fffd,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        0 4px 8px rgba(0, 0, 0, 0.1);
    
    transition: all 0.3s cubic-bezier(0.25, 1.5, 0.5, 1);
}

.btn-about:hover {
    background: linear-gradient(#fff2, #0001), #00B4D8;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        1px 1px 3px 0 #fffd,
        0 6px 15px rgba(0, 180, 216, 0.4),
        0 0 25px rgba(0, 180, 216, 0.3);
}

.btn-about:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        1px 1px 2px 0 #fff,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        2px 2px 8px #0001 inset;
}

/* ========================================
   TICKER SECTION
======================================== */

.ticker-section {
    padding: 3rem 0;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    width: 100%;
}

.ticker-list {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #333333;
    margin: 0;
    letter-spacing: -0.5px;
}

.ticker-icon {
    width: 46px;
    height: 46px;
    stroke: #FF6600;
    flex-shrink: 0;
}

/* Animação de rolagem infinita */
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Responsividade */
@media (min-width: 810px) and (max-width: 1439.98px) {
    .ticker-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 809px) {
    .ticker-section {
        padding: 2rem 0;
    }
    
    .ticker-text {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
    
    .ticker-icon {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   DESTINATIONS SECTION
======================================== */

.destinations-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.destinations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.destinations-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
}

.destinations-subtitle {
    display: inline-block;
    color: #FF6600;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.destinations-title {
    color: #333333;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

.destinations-slider-wrapper {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
    padding: 1rem 0;
}

.destinations-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.destination-card {
    background: #FFFFFF;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 450px;
    min-width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.destination-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-decoration: none;
}

.destination-image {
    width: 100%;
    height: 450px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.4s ease;
}

.destination-image-link:hover .destination-image img {
    transform: scale(1.05);
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(8, 0, 30, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    height: 80px;
    transition: all 0.3s ease;
    z-index: 2;
}

.destination-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.destination-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-places {
    font-size: 0.9rem;
    color: #6E717B;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #FF6600;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.destination-btn svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.destination-btn:hover {
    background: #00B4D8;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        1px 1px 3px 0 #fffd,
        0 6px 15px rgba(0, 180, 216, 0.4),
        0 0 25px rgba(0, 180, 216, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333333;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: #333333;
}

.slider-btn:hover {
    background: #00B4D8;
    border-color: #00B4D8;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        1px 1px 3px 0 #fffd,
        0 6px 15px rgba(0, 180, 216, 0.4),
        0 0 25px rgba(0, 180, 216, 0.3);
}

.slider-btn:hover svg {
    stroke: #FFFFFF;
}

.slider-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.slider-btn:disabled:hover {
    background: #FFFFFF;
    border-color: #333333;
}

.slider-btn:disabled:hover svg {
    stroke: #333333;
}

/* Responsividade */
@media (max-width: 1024px) {
    .destination-card {
        min-width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .destination-card {
        min-width: 100%;
        height: 400px;
    }
    
    .destination-image {
        height: 400px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .destination-image img {
        height: 100%;
        min-height: 400px;
        max-height: 400px;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .destination-content {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    
    .destination-name {
        font-size: 1.3rem;
    }
    
    .destination-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   PERSONALIZED TOURS SECTION
======================================== */

.personalized-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Formas Abstratas Minimalistas */
.personalized-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.p-shape {
    position: absolute;
}

/* Forma em L - Topo esquerdo */
.p-shape-wave {
    top: 8%;
    left: 3%;
    width: 120px;
    height: 120px;
    background: linear-gradient(
        135deg,
        rgba(0, 180, 216, 0.05) 0%,
        rgba(0, 180, 216, 0.03) 50%,
        transparent 100%
    );
    clip-path: polygon(0% 0%, 40% 0%, 40% 40%, 100% 40%, 100% 100%, 0% 100%);
}

/* Anéis concêntricos - Topo direito */
.p-shape-circle-1 {
    top: 12%;
    right: 8%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 180, 216, 0.06);
    border-radius: 50%;
    position: relative;
}

.p-shape-circle-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 180, 216, 0.04);
    border-radius: 50%;
}

/* Linha diagonal - Inferior esquerdo */
.p-shape-circle-2 {
    bottom: 25%;
    left: 5%;
    width: 150px;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(0, 180, 216, 0.06) 0%,
        rgba(0, 180, 216, 0.03) 50%,
        transparent 100%
    );
    transform: rotate(-45deg);
}

/* Pontos flutuantes - Inferior direito */
.p-shape-mountain {
    bottom: 15%;
    right: 6%;
    width: 100px;
    height: 80px;
    position: relative;
}

.p-shape-mountain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: rgba(0, 180, 216, 0.06);
    border-radius: 50%;
}

.p-shape-mountain::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: rgba(0, 180, 216, 0.05);
    border-radius: 50%;
}

.personalized-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.personalized-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.personalized-subtitle {
    display: inline-block;
    color: #FF6600;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.personalized-title {
    color: #333333;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

.personalized-description {
    color: #666666;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.7;
    margin: 0;
}

.btn-personalized {
    background: linear-gradient(#fff2, #0001), #FF6600;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    border: none;
    align-self: flex-start;
    
    box-shadow:
        1px 1px 2px 0 #fffd,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        0 4px 8px rgba(0, 0, 0, 0.1);
    
    transition: all 0.3s cubic-bezier(0.25, 1.5, 0.5, 1);
}

.btn-personalized:hover {
    background: linear-gradient(#fff2, #0001), #00B4D8;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        1px 1px 3px 0 #fffd,
        0 6px 15px rgba(0, 180, 216, 0.4),
        0 0 25px rgba(0, 180, 216, 0.3);
}

.btn-personalized:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        1px 1px 2px 0 #fff,
        2px 2px 2px #0001 inset,
        2px 2px 4px #0001 inset,
        2px 2px 8px #0001 inset;
}

.personalized-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Círculo grande - Esquerda extrema */
.circle-large {
    width: 450px;
    height: 450px;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Círculo médio - Direita extrema */
.circle-medium {
    width: 320px;
    height: 320px;
    top: 10%;
    right: -15%;
    z-index: 2;
    border: 10px solid rgba(255, 255, 255, 0.9);
}

/* Círculo pequeno - Centro superior */
.circle-small {
    width: 200px;
    height: 200px;
    top: 0%;
    left: 22rem;
    transform: translateX(-50%);
    z-index: 3;
    background: linear-gradient(135deg, #FF6600, #FF8C42);
    border: 10px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-content {
    text-align: center;
    color: white;
}

.circle-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
    fill: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    animation: rotateGear 4s linear infinite;
}

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

.circle-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Responsividade */
@media (max-width: 1024px) {
    .personalized-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .personalized-image {
        order: -1;
        min-height: 400px;
    }
    
    .circle-large {
        width: 350px;
        height: 350px;
        left: -8%;
    }
    
    .circle-medium {
        width: 250px;
        height: 250px;
        right: -12%;
    }
    
    .circle-small {
        width: 200px;
        height: 200px;
        top: 0%;
        
    }
}

@media (max-width: 768px) {
    .personalized-image {
        min-height: 350px;
    }
    
    .btn-personalized {
        width: 100%;
        justify-content: center;
    }
    
    .circle-large {
        width: 280px;
        height: 280px;
        left: -5%;
    }
    
    .circle-medium {
        width: 200px;
        height: 200px;
        right: -8%;
        top: 10%;
    }
    
    .circle-small {
        width: 100px;
        height: 100px;
        top: 0%;
        left: 48%;
    }
    
    .circle-text {
        font-size: 10px;
    }
    
    .circle-icon {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   INSTAGRAM SECTION
======================================== */

.instagram-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FF6600;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.profile-info h3 {
    color: #333333;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.5px;
}

.profile-info p {
    color: #666666;
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    margin: 0;
    line-height: 1.5;
}

.btn-instagram {
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(221, 42, 123, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #00B4D8, #0077B6);
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        1px 1px 3px 0 #fffd,
        0 6px 15px rgba(0, 180, 216, 0.4),
        0 0 25px rgba(0, 180, 216, 0.3);
}

.btn-instagram svg {
    width: 20px;
    height: 20px;
}

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

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.instagram-post:hover img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-overlay svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* Responsividade */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 3rem 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .profile-pic {
        width: 60px;
        height: 60px;
    }
    
    .btn-instagram {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

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

/* ========================================
   TRANSPORTE SECTION
======================================== */

.transporte-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Formas Abstratas - Rotas de Mapa */
.transporte-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 300px;
    background: 
        linear-gradient(to bottom, rgba(255, 102, 0, 0.12) 1px, transparent 1px),
        linear-gradient(to right, rgba(255, 102, 0, 0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.8;
    transform: rotate(-5deg);
    pointer-events: none;
}

.transporte-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 350px;
    background: 
        linear-gradient(to bottom, rgba(0, 180, 216, 0.12) 1px, transparent 1px),
        linear-gradient(to right, rgba(0, 180, 216, 0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.8;
    transform: rotate(5deg);
    pointer-events: none;
}

/* SVG Rotas de Mapa */
.map-routes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.transporte-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
}

.transporte-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transporte-subtitle {
    display: inline-block;
    color: #FF6600;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.transporte-title {
    color: #333333;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 1.5rem 0;
}

.transporte-description {
    color: #666666;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.7;
    margin: 0;
}

.transporte-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.transporte-image {
    position: relative;
    text-align: center;
}

.transporte-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.transporte-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6600, #FF8C42);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.transporte-badge svg {
    width: 16px;
    height: 16px;
}

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

.transporte-features-left,
.transporte-features-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transporte-features-left {
    justify-content: flex-end;
}

.transporte-features-right {
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.feature-item:hover {
    background: #ffffff;
    border-left-color: #FF6600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(3px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6600, #FF8C42);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.feature-content h3 {
    color: #333333;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    letter-spacing: -0.3px;
}

.feature-content p {
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
    .transporte-content {
        gap: clamp(1.5rem, 3vw, 3rem);
    }
}

@media (max-width: 1024px) {
    .transporte-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .transporte-image {
        order: -1;
    }
    
    .transporte-badge {
        position: static;
        margin-top: 1rem;
        display: inline-flex;
    }
    
    .transporte-features-left,
    .transporte-features-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .transporte-section {
        padding: 3rem 0;
    }
    
    .transporte-header {
        margin-bottom: 3rem;
    }
    
    .transporte-content {
        gap: 2rem;
    }
    
    .transporte-features-left,
    .transporte-features-right {
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.2rem;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .transporte-image img {
        max-width: 300px;
    }
}

/* ========================================
   QUOTE CAROUSEL SECTION
======================================== */

.quote-carousel-section {
    padding: 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    height: 120px;
}

.quote-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.quote-strip {
    position: absolute;
    width: 100%;
    left: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Primeira faixa - laranja */
.quote-strip-1 {
    top: 15px;
    background: linear-gradient(135deg, #FF6600, #FF8C42);
    transform: none;
    z-index: 2;
}

/* Segunda faixa - azul */
.quote-strip-2 {
    top: 65px;
    background: linear-gradient(135deg, #00B4D8, #0077B6);
    transform: none;
    z-index: 1;
}

.quote-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: scrollQuote 30s linear infinite;
}

.quote-strip-2 .quote-content {
    animation: scrollQuoteReverse 30s linear infinite;
}

.quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    width: 28px;
    height: 28px;
    color: white;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animação de rolagem */
@keyframes scrollQuote {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

@keyframes scrollQuoteReverse {
    0% {
        transform: translateX(-33.33%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .quote-carousel-section {
        height: 90px;
    }
    
    .quote-strip {
        height: 40px;
    }
    
    .quote-strip-1 {
        top: 12px;
        transform: none;
    }
    
    .quote-strip-2 {
        top: 52px;
        transform: none;
    }
    
    .quote-content {
        gap: 1.5rem;
    }
    
    .quote-icon {
        width: 24px;
        height: 24px;
    }
    
    .quote-text {
        font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    }
}

@media (max-width: 480px) {
    .quote-carousel-section {
        height: 80px;
    }
    
    .quote-strip {
        height: 35px;
    }
    
    .quote-strip-1 {
        top: 10px;
        transform: none;
    }
    
    .quote-strip-2 {
        top: 45px;
        transform: none;
    }
    
    .quote-content {
        gap: 1rem;
    }
    
    .quote-icon {
        width: 20px;
        height: 20px;
    }
    
    .quote-text {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
    }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #FFFFFF;
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-subtitle {
    display: inline-block;
    color: #FF6600;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.testimonials-title {
    color: #333333;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 1.5rem 0;
}

.testimonials-description {
    color: #666666;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.7;
    margin: 0;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #FF6600;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #FFB800;
}

.testimonial-text {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
}

.author-location {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* TripAdvisor Button */
.tripadvisor-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.btn-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00A680, #00AF8C);
    color: #FFFFFF;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 166, 128, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-tripadvisor:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 128, 0.4);
    background: linear-gradient(135deg, #00AF8C, #00B896);
}

.btn-tripadvisor:active {
    transform: translateY(0);
}

.tripadvisor-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}

.tripadvisor-arrow {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-tripadvisor:hover .tripadvisor-arrow {
    transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-header {
        margin-bottom: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .tripadvisor-button-container {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .btn-tripadvisor {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .tripadvisor-icon {
        width: 28px;
        height: 28px;
    }
    
    .tripadvisor-arrow {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #f8f9fa;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-subtitle {
    display: inline-block;
    color: #FF6600;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.faq-title {
    color: #333333;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 1.5rem 0;
}

.faq-description {
    color: #666666;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.7;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    color: #333333;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #FF6600;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666666;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.7;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0 1.5rem 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6600;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cccccc;
    font-size: 0.95rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: #FF6600;
    flex-shrink: 0;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #FF6600;
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
}

.dev-credit {
    color: #FF6600;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dev-credit:hover {
    color: #FF8C42;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

/* ========================================
   WHATSAPP FIXED BUTTON
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   LANGUAGE TOGGLE BUTTON
======================================== */

.language-switcher {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.language-btn {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border: 4px solid #FF6B35;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
}

.language-btn:hover {
    background: #00B4D8;
    border-color: #00B4D8;
}

.language-btn .flag-icon {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .language-switcher {
        bottom: 90px;
        right: 20px;
    }
    
    .language-btn {
        width: 55px;
        height: 55px;
    }
    
    .language-btn .flag-icon {
        font-size: 14px;
    }
}

/* Google Translate Customization - Hide Default Elements */
#google_translate_element {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

.goog-te-balloon-frame {
    display: none !important;
}

.goog-te-spinner-pos {
    display: none !important;
}

/* Hide Google Translate dropdown completely when not needed */
.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

/* Custom styling for language switcher */
iframe.goog-te-menu-frame {
    display: none !important;
}

.skiptranslate {
    display: none !important;
}

/* Ensure Google Translate doesn't affect layout */
.goog-te-gadget {
    font-size: 0 !important;
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* Make sure the page doesn't jump when translation loads */
.goog-te-banner-frame {
    position: absolute !important;
    top: -9999px !important;
}


/* ========================================
   MOBILE OPTIMIZATION - GLOBAL
======================================== */

@media (max-width: 768px) {
    /* Remover animações de formas abstratas no mobile */
    .shape-circle-1,
    .shape-circle-2,
    .shape-wave,
    .shape-mountain,
    .shape-path,
    .about-section::before,
    .about-section::after,
    .shape-1,
    .shape-2,
    .shape-3,
    .p-shape-wave,
    .p-shape-circle-1,
    .p-shape-circle-2,
    .p-shape-mountain {
        animation: none !important;
        transform: none !important;
    }
    
    /* Alinhar todos os parágrafos à esquerda no mobile */
    p,
    .about-description,
    .personalized-description,
    .transporte-description,
    .testimonial-text,
    .faq-answer p,
    .faq-description,
    .testimonials-description,
    .destinations-subtitle,
    .hero-subtitle {
        text-align: left !important;
    }
    
    /* Global Mobile Spacing */
    section {
        padding: 3rem 0 !important;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 3rem 0 !important;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        padding: 0 1.5rem;
    }
    
    .widgets-container {
        order: 2;
    }
    
    .about-content {
        order: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-subtitle,
    .about-title {
        text-align: center;
    }
    
    .about-description {
        text-align: left;
    }
    
    .btn-about {
        margin: 0 auto;
        display: inline-block;
    }
    
    .about-image {
        order: 3;
        padding: 0;
    }
    
    .widgets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .widget {
        padding: 1.5rem 1rem;
    }
    
    .widget-number {
        font-size: 1.8rem;
    }
    
    .widget h3 {
        font-size: 0.85rem;
    }
    
    /* Hero Mobile Improvements */
    .hero {
        min-height: 90vh;
        padding-top: 70px !important;
    }
    
    .hero-container {
        padding: 2rem 1.5rem;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .hero-badge {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-cta {
        margin-bottom: -1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    /* Ticker Mobile */
    .ticker-section {
        padding: 2rem 0 !important;
    }
    
    /* Destinations Mobile */
    .destinations-section {
        padding: 3rem 0 !important;
    }
    
    .destinations-container {
        padding: 0 1.5rem;
    }
    
    .destinations-header {
        margin-bottom: 2rem;
        text-align: center;
        position: relative;
        padding-bottom: 5rem;
    }
    
    .slider-controls {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        right: auto;
        justify-content: center;
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }
    
    .slider-btn svg {
        width: 28px;
        height: 28px;
        stroke-width: 2.5;
    }
    
    .destinations-slider {
        gap: 1.5rem;
    }
    
    .destination-card {
        min-width: 100%;
    }
    
    .destination-name {
        font-size: 1.3rem;
    }
    
    .destination-places {
        font-size: 0.9rem;
    }
    
    /* Personalized Tours Mobile */
    .personalized-section {
        padding: 3rem 0 !important;
    }
    
    .personalized-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .personalized-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .personalized-title {
        margin-bottom: 1rem;
    }
    
    .personalized-description {
        margin-bottom: 1rem;
    }
    
    /* Grid simples com círculos perfeitos para mobile */
    .image-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        position: relative;
        height: auto;
        justify-items: center;
        padding: 1rem 0;
    }
    
    .circle-large,
    .circle-medium,
    .circle-small {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        border-radius: 50% !important;
        border: 5px solid #FFFFFF !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    .circle-large {
        width: 280px !important;
        height: 280px !important;
    }
    
    .circle-medium {
        width: 260px !important;
        height: 260px !important;
    }
    
    .circle-small {
        width: 240px !important;
        height: 240px !important;
        background: linear-gradient(135deg, #FF6600, #FF8C42);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .circle-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .circle-text {
        font-size: 12px !important;
    }
    
    /* Instagram Mobile */
    .instagram-section {
        padding: 3rem 0 !important;
    }
    
    .instagram-container {
        padding: 0 1.5rem;
    }
    
    .instagram-header {
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .instagram-profile {
        justify-content: flex-start;
        width: 100%;
    }
    
    .profile-info {
        text-align: left;
    }
    
    .btn-instagram {
        align-self: center;
        width: fit-content;
        margin: 0 auto;
    }
    
    .instagram-grid {
        gap: 1rem;
    }
    
    /* Transporte Mobile */
    .transporte-section {
        padding: 3rem 0 !important;
    }
    
    .transporte-container {
        padding: 0 1.5rem;
    }
    
    .transporte-header {
        margin-bottom: 2.5rem;
    }
    
    .transporte-content {
        gap: 2rem;
    }
    
    /* Quote Carousel Mobile */
    .quote-carousel-section {
        padding: 0 !important;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 3rem 0 !important;
    }
    
    .testimonials-container {
        padding: 0 1.5rem;
    }
    
    .testimonials-header {
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    /* FAQ Mobile */
    .faq-section {
        padding: 3rem 0 !important;
    }
    
    .faq-container {
        padding: 0 1.5rem;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-list {
        gap: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2.5rem 0 1.5rem 0 !important;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    /* Remover animações no mobile pequeno também */
    .shape-circle-1,
    .shape-circle-2,
    .shape-wave,
    .shape-mountain,
    .shape-path,
    .about-section::before,
    .about-section::after,
    .shape-1,
    .shape-2,
    .shape-3,
    .p-shape-wave,
    .p-shape-circle-1,
    .p-shape-circle-2,
    .p-shape-mountain,
    .circle-icon svg {
        animation: none !important;
        transform: none !important;
    }
    
    /* Extra Small Mobile - Refined Spacing */
    section {
        padding: 2.5rem 0 !important;
    }
    
    .hero {
        min-height: 85vh;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .hero-badge {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-top: 1.5rem;
        margin-bottom: 1.1rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .about-container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .widgets-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .widget {
        padding: 1.2rem;
    }
    
    .about-image img {
        max-width: 100%;
    }
    
    .destinations-container,
    .personalized-container,
    .instagram-container,
    .transporte-container,
    .testimonials-container,
    .faq-container,
    .footer-container {
        padding: 0 1rem;
    }
    
    .destinations-header {
        margin-bottom: 1.5rem;
        padding-bottom: 4.5rem;
    }
    
    .slider-btn {
        width: 55px;
        height: 55px;
    }
    
    .slider-btn svg {
        width: 26px;
        height: 26px;
    }
    
    .personalized-content,
    .instagram-header,
    .transporte-header,
    .testimonials-header,
    .faq-header {
        margin-bottom: 1.5rem;
    }
    
    .image-grid {
        gap: 0.8rem;
    }
    
    .circle-large {
        width: 240px !important;
        height: 240px !important;
    }
    
    .circle-medium {
        width: 220px !important;
        height: 220px !important;
    }
    
    .circle-small {
        width: 200px !important;
        height: 200px !important;
    }
    
    .circle-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .circle-text {
        font-size: 11px !important;
    }
    
    .testimonials-grid,
    .faq-list {
        gap: 1.2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   LANGUAGE SELECTOR FLAGS
======================================== */

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-flag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-size: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: transform 0.2s, opacity 0.2s;
}

.language-flag.active {
    opacity: 1;
    transform: scale(1.1);
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}


.language-selector-mobile {
    display: none;
}

@media (max-width: 768px) {
    .language-selector {
        display: none;
    }
    .language-selector-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-top: 1px solid #f0f0f0;
    }
}


