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

:root {
    --primary-color: #0088FF;
    --secondary-color: #404040;
    --text-dark: #404040;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #404040;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Remove padding e max-width do container no navbar para controle total */
.navbar .container {
    padding: 0;
    max-width: none;
    width: 100%;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 5px;
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--primary-color);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

/* Header Transparente sobre o mapa (tema claro) */
.header.header-transparent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.header-transparent .nav-menu a {
    color: #404040;
    font-weight: 500;
}

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

.header.header-transparent .nav-menu a.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    border: 2px solid var(--primary-color);
}

.header.header-transparent .nav-menu a.btn-primary:hover {
    background: transparent;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.header.header-transparent .mobile-menu-toggle span {
    background: #404040;
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 120px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-right a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    display: block;
}

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

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

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

/* Dropdown Menu - Minimalista */
.dropdown-menu {
    position: fixed;
    top: 96px;
    right: 20px;
    width: 260px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 999;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-nav {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 2px;
}

.dropdown-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.15s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.dropdown-nav a:hover {
    background: #f5f8ff;
    color: var(--primary-color);
}

/* Dropdown divider */
.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 8px 4px;
}

/* Dropdown contact links */
.dropdown-contact,
.dropdown-portal {
    font-size: 14px !important;
    color: var(--text-light) !important;
    font-weight: 400 !important;
}

.dropdown-portal {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
}

.dropdown-contact:hover,
.dropdown-portal:hover {
    background: #f5f8ff !important;
    color: var(--primary-color) !important;
}

/* Menu backdrop overlay - Minimalista */
.menu-backdrop {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 998;
    backdrop-filter: blur(2px);
}

.menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Buttons */
.btn-primary,
.btn-large,
.btn-outline,
.btn-submit {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary,
.btn-large,
.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-large:hover,
.btn-submit:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

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

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    counter-reset: service-counter;
}

.service-card {
    padding: 48px 40px;
    background: var(--white);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    counter-increment: service-counter;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.service-card::after {
    content: "0" counter(service-counter);
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 140px;
    font-weight: 800;
    color: rgba(0, 136, 255, 0.06);
    line-height: 1;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover::after {
    color: rgba(0, 136, 255, 0.1);
    transform: scale(1.03);
}

.service-card:hover {
    background: #fafbfc;
    transform: translateY(-2px);
}

.service-icon {
    display: none;
}

.service-icon-svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-svg {
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

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

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

.about-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-content .lead {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 600;
}

.about-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

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

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    position: relative;
}

.image-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Approach Section */
.approach {
    padding: 120px 0;
    background: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.approach-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.approach-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.approach-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 60px 0 16px;
    position: relative;
    z-index: 1;
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.5;
}

.testimonial blockquote {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 18px;
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item a,
.contact-item span {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: var(--white);
    padding: 0 8px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 14px;
    color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    border: none;
    font-size: 16px;
    margin-top: 10px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo,
.footer-logo img {
    height: 40px;
    margin-bottom: 12px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    max-width: 300px;
    font-size: 13px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Nav wrapper com padding menor */
    .nav-wrapper {
        padding: 0 20px;
    }

    /* Logo responsivo */
    .logo img {
        height: 32px;
    }

    /* Esconder links do nav-right em mobile */
    .nav-right a,
    .nav-right .language-toggle,
    .nav-right .portal-link {
        display: none;
    }

    .nav-right {
        gap: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .contact-info h2,
    .about-content h2 {
        font-size: 36px;
    }

    /* Approach cards - números menores em mobile */
    .approach-number {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    /* Logo ainda menor em mobile pequeno */
    .logo img {
        height: 28px;
    }

    .hero {
        padding: 140px 0 60px;
    }

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

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .services,
    .about,
    .approach,
    .testimonial,
    .contact {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }

    .testimonial blockquote {
        font-size: 20px;
    }

    /* Service cards - padding menor */
    .service-card {
        padding: 32px 24px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .service-card::after {
        font-size: 100px;
        top: -20px;
        right: -15px;
    }

    /* Approach cards */
    .approach-card {
        padding: 32px 24px;
    }

    .approach-number {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .approach-card h3 {
        font-size: 18px;
    }

    .approach-card p {
        font-size: 14px;
    }

    /* Contact form */
    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 14px;
    }

    /* Footer */
    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section ul li,
    .footer-section p {
        font-size: 14px;
    }
}

/* ========================================
   HERO MAP SECTION - Interactive Europe Map
   ======================================== */

.hero-map {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Debug: fundo vermelho para ver se container está visível */
    background: rgba(255, 0, 0, 0.1);
}

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

/* Stats compactas no canto inferior esquerdo */
.hero-stats-compact {
    position: absolute;
    bottom: 40px;
    left: 120px;
    z-index: 10;
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 136, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.stat-compact .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-compact .stat-label {
    font-size: 12px;
    color: rgba(26, 26, 26, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-map .hero-content {
    text-align: center;
    color: var(--white);
}

/* Hero Title - Posicionado à esquerda sobre o mapa */
.hero-title {
    position: absolute;
    top: 220px;
    left: 120px;
    z-index: 10;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0088FF;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.hero-stats .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-cta:hover {
    background: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.3);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2.5);
    }
}

@keyframes gridFade {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

.map-grid-line {
    animation: gridFade 4s ease-in-out infinite;
}

/* City Markers */
.city-marker {
    cursor: pointer;
    transition: var(--transition);
}

.city-dot {
    transition: var(--transition);
}

.city-pulse {
    animation: pulse 3s ease-in-out infinite;
}

.city-label {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Map Tooltip */
.map-tooltip {
    background: rgba(64, 64, 64, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 13px;
    line-height: 1.6;
    box-shadow: 0 4px 20px rgba(0, 136, 255, 0.4);
    pointer-events: none;
}

.map-tooltip strong {
    display: block;
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Responsive Map */
@media (max-width: 768px) {
    .hero-map {
        height: 80vh;
        min-height: 600px;
    }

    .hero-title {
        top: 100px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }

    .hero-title h1 {
        font-size: 36px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats-compact {
        bottom: 20px;
        left: 20px;
        right: 20px;
        gap: 15px;
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-compact .stat-number {
        font-size: 24px;
    }

    .stat-compact .stat-label {
        font-size: 10px;
    }

    .city-label {
        font-size: 10px;
    }

    .map-container {
        opacity: 1;
    }

    /* Dropdown menu responsivo - Minimalista */
    .dropdown-menu {
        width: calc(100% - 40px);
        max-width: 320px;
        right: 20px;
        left: 20px;
        margin: 0 auto;
    }

    /* Header responsivo */
    .nav-right {
        gap: 16px;
        padding-right: 20px;
    }

    .nav-right a {
        font-size: 13px;
    }

    .nav-right .phone-link,
    .nav-right .email-link {
        display: none; /* Esconder em mobile, mostrar só no menu dropdown */
    }

    /* Language toggle menor */
    .language-toggle {
        gap: 4px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Portal link mais compacto */
    .nav-right .portal-link {
        font-size: 13px;
        padding: 0;
    }
}

/* Mobile muito pequeno (iPhone SE, etc) */
@media (max-width: 375px) {
    .hero-title h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-stats-compact {
        padding: 12px 16px;
        gap: 12px;
    }

    .stat-compact .stat-number {
        font-size: 20px;
    }

    .stat-compact .stat-label {
        font-size: 9px;
    }

    .logo img {
        height: 24px;
    }

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

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }
}

/* Tablet - média (768px - 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    /* Nav wrapper em tablet */
    .nav-wrapper {
        padding: 0 40px;
    }

    /* Logo em tablet */
    .logo img {
        height: 36px;
    }

    .dropdown-menu {
        width: 280px;
        right: 40px;
    }

    .nav-right {
        gap: 20px;
    }

    .nav-right a {
        font-size: 13px;
    }

    /* Hero title em tablet */
    .hero-title {
        left: 40px;
        max-width: 550px;
    }

    .hero-title h1 {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    /* Stats em tablet */
    .hero-stats-compact {
        left: 40px;
    }

    /* Services grid em tablet - 2 colunas */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Approach grid em tablet - 2 colunas */
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop pequeno */
@media (min-width: 969px) and (max-width: 1200px) {
    .nav-wrapper {
        padding: 0 60px;
    }

    .dropdown-menu {
        width: 280px;
    }

    .nav-right {
        gap: 24px;
    }

    .nav-right a {
        font-size: 14px;
    }

    /* Hero ajustado */
    .hero-title {
        left: 60px;
    }

    .hero-stats-compact {
        left: 60px;
    }
}

/* ========================================
   COOKIE CONSENT BANNER - Minimalista
   ======================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.8);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 255, 0.3);
}

.cookie-btn.decline {
    background: transparent;
    color: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-btn.decline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 28px;
    }

    .cookie-content p {
        font-size: 13px;
    }
}
