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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    /* Safari/iOS - Suporte para Dynamic Island */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Padronização de fontes */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #000000;
}

p {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


:root {
    --primary-blue: #0068d1;
    --primary-blue-hover: #0056b3;
    --primary-blue-light: rgba(0, 104, 209, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(218, 218, 218, 0.578);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 1px;
    background: linear-gradient(to right, var(--primary-blue), transparent);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 1px;
    background: linear-gradient(to left, var(--primary-blue), transparent);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo:active {
    transform: scale(0.98);
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Language Toggle in Nav - Hidden on Desktop */
.nav-language-toggle {
    display: none;
}

.language-btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid var(--primary-blue);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 auto;
}

.language-btn-nav:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

.language-btn-nav .flag-icon {
    border-radius: 3px;
}

.contact-btn {
    background: var(--primary-blue);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#language-toggle-mobile {
    display: none;
}

.language-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.2);
}

.flag-icon {
    display: inline-block;
    border-radius: 3px;
    object-fit: cover;
}

#current-lang {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.hero-section {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    padding-top: max(80px, env(safe-area-inset-top));
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(0, 104, 209, 0.6), rgba(0, 86, 179, 0.5));
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -5%;
    background: linear-gradient(135deg, rgba(0, 104, 209, 0.5), rgba(100, 170, 255, 0.4));
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 5%;
    background: linear-gradient(225deg, rgba(0, 86, 179, 0.6), rgba(0, 120, 255, 0.45));
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 15%;
    background: linear-gradient(315deg, rgba(0, 104, 209, 0.55), rgba(70, 140, 230, 0.4));
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    top: 30%;
    right: -10%;
    background: linear-gradient(180deg, rgba(0, 86, 179, 0.5), rgba(50, 130, 220, 0.45));
    animation-delay: -15s;
}

.shape-5 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 50%;
    background: linear-gradient(90deg, rgba(0, 104, 209, 0.6), rgba(80, 160, 250, 0.4));
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate3d(20px, -30px, 0) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translate3d(-20px, 20px, 0) rotate(-5deg) scale(0.95);
    }
    75% {
        transform: translate3d(30px, 10px, 0) rotate(3deg) scale(1.02);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 20px;
}

.content-left {
    text-align: left;
    max-width: 800px;
}

.subtitle {
    font-size: 14px;
    color: #ffffff;
    background: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 500;
    display: inline-block;
}

.title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000000;
}

.biography {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.btn-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    background: #f0f0f0;
    color: #000000;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.15),
                inset -4px -4px 8px rgba(255, 255, 255, 0.7);
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn:hover {
    background: #e8e8e8;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.2),
                inset -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.btn-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.btn:hover .btn-icon {
    background: #00d168;
    transform: rotate(45deg);
}

/* About Section */
.about-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.25rem;
    height: 40rem;
}

.about-image-large {
    grid-row: 1 / 3;
    overflow: hidden;
    border-radius: 1.25rem;
    height: 40rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.about-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-images-small {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 40rem;
}

.about-image-square {
    overflow: hidden;
    border-radius: 1.25rem;
    flex: 1;
}

.about-image-square:first-child {
    flex: 1.3;
}

.about-image-square:last-child {
    flex: 1;
}

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

.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    width: fit-content;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
                inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}

.about-subtitle svg {
    color: var(--primary-blue);
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
}

.about-title .highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666666;
    max-width: 600px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f0f0f0;
    padding: 2.5rem 2rem;
    border-radius: 2rem;
    margin-top: 2rem;
    box-shadow: inset 6px 6px 12px rgba(0, 0, 0, 0.15),
                inset -6px -6px 12px rgba(255, 255, 255, 0.8);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, 
                transparent, 
                rgba(0, 0, 0, 0.1) 20%, 
                rgba(0, 0, 0, 0.1) 80%, 
                transparent);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 500;
    line-height: 1.3;
}

.about-btn-container {
    margin-top: 2rem;
}

.about-section .divider-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
                transparent, 
                rgba(0, 104, 209, 0.3) 20%, 
                rgba(0, 104, 209, 0.5) 50%, 
                rgba(0, 104, 209, 0.3) 80%, 
                transparent);
    z-index: 10;
    overflow: visible;
}

