/* 
====================================
SERVICOS.CSS - Overseas Trading
Página de Serviços - VERSÃO CORRIGIDA
====================================
*/

/* Variables */
:root {
    --primary-cyan: #00bcd4;
    --primary-cyan-dark: #0097a7;
    --secondary-cyan: #4dd0e1;
    --accent-cyan: #00e5ff;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-card-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --border-color: #333333;
    --shadow-light: rgba(0, 188, 212, 0.1);
    --shadow-medium: rgba(0, 188, 212, 0.2);
    --shadow-heavy: rgba(0, 188, 212, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Menu Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary) !important;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block !important;
}

/* Menu Mobile */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 1000;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--primary-cyan);
    background: rgba(0, 188, 212, 0.1);
    border-left-color: var(--primary-cyan);
}

/* Estados do Menu Hamburger */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav.active {
    display: flex;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .nav-toggle {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.3rem;
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#overseas-header + main,
#header-container + main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero Section */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 100px 0 3.2rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(77, 208, 225, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Badge */
.badge-container {
    text-align: center;
    margin-bottom: 1.6rem;
}

.badge {
    display: inline-block;
    padding: 0.45rem 1.3rem;
    background: var(--gradient-primary);
    color: #000000;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px var(--shadow-light);
}

/* Hero Content */
.hero-content {
    text-align: center;
    margin-bottom: 2.6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.45;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.7rem;
    margin-top: 2.2rem;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.stat-card {
    background: var(--gradient-dark);
    border-radius: 17px;
    padding: 1.6rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 310px;
}

.stat-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.stat-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.stat-card:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
    max-width: 300px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-medium);
    border-color: var(--primary-cyan);
}

.stat-icon {
    font-size: 2.1rem;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.stat-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--gradient-dark);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    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-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-medium);
    border-color: var(--primary-cyan);
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 600;
}

.service-card:hover .service-features li {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0 4rem 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
    min-width: 200px;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-light);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 90px 0 3rem 0;
    }
    
    .hero-content {
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .badge-container {
        margin-bottom: 1.5rem;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 1.5rem;
        margin-top: 2rem;
        max-width: 100%;
        justify-items: center;
    }
    
    .stat-card {
        padding: 1.4rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        width: 100%;
        max-width: none;
        border-radius: 15px;
    }
    
    .stat-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .stat-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .stat-card:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
        justify-self: center;
        max-width: 280px;
    }
    
    .stat-icon {
        font-size: 2rem;
        flex-shrink: 0;
    }
    
    .stat-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .stat-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .services-section {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .cta-section {
        padding: 4rem 0 3rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 3rem 0 2rem 0;
    }
}

/* Remove espaços extras */
.hero-section::after,
.services-section::after,
.cta-section::after,
main::after {
    display: none !important;
}

div:empty,
p:empty,
span:empty {
    display: none;
}

#footer-container {
    margin: 0;
    padding: 0;
}

body::after {
    display: none !important;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading States */
.service-card.loading {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-cyan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-cyan-dark);
}

/* Focus States for Accessibility */
.btn:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

.service-card:focus-within {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}

/* Print Styles */
@media print {
    .floating-elements {
        display: none;
    }
    
    .hero-section,
    .services-section,
    .cta-section {
        page-break-inside: avoid;
    }
    
    .service-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* 
====================================
BOTÕES FIXOS - DEFINIÇÃO ÚNICA E FINAL
Esta é a ÚNICA seção que define os botões!
====================================
*/

/* BOTÃO DE VOLTAR AO TOPO - CANTO INFERIOR ESQUERDO */
.back-to-top-btn,
button[class*="back-to-top"],
button[class*="scroll-top"],
*[class*="scroll-up"] {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
    top: auto !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #00d4ff, #00ffff) !important;
    border: none !important;
    border-radius: 50% !important;
    color: black !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(100px) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.back-to-top-btn.visible,
button[class*="back-to-top"].visible,
button[class*="scroll-top"].visible,
*[class*="scroll-up"].visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.back-to-top-btn:hover,
button[class*="back-to-top"]:hover,
button[class*="scroll-top"]:hover,
*[class*="scroll-up"]:hover {
    transform: scale(1.1) translateY(0) !important;
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4) !important;
}

.back-to-top-btn svg,
button[class*="back-to-top"] svg,
button[class*="scroll-top"] svg,
*[class*="scroll-up"] svg {
    width: 24px !important;
    height: 24px !important;
    fill: black !important;
    color: black !important;
}

/* BOTÃO WHATSAPP - CANTO INFERIOR DIREITO */
.whatsapp-btn,
.overseas-whatsapp-float,
a[href*="whatsapp"],
a[href*="wa.me"],
*[class*="whatsapp"] {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    top: auto !important;
    width: 60px !important;
    height: 60px !important;
    background: #25d366 !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-decoration: none !important;
    cursor: pointer !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3) !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.whatsapp-btn:hover,
.overseas-whatsapp-float:hover,
a[href*="whatsapp"]:hover,
a[href*="wa.me"]:hover,
*[class*="whatsapp"]:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
    color: white !important;
}

