/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5A;
    --secondary-color: #1A1A1A;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #0A0A0A;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-2: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --gradient-3: linear-gradient(135deg, #F093FB 0%, #F5576C 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 64px rgba(0, 0, 0, 0.24);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    min-height: auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    background: transparent;
}

.logo-img {
    height: 150px;
    width: 150px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: transparent !important;
    /* Filtro para converter vermelho em laranja (#FF6B35) */
    filter: hue-rotate(-15deg) saturate(1.3) brightness(1.1);
    /* Garantir que a transparência seja preservada */
    mix-blend-mode: normal;
    /* Remover qualquer padrão de fundo */
    background-image: none !important;
    /* Garantir renderização correta da transparência */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: -15px 0;
    /* Garantir que ambas as imagens tenham exatamente o mesmo tamanho */
    display: block;
    flex-shrink: 0;
}

.logo-img.hidden {
    display: none;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.language-selector {
    position: relative;
    margin-left: 16px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.navbar.scrolled .lang-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

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

.language-selector.active .lang-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lang-option:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-option:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.lang-option:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.btn-contact {
    background: var(--gradient-1);
    color: var(--text-white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: #0A0A0A;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A0F2E 50%, #0A0A0A 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

/* Stars Layer */
.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 55% 20%, white, transparent),
        radial-gradient(2px 2px at 10% 50%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: stars 60s linear infinite;
    opacity: 0.8;
}

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

/* Nebulas */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: nebulaFloat 25s infinite ease-in-out;
}

.nebula-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.2) 50%, transparent 100%);
    top: -300px;
    right: -300px;
    animation-delay: 0s;
}

.nebula-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.3) 0%, rgba(245, 87, 108, 0.2) 50%, transparent 100%);
    bottom: -250px;
    left: -250px;
    animation-delay: 8s;
}

@keyframes nebulaFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.5;
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-2);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Slogan Vertical */
.hero-slogan {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slogan-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.slogan-word {
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.slogan-word:nth-child(1) {
    animation: fadeInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
}

.slogan-word:nth-child(2) {
    animation: fadeInLeft 0.8s ease 0.4s forwards;
    opacity: 0;
}

.slogan-word:nth-child(3) {
    animation: fadeInLeft 0.8s ease 0.6s forwards;
    opacity: 0;
}

.slogan-word:hover {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    transform: translateX(-5px);
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeInRight 1s ease 0.8s forwards;
    opacity: 0;
}

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

.hero-text-block {
    margin-bottom: 48px;
}

.hero-subtitle-text {
    font-size: clamp(14px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: left;
}

.hero-description {
    font-size: clamp(20px, 2.5vw, 28px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-align: left;
    margin-bottom: 32px;
}

.hero-question {
    font-size: clamp(22px, 3vw, 32px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 32px;
    text-align: left;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

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

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

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--text-white);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-white);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 24px;
    border-radius: 20px;
    transition: all 0.4s ease;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 32px auto 24px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

.process-cta {
    text-align: center;
    margin-top: 64px;
}

.services-cta {
    text-align: center;
    margin-top: 64px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
    margin-top: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number.stat-symbol {
    animation: symbolGrow 1.5s ease-out forwards;
    opacity: 0;
    transform: scale(0);
}

@keyframes symbolGrow {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

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

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 16px;
}

/* WhatsApp CTA Compact */
.whatsapp-cta-compact {
    margin-top: 24px;
}

.btn-whatsapp-compact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--text-white);
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    width: 100%;
    justify-content: center;
}

.btn-whatsapp-compact:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

/* Contact Locations Section */
.contact-locations {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
}

.locations-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: center;
}

.locations-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}

.map-wrapper {
    width: 100%;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    overflow: hidden;
}

.world-map-svg {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.1));
}

.world-map-svg path {
    stroke: var(--bg-white);
    stroke-width: 0.5;
    transition: all 0.3s ease;
    cursor: default;
}

.world-map-svg path.country-highlight {
    fill: var(--primary-color);
    cursor: pointer;
    opacity: 0.9;
}

.world-map-svg path.country-highlight:hover {
    fill: var(--primary-light);
    opacity: 1;
    stroke-width: 1;
}

.world-map-svg path.country-default {
    fill: #cbd5e1;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: var(--primary-color);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
    display: inline-block;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 24px 0 24px 0;
    color: var(--text-white);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 180px;
    width: 180px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto 16px auto;
    opacity: 0.9;
    background: transparent !important;
    /* Filtro para converter vermelho em laranja (#FF6B35) */
    filter: hue-rotate(-15deg) saturate(1.3) brightness(1.1);
    /* Garantir que a transparência seja preservada */
    mix-blend-mode: normal;
    /* Remover qualquer padrão de fundo */
    background-image: none !important;
    image-rendering: auto;
    /* Garantir tamanho consistente */
    display: block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-slogan {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        justify-content: center;
    }

    .slogan-text {
        flex-direction: row;
        gap: 16px;
        font-size: clamp(20px, 4vw, 32px);
    }

    .slogan-word {
        display: inline;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-description {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 1000;
    }

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

    .nav-menu a {
        font-size: 18px;
        color: var(--text-white);
    }

    .language-selector {
        margin-left: 0;
        margin-top: 16px;
    }

    .lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        display: none;
        flex-direction: column;
        gap: 8px;
    }

    .language-selector.active .lang-dropdown {
        display: flex;
    }

    .lang-option {
        padding: 10px 16px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        color: var(--text-white);
    }

    .lang-option:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--primary-color);
    }

    .hero-layout {
        gap: 40px;
        padding: 20px 0;
    }

    .slogan-text {
        flex-direction: column;
        gap: 12px;
        font-size: 24px;
    }

    .hero-subtitle-text {
        text-align: center;
    }

    .hero-question {
        text-align: center;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
        max-width: 100%;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .process-step {
        padding: 60px 24px 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-locations {
        padding: 32px 24px;
    }

    .world-map-svg {
        min-height: 300px;
    }

    .map-wrapper {
        padding: 15px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        padding: 32px 24px;
    }
}

/* Logo switching based on navbar state */
#logo-light {
    display: none;
}

#logo-dark {
    display: block !important;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.navbar.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.navbar.scrolled #logo-light {
    display: block;
}

.navbar.scrolled #logo-dark {
    display: none !important;
}