.divider-animated {
    position: absolute;
    top: -45px;
    left: 0;
    transform: translate3d(-100px, 0, 0);
    animation: moveJeep 12s linear infinite;
    z-index: 100;
    will-change: transform, left;
}

.divider-animated svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Linhas de vento */
.wind-lines {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 100px;
    height: 30px;
    pointer-events: none;
}

.wind-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0, 104, 209, 0.4), transparent);
    border-radius: 2px;
    animation: windMove 0.8s ease-out infinite;
}

.wind-1 {
    width: 25px;
    top: 5px;
    left: 0;
    animation-delay: 0s;
}

.wind-2 {
    width: 35px;
    top: 15px;
    left: -5px;
    animation-delay: 0.2s;
}

.wind-3 {
    width: 20px;
    top: 25px;
    left: 5px;
    animation-delay: 0.4s;
}

.wheel {
    transform-box: fill-box;
    transform-origin: center center;
    animation: rotateWheel 0.5s linear infinite;
}

.wheel-front {
    animation: rotateWheel 0.5s linear infinite;
}

.wheel-back {
    animation: rotateWheel 0.5s linear infinite;
}

@keyframes moveJeep {
    0% {
        left: 0%;
        transform: translate3d(-100px, 0, 0);
    }
    100% {
        left: 100%;
        transform: translate3d(100px, 0, 0);
    }
}

@keyframes windMove {
    0% {
        opacity: 0;
        transform: translateX(0) scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: translateX(-20px) scaleX(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-40px) scaleX(0.5);
    }
}

@keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: left;
    margin-bottom: 3rem;
}

.services-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.services-subtitle svg {
    color: var(--primary-blue);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

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

.services-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
    text-align: right;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.2;
}

.services-title .highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.services-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.services-btn-container {
    display: flex;
    justify-content: flex-end;
}

.btn-services {
    background: #ffffff;
    color: #000000;
    padding: 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.4s ease;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.12),
        inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.btn-services span {
    padding: 1rem 2rem;
    transition: all 0.4s ease;
}

