* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2b4a;
    --secondary-color: #25D366;
    --accent-color: #c9a961;
    --gold: #c9a961;
    --gold-light: #d4b574;
    --gold-dark: #a88f4e;
    --navy: #1a2b4a;
    --navy-dark: #0f1a2e;
    --navy-light: #2d4a7c;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f5f7fa;
    --gray-200: #e8ecef;
    --gray-300: #d1d8dd;
    --gray-600: #6c757d;
    --gradient-1: linear-gradient(135deg, #1a2b4a 0%, #2d4a7c 100%);
    --gradient-2: linear-gradient(135deg, #c9a961 0%, #d4b574 100%);
    --gradient-3: linear-gradient(135deg, #1a2b4a 0%, #c9a961 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    overflow-x: hidden;
    max-width: 100vw;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(26, 43, 74, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(26, 43, 74, 0.12);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--gold);
    padding: 3px;
    background: white;
    box-shadow: 0 2px 12px rgba(201, 169, 97, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.3px;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.footer-logo .logo-name {
    color: var(--gold);
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--navy);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gold);
    color: white;
    padding: 11px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 12px rgba(201, 169, 97, 0.25);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.75) 0%, rgba(15, 26, 46, 0.65) 50%, rgba(26, 43, 74, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    letter-spacing: -0.5px;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 400;
    text-align: center;
    opacity: 0.98;
    letter-spacing: 0.2px;
}

.hero .support-text {
    font-size: 1.15rem;
    margin-bottom: 45px;
    opacity: 0.92;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: white;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-light {
    background: white;
    color: var(--navy);
    padding: 17px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25);
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-light:hover::before {
    width: 300px;
    height: 300px;
}

.btn-light:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(201, 169, 97, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(201, 169, 97, 0.35);
    }
    50% {
        box-shadow: 0 8px 32px rgba(201, 169, 97, 0.6);
        transform: scale(1.02);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    opacity: 0.85;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* STATS SECTION */
.stats-section {
    background: var(--gradient-1);
    padding: 80px 20px;
    color: white;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px;
    position: relative;
    z-index: 1;
}

.stats-grid::-webkit-scrollbar {
    display: none;
}

.stat-item {
    text-align: center;
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: center;
    position: relative;
}

.stat-item i {
    font-size: 2.8rem;
    margin-bottom: 18px;
    opacity: 0.85;
    color: var(--gold);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 1.05rem;
    opacity: 0.88;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(201, 169, 97, 0.25);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

section h2 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

/* IMÓVEIS SECTION */
.imoveis {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-100) 100%);
    position: relative;
}

.imoveis-showcase {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px;
    width: 100%;
}

@media (max-width: 968px) {
    .imoveis-showcase {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
    }
}

.imoveis-showcase::-webkit-scrollbar {
    display: none;
}

.showcase-item {
    position: relative;
    width: 480px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 968px) {
    .showcase-item {
        scroll-snap-align: center;
        min-width: 350px;
        width: 350px;
    }
}

@media (max-width: 480px) {
    .showcase-item {
        min-width: 300px;
        width: 300px;
        height: 280px;
    }
}

.showcase-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(26, 43, 74, 0.85) 0%, rgba(26, 43, 74, 0.3) 60%, transparent 100%);
    pointer-events: none;
}

.showcase-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.3px;
}

.showcase-label i {
    font-size: 1.6rem;
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

/* GALERIA DE IMÓVEIS */
.imoveis-gallery {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 60px;
    justify-content: center;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px;
}

@media (max-width: 968px) {
    .imoveis-gallery {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
    }
}

.imoveis-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    width: 360px;
    height: 290px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 968px) {
    .gallery-item {
        scroll-snap-align: center;
        min-width: 280px;
        width: 280px;
    }
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 43, 74, 0.95) 0%, rgba(26, 43, 74, 0.6) 60%, transparent 100%);
    padding: 24px 18px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

/* SHOWCASE ITEMS */
.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.benefits-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .benefits-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 5px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .benefits-grid::-webkit-scrollbar {
        display: none;
    }
}

.benefit-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    width: 300px;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
}

@media (max-width: 968px) {
    .benefit-card {
        scroll-snap-align: center;
        min-width: 280px;
    }
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 24px 24px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.4;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.35);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.benefit-card p {
    display: none;
}

.benefit-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.08);
    line-height: 1;
}

/* VEÍCULOS SECTION */
.veiculos {
    padding: 140px 20px;
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.veiculos-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.veiculo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.veiculo-slide.active {
    opacity: 1;
}

.veiculos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.82) 0%, rgba(15, 26, 46, 0.75) 100%);
    z-index: 1;
}