.whatsapp-btn svg,
.overseas-whatsapp-float svg,
a[href*="whatsapp"] svg,
a[href*="wa.me"] svg,
*[class*="whatsapp"] svg {
    width: 24px !important;
    height: 24px !important;
    fill: white !important;
    color: white !important;
}

/* DESKTOP - Menu normal */
.overseas-mobile-toggle,
#overseasMobileToggle {
    display: none;
}

.overseas-nav-links,
#overseasNavLinks {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

/* MOBILE - Ajustes específicos */
@media (max-width: 768px) {
    /* Hamburger menu */
    .overseas-mobile-toggle,
    #overseasMobileToggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .overseas-mobile-toggle span,
    #overseasMobileToggle span {
        width: 25px;
        height: 3px;
        background: #00ffff;
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }
    
    .overseas-mobile-toggle.active span:nth-child(1),
    #overseasMobileToggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .overseas-mobile-toggle.active span:nth-child(2),
    #overseasMobileToggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .overseas-mobile-toggle.active span:nth-child(3),
    #overseasMobileToggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .overseas-nav-links.active,
    #overseasNavLinks.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 2rem;
    }
    
    .overseas-nav-links.active a,
    #overseasNavLinks.active a {
        color: #b0b0b0;
        font-size: 1.3rem;
        padding: 1rem 2rem;
        text-decoration: none;
    }
    
    .overseas-nav-links.active a:hover,
    #overseasNavLinks.active a:hover {
        color: #00ffff;
    }
    
    /* Botões em mobile - maiores e nas bordas */
    .back-to-top-btn,
    button[class*="back-to-top"],
    button[class*="scroll-top"],
    *[class*="scroll-up"] {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.4rem !important;
        bottom: 15px !important;
        left: 15px !important;
    }
    
    .whatsapp-btn,
    .overseas-whatsapp-float,
    a[href*="whatsapp"],
    a[href*="wa.me"],
    *[class*="whatsapp"] {
        width: 70px !important;
        height: 70px !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .whatsapp-btn svg,
    .overseas-whatsapp-float svg,
    a[href*="whatsapp"] svg,
    a[href*="wa.me"] svg,
    *[class*="whatsapp"] svg {
        width: 28px !important;
        height: 28px !important;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn,
    button[class*="back-to-top"],
    button[class*="scroll-top"],
    *[class*="scroll-up"] {
        width: 65px !important;
        height: 65px !important;
        bottom: 10px !important;
        left: 10px !important;
    }
    
    .whatsapp-btn,
    .overseas-whatsapp-float,
    a[href*="whatsapp"],
    a[href*="wa.me"],
    *[class*="whatsapp"] {
        width: 65px !important;
        height: 65px !important;
        bottom: 10px !important;
        right: 10px !important;
    }
}

/* FORÇA ABSOLUTA - Remove qualquer conflito */
.back-to-top-btn {
    left: 20px !important;
    right: auto !important;
}

.whatsapp-btn,
.overseas-whatsapp-float,
a[href*="whatsapp"],
a[href*="wa.me"] {
    right: 20px !important;
    left: auto !important;
}

/* Remove botões duplicados se existirem */
.back-to-top-btn:not(:first-of-type) {
    display: none !important;
}

.whatsapp-btn:not(:first-of-type),
a[href*="whatsapp"]:not(:first-of-type),
a[href*="wa.me"]:not(:first-of-type) {
    display: none !important;
}

/* Focus states para acessibilidade */
.back-to-top-btn:focus,
.whatsapp-btn:focus,
.overseas-whatsapp-float:focus,
a[href*="whatsapp"]:focus,
a[href*="wa.me"]:focus {
    outline: 2px solid #00ffff !important;
    outline-offset: 2px !important;
}