.btn-services .btn-icon {
    background: var(--primary-blue);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(74, 144, 226, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-services .btn-icon svg {
    transition: all 0.4s ease;
    color: #ffffff;
}

.btn-services:hover {
    transform: scale(1.05);
    box-shadow: 
        inset 5px 5px 12px rgba(0, 0, 0, 0.15),
        inset -5px -5px 12px rgba(255, 255, 255, 0.9),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-services:hover .btn-icon {
    background: #00d168;
    transform: rotate(45deg) scale(1.15);
    box-shadow: 
        0 6px 20px rgba(0, 209, 104, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-services:hover span {
    color: var(--primary-blue);
}

.btn-services:active {
    transform: scale(1.02);
}

/* Services Carousel */
.services-carousel {
    margin-top: 3rem;
}

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

.service-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
}

.service-image-link:focus {
    outline: none;
}

.service-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    display: block;
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(23, 23, 23, 1) 0%, rgba(23, 23, 23, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.service-content {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 3;
    width: 100%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.18) 85%, rgba(0, 0, 0, 0) 100%);
}

.service-content h3,
.service-content p {
    pointer-events: none;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.service-content p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.service-arrow-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

.service-arrow-btn svg {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow-btn {
    background: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.service-card:hover .service-arrow-btn svg {
    color: white;
    transform: translateX(3px);
}

/* Service Detail Page */
.service-detail-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.detail-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape-detail-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    right: -5%;
    background: linear-gradient(135deg, rgba(0, 104, 209, 0.4), rgba(100, 170, 255, 0.3));
    animation-delay: 0s;
}

.shape-detail-2 {
    width: 280px;
    height: 280px;
    bottom: 15%;
    left: -8%;
    background: linear-gradient(225deg, rgba(0, 86, 179, 0.45), rgba(0, 120, 255, 0.35));
    animation-delay: -5s;
}

.shape-detail-3 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    background: linear-gradient(315deg, rgba(0, 104, 209, 0.4), rgba(70, 140, 230, 0.3));
    animation-delay: -10s;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-detail-title {
    font-size: 3rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.tour-price-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666666;
    font-size: 1rem;
}

.price-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 104, 209, 0.3);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .tour-price-info {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .price-item {
        width: 100%;
        justify-content: center;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

.service-detail-image {
    width: 100%;
    height: 500px;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-text {
    margin-bottom: 3rem;
}

.service-detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-detail-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4rem 0 3rem;
    padding: 2rem 0;
}

.service-detail-btn .btn.btn-services {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 
        0 8px 30px rgba(0, 104, 209, 0.4),
        0 4px 15px rgba(0, 104, 209, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible;
}

.service-detail-btn .btn.btn-services::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-hover));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.service-detail-btn .btn.btn-services:hover::before {
    opacity: 0.6;
}

.service-detail-btn .btn.btn-services:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 104, 209, 0.5),
        0 6px 20px rgba(0, 104, 209, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-blue-hover) 0%, var(--primary-blue) 100%);
}

.service-detail-btn .btn.btn-services:active {
    transform: translateY(-1px) scale(1.02);
}

.service-detail-btn .btn.btn-services span {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-detail-btn .btn.btn-services .btn-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 2.5rem;
    height: 2.5rem;
    margin-left: 1rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-detail-btn .btn.btn-services .btn-icon svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
}

.service-detail-btn .btn.btn-services:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(0deg) scale(1.1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.detail-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 1.25rem;
    border-left: 4px solid var(--primary-blue);
}

.detail-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.detail-list li {
    font-size: 1.05rem;
    color: #666666;
    line-height: 2;
    padding-left: 2rem;
    position: relative;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials Detail Section */
.testimonials-detail-section {
    background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

/* Tour Gallery Section */
.tour-gallery-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #ffffff;
    padding: 2rem 1.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .tour-gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .tour-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-label {
        font-size: 1rem;
        padding: 1.5rem 1rem 0.75rem;
    }
}

/* Grid para página de detalhes */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.08),
        inset -3px -3px 8px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        inset 4px 4px 10px rgba(0, 0, 0, 0.1),
        inset -4px -4px 10px rgba(255, 255, 255, 0.9),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
}

.testimonial-author span {
    color: #ffd700;
    font-size: 1rem;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.08),
        inset -3px -3px 8px rgba(255, 255, 255, 0.8);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
}

.trust-badge svg {
    flex-shrink: 0;
}

.trust-badge-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
    opacity: 0.8;
}

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

.trust-badges.payment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
}

.service-detail-btn .trust-badges.payment-badges {
    margin-top: 1.5rem;
    padding: 1rem;
    gap: 1rem;
    background: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-detail-btn .trust-badge-img {
    height: 30px;
    opacity: 0.7;
}

.service-detail-btn .trust-badge-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.trust-badge div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Dynamic Pricing Section */
.dynamic-pricing-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.08),
        inset -3px -3px 8px rgba(255, 255, 255, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.05);
}

.dynamic-pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dynamic-pricing-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.dynamic-pricing-subtitle {
    font-size: 1rem;
    color: #666666;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    padding-left: 1.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    border: 2px solid rgba(0, 104, 209, 0.1);
    transition: all 0.3s ease;
    position: relative;
    gap: 1rem;
}

.pricing-row:hover {
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 104, 209, 0.1);
}

.pricing-row.highlighted {
    padding-left: 2rem;
    background: linear-gradient(135deg, rgba(0, 104, 209, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-color: var(--primary-blue);
    border-width: 2.5px;
    box-shadow: 0 4px 20px rgba(0, 104, 209, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transform: scale(1.02);
}

.pricing-row.highlighted:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 104, 209, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.pricing-row.highlighted::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%);
    border-radius: 1rem 0 0 1rem;
    box-shadow: 2px 0 8px rgba(0, 104, 209, 0.3);
}

.pricing-row.highlighted .pricing-people-label {
    color: var(--primary-blue);
    font-weight: 700;
}

.pricing-row.highlighted .pricing-price-value {
    color: var(--primary-blue);
    font-weight: 700;
}

.pricing-people-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    order: 1;
}