.veiculos-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.veiculos-info h2 {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.veiculos-info .section-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    margin-bottom: 45px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.veiculos-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefit-item-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item-inline:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.benefit-item-inline i {
    font-size: 1.6rem;
    color: var(--gold);
}

.benefit-item-inline span {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.indicator.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

/* MAQUINÁRIOS SECTION */
.maquinarios {
    padding: 100px 20px;
    background: var(--light);
    overflow: visible;
}

.maquinarios-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

.carousel-container {
    overflow: visible;
    padding: 20px 0;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: none;
    overflow: visible;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px 30px;
    will-change: transform;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.maquinario-item {
    min-width: 320px;
    background: white;
    padding: 30px 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    scroll-snap-align: center;
    overflow: visible;
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.maquinario-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: none;
}

.maquinario-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.maquinario-image i {
    font-size: 3rem;
    color: white;
}

.maquinario-image-real {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maquinario-image-real img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    padding: 10px;
}

.maquinario-item:hover .maquinario-image-real img {
    transform: scale(1.05);
}

.maquinario-item h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.maquinario-item p {
    display: none;
}

.btn-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 15px;
    color: var(--gold-light);
}

.carousel-btn {
    display: none;
}

/* DIFERENCIAIS SECTION */
.diferenciais {
    padding: 120px 20px;
    background: var(--gradient-1);
    color: white;
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.diferenciais::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.diferenciais h2 {
    color: white;
}

.diferenciais-grid {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .diferenciais-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}

.diferenciais-grid::-webkit-scrollbar {
    display: none;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 38px 28px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 270px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .diferencial-card {
        scroll-snap-align: center;
        min-width: 220px;
    }
}

.diferencial-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-12px);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 97, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(201, 169, 97, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(201, 169, 97, 0.35);
    border-color: var(--gold);
}

.diferencial-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.diferencial-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.diferencial-card p {
    display: none;
}

/* CTA FINAL */
.cta-final {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a2b4a 0%, #0f1a2e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(201,169,97,0.05)"/></svg>');
    opacity: 0.4;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-final h2 {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 45px;
    opacity: 0.92;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    padding: 16px 24px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.97);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: var(--navy);
    font-weight: 400;
}

.cta-form textarea {
    resize: vertical;
    min-height: 80px;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    background: white;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--gold);
    color: white;
    padding: 19px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(201, 169, 97, 0.45);
}

.cta-alternative {
    margin: 30px 0 20px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.btn-whatsapp-large {
    background: var(--secondary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background: #20ba5a;
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--navy);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 80px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 108px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.35);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(201, 169, 97, 0.45);
}

/* FOOTER */
footer {
    background: linear-gradient(180deg, #0f1a2e 0%, #0a0a0a 100%);
    color: white;
    padding: 80px 20px 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.3) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-section i {
    margin-right: 10px;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.dev-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
}

.dev-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.dev-link i {
    font-size: 1.1rem;
    color: var(--gold);
}

/* IMAGE MODAL */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: block;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 45px;
    color: white;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
    background: rgba(201, 169, 97, 0.2);
}

.modal-caption {
    margin: 25px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    font-size: 1.3rem;
    padding: 12px 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .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(8px, -8px);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .imoveis-showcase {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .showcase-item {
        width: 100%;
        max-width: 400px;
        min-width: auto;
    }

    .imoveis-gallery {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .gallery-item {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        scroll-snap-align: none;
    }

    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(15, 76, 129, 0.9), rgba(15, 76, 129, 0.3));
    }

    .benefits-grid {
        flex-direction: column;
        align-items: center;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .benefit-card {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        scroll-snap-align: none;
    }

    .veiculos-images {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: column;
        overflow-x: visible;
        margin-bottom: 30px;
        padding: 10px;
        align-items: center;
    }

    .veiculo-img {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    .veiculos {
        padding: 80px 20px;
        min-height: 500px;
    }

    .veiculos-benefits {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .benefit-item-inline {
        justify-content: center;
        width: 100%;
    }

    .veiculos-content {
        grid-template-columns: 1fr;
    }

    .veiculos-info h2 {
        font-size: 2rem;
    }

    .benefit-item-inline {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .benefit-item-inline i {
        font-size: 1.2rem;
    }

    .benefit-item-inline span {
        font-size: 0.9rem;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .stat-item {
        width: 100%;
        min-width: auto;
        scroll-snap-align: none;
    }

    .diferenciais-grid {
        flex-direction: column;
        align-items: center;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .diferencial-card {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        scroll-snap-align: none;
    }

    .carousel-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
        letter-spacing: -0.3px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.15rem;
    }

    .hero .support-text {
        font-size: 1rem;
    }

    .section-description {
        font-size: 1.05rem;
    }

    .cta-final h2 {
        font-size: 2.5rem;
    }

    .veiculos-info h2,
    .veiculos-pesados h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .benefits-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 5px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .benefits-grid::-webkit-scrollbar {
        display: none;
    }

    .benefit-card {
        min-width: 250px;
        scroll-snap-align: center;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        min-width: 150px;
    }

    .imoveis-gallery {
        flex-wrap: nowrap;
    }

    .diferenciais-grid {
        flex-wrap: nowrap;
    }

    .diferencial-card {
        min-width: 200px;
    }

    .veiculos-images {
        flex-direction: column;
    }

    .veiculo-img {
        width: 100%;
        min-width: auto;
    }
}

/* VEÍCULOS PESADOS SECTION */
.veiculos-pesados {
    padding: 140px 20px;
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.veiculos-pesados-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.pesado-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.pesado-slide.active {
    opacity: 1;
}

.veiculos-pesados-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.85) 0%, rgba(15, 26, 46, 0.78) 100%);
    z-index: 1;
}

.veiculos-pesados-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.veiculos-pesados h2 {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.veiculos-pesados .section-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.veiculos-pesados-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 50px auto;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .veiculos-pesados-grid {
        flex-direction: column;
        align-items: center;
    }
}

.veiculo-pesado-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 38px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300px;
    flex-shrink: 0;
}

.veiculo-pesado-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-12px);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.veiculo-pesado-icon {
    width: 90px;
    height: 90px;
    background: rgba(201, 169, 97, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid rgba(201, 169, 97, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.veiculo-pesado-card:hover .veiculo-pesado-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(201, 169, 97, 0.35);
    border-color: var(--gold);
}

.veiculo-pesado-icon i {
    font-size: 2.8rem;
    color: var(--gold);
}

.veiculo-pesado-card h3 {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.veiculo-pesado-card p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

.veiculos-pesados-benefits {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 40px auto;
}

@media (max-width: 968px) {
    .veiculos-pesados-benefits {
        flex-direction: column;
        align-items: center;
    }
}

.benefit-pesado {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-pesado:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.benefit-pesado i {
    font-size: 1.6rem;
    color: var(--gold);
}

.benefit-pesado span {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
}

.slider-indicators-pesados {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator-pesado {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-pesado:hover {
    background: rgba(255, 255, 255, 0.7);
}

.indicator-pesado.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}


/* SEPARADOR DE SEÇÕES */
.section-separator {
    height: 100px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
}

.section-separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(201,169,97,0.05)"/></svg>');
    opacity: 0.3;
}

@media (max-width: 768px) {
    .section-separator {
        height: 60px;
    }
}


/* AVALIAÇÕES GOOGLE SECTION */
.avaliacoes-google {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--gray-100) 0%, #ffffff 100%);
}

.avaliacoes-content {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

.google-rating {
    text-align: center;
    padding: 48px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-rating:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.rating-stars {
    font-size: 2.8rem;
    color: #fbbc04;
    margin-bottom: 18px;
}

.rating-stars i {
    margin: 0 4px;
    filter: drop-shadow(0 2px 4px rgba(251, 188, 4, 0.3));
}

.rating-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.rating-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 400;
}

.avaliacoes-cta {
    text-align: center;
    padding: 48px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.avaliacoes-cta:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.avaliacoes-cta p {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.6;
}

.btn-google {
    background: #4285f4;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.btn-google:hover {
    background: #3367d6;
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(66, 133, 244, 0.4);
}

.btn-google i {
    font-size: 1.3rem;
}

.google-embed {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.google-embed iframe {
    display: block;
}

@media (max-width: 768px) {
    .avaliacoes-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .google-rating,
    .avaliacoes-cta {
        width: 100%;
        max-width: 400px;
    }
    
    .google-embed iframe {
        height: 300px;
    }
}


/* LANGUAGE SELECTOR */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
}

.lang-btn:hover {
    background: white;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.active ~ .lang-btn i,
.lang-btn:hover i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    width: 100%;
    border: none;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: var(--navy);
    position: relative;
}

.lang-option:hover {
    background: var(--gray-100);
}

.lang-option.active {
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold-dark);
    font-weight: 600;
}

.lang-option .lang-name {
    flex: 1;
    text-align: left;
}

.lang-option i {
    color: var(--gold);
    font-size: 0.9rem;
}

.lang-option:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

@media (max-width: 968px) {
    .language-selector {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    
    .lang-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
        width: 100%;
    }
}