.pricing-people-label span {
    font-weight: 400;
    color: #666666;
}

.pricing-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    order: 3;
}

.pricing-unit-small {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666666;
}

.pricing-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #3b82f6 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    margin-left: auto;
    margin-right: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: visible;
    white-space: nowrap;
    order: 2;
}

.pricing-badge-small::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 4v5c0 4.5-3 8.5-7 9-4-0.5-7-4.5-7-9V7l7-4z'/%3E%3Cpath d='M9 12l2.2 2.2L15 10.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.pricing-badge-small::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0%, transparent 60%);
    pointer-events: none;
}

.dynamic-pricing-desc {
    text-align: center;
    font-size: 1rem;
    color: #666666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.dynamic-pricing-benefit {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.dynamic-pricing-note {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    line-height: 1.5;
}

.dynamic-pricing-note strong {
    color: #000000;
}

.pricing-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.pricing-consult-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.pricing-consult-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Info Box - Transfers Section */
.info-box {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.08),
        inset -3px -3px 8px rgba(255, 255, 255, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.transfers-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transfer-description {
    text-align: center;
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.transfer-search-container {
    position: relative;
    width: 100%;
}

.transfer-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 104, 209, 0.2);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.transfer-search-input:hover {
    border-color: var(--primary-blue);
    background: #ffffff;
}

.transfer-search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 104, 209, 0.1);
}

.transfer-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #666666;
    pointer-events: none;
}

.transfer-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: #ffffff;
    border: 2px solid var(--primary-blue);
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.transfer-dropdown::-webkit-scrollbar {
    width: 8px;
}

.transfer-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.transfer-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.transfer-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 104, 209, 0.1);
}

.transfer-option:last-child {
    border-bottom: none;
}

.transfer-option:hover {
    background: var(--primary-blue-light);
}

.transfer-option:active {
    background: rgba(0, 104, 209, 0.15);
}

.transfer-option-info {
    flex: 1;
}

.transfer-option-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.transfer-option-info p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.transfer-option-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-left: 1rem;
}

.transfer-whatsapp-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 1rem;
}

.transfer-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.transfer-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.trust-badge strong {
    font-size: 0.95rem;
    color: #000000;
    font-weight: 600;
}

.trust-badge span {
    font-size: 0.85rem;
    color: #666666;
}

/* Youth Travel Section */
.youth-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.youth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.youth-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.youth-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    width: fit-content;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}

.youth-badge svg {
    color: var(--primary-blue);
}

.youth-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.2;
}

.youth-title .highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.youth-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666666;
    max-width: 600px;
}

.youth-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.youth-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f8f8;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-blue);
}

.youth-feature-item:hover {
    background: #ffffff;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.youth-feature-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.youth-feature-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.youth-feature-item strong {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

.youth-feature-item span {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.4;
}

.youth-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.youth-map-bg {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    right: -15%;
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
}

.youth-map-bg svg {
    width: 100%;
    height: 100%;
}

.youth-video {
    width: 320px;
    height: 568px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: #000000;
    position: relative;
    z-index: 2;
}

.youth-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 3;
    background: #000000;
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.video-cover:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-play-btn svg {
    display: block;
}

/* Instagram Section */
.instagram-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
}

.instagram-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}

.instagram-badge svg {
    color: var(--primary-blue);
}

.instagram-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000 !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.instagram-title .highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.instagram-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666666;
}

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

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

.instagram-post {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 100%;
}

.instagram-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.instagram-post-header {
    padding: 0.75rem 1rem;
    background: white;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #efefef;
    min-height: 60px;
    flex-shrink: 0;
}

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

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
    flex-shrink: 0;
}

.profile-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
}

.instagram-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.instagram-stats {
    display: flex;
    gap: 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    align-items: center;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-stats svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.instagram-cta {
    display: flex;
    justify-content: center;
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
}

.btn-instagram .btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.btn-instagram .btn-icon svg {
    stroke: #ffffff;
}

.btn-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #000000 !important;
}

.btn-instagram:hover span {
    color: #000000 !important;
}

.btn-instagram:hover .btn-icon {
    background: linear-gradient(135deg, #405de6 0%, #5851db 14%, #833ab4 28%, #c13584 42%, #e1306c 56%, #fd1d1d 70%, #f56040 84%, #fcb045 100%);
}

.btn-instagram:hover .btn-icon svg {
    stroke: #ffffff;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 100px 0;
}

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

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05),
                inset -2px -2px 5px rgba(255, 255, 255, 1);
}

.testimonials-badge svg {
    color: var(--primary-blue);
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonials-title .highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

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

.testimonials-carousel {
    overflow: visible;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Animação de fade para troca de testemunhos */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        overflow: hidden;
    }
    
    .testimonials-track {
        display: flex;
        gap: 1.25rem;
        animation: scroll 60s linear infinite;
        width: fit-content;
        will-change: transform;
    }
    
    .testimonials-track:hover {
        animation-play-state: paused;
    }
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-280px * 9 - 11.25rem), 0, 0);
    }
}

.testimonial-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1),
                -8px -8px 16px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    /* No mobile mostra todos para o carrossel */
    .testimonial-card:nth-child(n+7) {
        display: block;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        padding: 1.25rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.12),
                -12px -12px 24px rgba(255, 255, 255, 1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1),
                -4px -4px 8px rgba(255, 255, 255, 1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.25rem 0;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 100px 0;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05),
                inset -2px -2px 5px rgba(255, 255, 255, 1);
}

.faq-badge svg {
    color: var(--primary-blue);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.faq-title .highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

.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: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #0d1b2a 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

/* Formas abstratas no footer */
.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    pointer-events: none;
}

.footer-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    top: -200px;
    left: -100px;
    animation: floatSlow 25s ease-in-out infinite;
}

.footer-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #4a9eff, transparent);
    top: 50%;
    right: -80px;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

.footer-shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #0056b3, transparent);
    bottom: -100px;
    left: 20%;
    animation: floatSlow 30s ease-in-out infinite;
}

.footer-shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    bottom: 20%;
    right: 15%;
    animation: floatSlow 22s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

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

.footer-description {
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links,
.footer-contact,
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #c5c5c5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.footer-hours li {
    color: #b8b8b8;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}

.footer-hours span {
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 104, 209, 0.2);
    position: relative;
    z-index: 1;
}

.footer-dev {
    font-size: 1rem;
    color: #b8b8b8;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dev-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.dev-link strong {
    font-weight: 700;
}

.dev-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.dev-link:hover {
    color: #ffffff;
}

.dev-link:hover svg {
    opacity: 1;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 104, 209, 0.15);
    border: 1px solid rgba(0, 104, 209, 0.3);
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 104, 209, 0.4);
}

/* Modal de Reserva */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.booking-modal-content {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.booking-modal-close:hover {
    background: var(--primary-blue);
    transform: rotate(90deg);
}

.booking-modal-close svg {
    color: #666;
}

.booking-modal-close:hover svg {
    color: #ffffff;
}

.booking-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.booking-modal-header h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.booking-modal-header p {
    color: #666;
    font-size: 1rem;
}

.booking-iframe-container {
    width: 100%;
    height: calc(90vh - 120px);
    overflow: hidden;
}

.booking-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .booking-modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .booking-modal-header h3 {
        font-size: 1.4rem;
    }
    
    .booking-modal-header p {
        font-size: 0.9rem;
    }
    
    .booking-iframe-container {
        height: calc(95vh - 100px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav {
        position: relative;
    }
    
    .logo {
        height: 50px;
    }
    
    /* Mostrar Hamburger no Mobile */
    .hamburger {
        display: flex;
    }
    
    /* Esconder menu desktop no mobile */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: var(--primary-blue-light);
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Mostrar botão de idioma dentro do menu no mobile */
    .nav-language-toggle {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .language-btn-nav {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
    }
    
    /* Esconder botões de idioma desktop e mobile fixo */
    #language-toggle,
    #language-toggle-mobile {
        display: none;
    }
    
    /* Prevenir scroll quando menu aberto */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Adicionar espaço para o header fixo não sobrepor conteúdo */
    body {
        padding-top: 80px;
    }
    
    .hero-section {
        height: 100vh;
        background-attachment: scroll;
        min-height: calc(100vh - 80px);
    }
    
    .content-left {
        text-align: center;
        margin: 0 auto;
    }
    
    .subtitle {
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }
    
    .biography {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    .btn-container {
        justify-content: center;
    }
    
    .title {
        font-size: 2.5rem;
        text-align: left;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .hero-image {
        height: 400px;
        margin-top: -7em;
    }
    
    .content-right {
        margin-top: 0;
    }
    
    /* Formas adaptadas para mobile */
    .shape-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        left: -10%;
    }
    
    .shape-2 {
        width: 180px;
        height: 180px;
        top: 70%;
        right: -5%;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
        bottom: 15%;
        left: 5%;
    }
    
    .shape-4 {
        width: 220px;
        height: 220px;
        top: 35%;
        right: -15%;
    }
    
    .shape-5 {
        width: 120px;
        height: 120px;
        top: 3%;
        left: 60%;
    }
    
    /* About Section - Mobile */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .about-left {
        order: 2;
    }
    
    .about-right {
        order: 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        height: 25rem;
        gap: 1rem;
    }
    
    .about-image-large {
        height: 25rem;
    }
    
    .about-images-small {
        height: 25rem;
        gap: 1rem;
    }
    
    .about-right {
        gap: 1.5rem;
    }
    
    .about-subtitle {
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .about-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 2rem 1.5rem;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
    }
    
    .about-btn-container {
        display: flex;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-header {
        text-align: center;
    }
    
    .services-subtitle {
        margin: 0 auto;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-left {
        text-align: center;
    }
    
    .services-right {
        align-items: center;
        text-align: center;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .services-btn-container {
        justify-content: center;
    }
    
    .carousel-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .service-card {
        height: 350px;
    }
    
    .service-content {
        padding: 1.5rem 1.25rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    /* Service Detail Page Mobile */
    .service-detail-hero {
        padding: 40px 0 60px;
        margin-top: 0;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .service-detail-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .detail-subtitle {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .detail-list li {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .shape-detail-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-detail-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-detail-3 {
        width: 120px;
        height: 120px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .detail-section {
        padding: 1.5rem;
    }
    
    .detail-subtitle {
        font-size: 1.4rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .trust-badges.payment-badges {
        gap: 1rem;
        padding: 1rem;
    }
    
    .trust-badge-img {
        height: 40px;
    }
    
    .service-detail-btn .trust-badge-img {
        height: 25px;
    }
    
    .service-detail-btn .trust-badges.payment-badges {
        gap: 0.75rem;
        padding: 0.75rem;
        margin-top: 1rem;
    }
    
    .trust-badge {
        padding: 0.75rem;
    }
    
    /* Dynamic Pricing Mobile */
    .dynamic-pricing-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .dynamic-pricing-title {
        font-size: 1.5rem;
    }
    
    .dynamic-pricing-subtitle {
        font-size: 0.9rem;
    }
    
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .pricing-row.highlighted::before {
        width: 3px;
    }
    
    .pricing-badge-small {
        margin-left: 0;
        margin-top: 0.5rem;
        margin-right: 0;
        align-self: flex-start;
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
        order: 2;
    }
    
    .pricing-price-value {
        order: 3;
        margin-top: 0.5rem;
    }
    
    .pricing-badge-small::before {
        font-size: 0.6rem;
    }
    
    .pricing-price-value {
        font-size: 1.3rem;
    }
    
    .pricing-consult-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Transfers Mobile */
    .info-box {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    /* Service Detail Button Mobile */
    .service-detail-btn {
        margin: 3rem 0 2rem;
        padding: 1.5rem 0;
    }
    
    .service-detail-btn .btn.btn-services {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .service-detail-btn .btn.btn-services span {
        font-size: 1.1rem;
    }
    
    .service-detail-btn .btn.btn-services .btn-icon {
        width: 2rem;
        height: 2rem;
        margin-left: 0.75rem;
    }
    
    .service-detail-btn .btn.btn-services .btn-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .info-box h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .transfer-description {
        font-size: 0.9rem;
    }
    
    .transfer-search-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .transfer-search-icon {
        width: 18px;
        height: 18px;
        left: 0.875rem;
    }
    
    .transfer-option {
        padding: 1rem;
    }
    
    .transfer-option-info h4 {
        font-size: 1rem;
    }
    
    .transfer-option-info p {
        font-size: 0.85rem;
    }
    
    .transfer-option-icon {
        width: 20px;
        height: 20px;
        margin-left: 0.75rem;
    }
    
    .transfer-whatsapp-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Youth Section Mobile */
    .youth-section {
        padding: 3rem 0;
    }
    
    .youth-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .youth-badge {
        margin: 0 auto;
    }
    
    .youth-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .youth-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .youth-features {
        gap: 0.75rem;
    }
    
    .youth-feature-item {
        padding: 1rem;
    }
    
    .youth-feature-item strong {
        font-size: 0.95rem;
    }
    
    .youth-feature-item span {
        font-size: 0.85rem;
    }
    
    .youth-btn-container {
        display: flex;
        justify-content: center;
    }
    
    .youth-video {
        width: 280px;
        height: 500px;
    }
    
    .youth-map-bg {
        opacity: 0.5;
    }
    
    /* Instagram Section Mobile */
    .instagram-section {
        padding: 3rem 0;
    }
    
    .instagram-header {
        margin-bottom: 2.5rem;
    }
    
    .instagram-title {
        font-size: 2rem;
    }
    
    .instagram-description {
        font-size: 1rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .instagram-post {
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }
    
    .instagram-image-wrapper {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .post-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }
    
    .instagram-post-header {
        padding: 0.6rem 0.8rem;
    }
    
    .profile-pic {
        width: 35px;
        height: 35px;
    }
    
    .profile-name {
        font-size: 0.85rem;
    }
    
    /* Testimonials Section - Mobile */
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-header {
        margin-bottom: 2rem;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonials-description {
        font-size: 0.9rem;
    }
    
    @keyframes scroll {
        0% {
            transform: translate3d(0, 0, 0);
        }
        100% {
            transform: translate3d(calc(-280px * 9 - 11.25rem), 0, 0);
        }
    }
    
    .testimonial-header {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-name {
        font-size: 0.9rem;
    }
    
    .testimonial-location {
        font-size: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-date {
        font-size: 0.75rem;
    }
    
    .testimonial-rating {
        width: 100%;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
    
    .instagram-stats {
        font-size: 0.95rem;
        gap: 1.5rem;
    }
    
    /* FAQ Section - Mobile */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-header {
        margin-bottom: 2.5rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 1rem;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-hours li {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-dev {
        order: 2;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dev-link {
        font-size: 1rem;
    }
    
    .footer-social {
        order: 1;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .hero-content {
        gap: 5px;
    }
    
    /* Formas ainda menores para celulares pequenos */
    .shape-1 {
        width: 150px;
        height: 150px;
        top: 3%;
        left: -15%;
    }
    
    .shape-2 {
        width: 130px;
        height: 130px;
        top: 75%;
        right: -10%;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        left: 0%;
    }
    
    .shape-4 {
        width: 160px;
        height: 160px;
        top: 40%;
        right: -20%;
    }
    
    .shape-5 {
        width: 90px;
        height: 90px;
        top: 2%;
        left: 65%;
    }
    
    /* About Section - Small Mobile */
    .about-section {
        padding: 2rem 0;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-grid {
        height: 20rem;
        gap: 0.75rem;
        grid-template-columns: 1fr 1fr;
    }
    
    .about-image-large {
        height: 20rem;
    }
    
    .about-images-small {
        height: 20rem;
        gap: 0.75rem;
    }
    
    .about-subtitle {
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .about-text {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item:not(:last-child)::after {
        width: 80%;
        height: 1px;
        right: auto;
        left: 10%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to right, 
                    transparent, 
                    rgba(0, 0, 0, 0.1) 20%, 
                    rgba(0, 0, 0, 0.1) 80%, 
                    transparent);
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .about-btn-container {
        margin-top: 1.5rem;
    }
}
