/* Global Styles */
:root {
    --primary-color: #fca311;
    /* Industrial Orange/Yellow */
    --secondary-color: #14213d;
    /* Deep Navy Blue */
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-color: #333;
    --text-light: #e5e5e5;
    --accent: #e5e5e5;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 15px auto 30px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

/* Header */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: rgba(20, 33, 61, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 20px; /* Ajuste conforme necessário */
    width: auto;
    max-width: 100px; /* Limite máximo de largura */
    transition: all 0.3s ease;
}

/* Para versão mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 40px; /* Tamanho menor no mobile */
        max-width: 150px;
    }
}

/* Para garantir que a logo não ultrapasse o header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    /* Increased size */
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    /* More spacing */
    font-weight: 600;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list li a {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    /* Slightly larger */
    position: relative;
    padding-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    /* Better readability */
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-list li a:hover::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    padding: 10px 25px;
    /* Bigger button */
    border-radius: 50px;
    /* Rounded pill shape */
    font-weight: 700 !important;
    text-transform: uppercase;
    text-shadow: none !important;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-contact:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(252, 163, 17, 0.4);
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.lang-toggle {
    display: flex !important;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(20, 33, 61, 0.95);
    backdrop-filter: blur(10px);
    width: 120px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    list-style: none;
    /* Ensure no bullets */
}

.lang-selector:hover .lang-dropdown {
    display: block;
}

.lang-dropdown li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: #fff;
    font-size: 0.85rem;
    transition: 0.3s;
}

.lang-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.lang-dropdown img {
    width: 18px;
    border-radius: 2px;
}

/* Hero Slider Section */
.hero-slider {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.9) 0%, rgba(20, 33, 61, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-decor-line {
    position: absolute;
    top: 0;
    left: 10%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 20px;
    margin-left: 10%;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    font-weight: 800;
}

.highlight-text {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    color: #e0e0e0;
    max-width: 600px;
    font-weight: 300;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

/* Slider Custom Interface */
.slider-interface {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 33, 61, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10;
    padding: 24px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-counter {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    display: flex;
    gap: 5px;
}

.slide-counter .divider {
    color: rgba(255, 255, 255, 0.3);
}

#total-slides {
    color: rgba(255, 255, 255, 0.5);
}

.slider-progress-bar {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 60px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s linear;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #fff;
    color: var(--secondary-color);
    border-color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}


/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern About Section */
.about-modern {
    background-color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('patterns/dots.png');
    /* If available, else pattern via css */
    opacity: 0.1;
}

.visual-content {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.huge-text {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.8;
    color: var(--secondary-color);
    letter-spacing: -3px;
}

.huge-text.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary-color);
    opacity: 0.3;
}

.visual-card {
    margin-top: -30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(252, 163, 17, 0.3);
    text-align: center;
    transform: rotate(-5deg);
    transition: 0.3s;
}

.about-visual:hover .visual-card {
    transform: rotate(0);
}

.visual-card i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.visual-card p {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

/* About Content */
.section-label {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.lead-text {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.body-text {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    width: 25px;
    height: 25px;
    background: rgba(20, 33, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

.stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-box strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-box small {
    color: #888;
    font-size: 0.9rem;
}

/* Modern Services Section */
.services-modern {
    background-color: #f4f6f8;
    padding: 100px 0;
    position: relative;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    /* Tight gap */
}

@media (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
}

.service-card-modern {
    background: #fff;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(252, 163, 17, 0.5);
}

.service-img {
    height: 160px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.service-content {
    padding: 20px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-modern {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    /* Overlap image */
    right: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.service-icon-modern i {
    font-size: 1.5rem;
    color: #fff;
}

.service-card-modern:hover .service-icon-modern {
    background: var(--primary-color);
    transform: rotate(10deg);
}

.service-card-modern:hover .service-icon-modern i {
    color: var(--secondary-color);
}

.service-card-modern h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    margin-top: 5px;
    font-weight: 700;
}

.service-desc {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

.card-footer-compact {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-footer-compact span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-text {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.btn-text:hover {
    color: var(--primary-color);
    gap: 10px;
    /* Slide arrow effect */
}

/* Modern Technology Section */
.technology-modern {
    background: url('imagens/WhatsApp Image 2026-02-07 at 16.02.09.jpeg') center/cover fixed;
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.8));
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.light-text h2 {
    color: #fff;
}

.light-text p {
    color: #ddd;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.tech-card:hover .card-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.tech-card:hover .card-icon i {
    color: var(--secondary-color);
}

.tech-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #fff;
}

.tech-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.tech-action {
    margin-top: 60px;
}

/* Sustainability */
.sustainability {
    background-color: #fff;
    background-image: linear-gradient(to bottom, #fff, #f0fdf4);
    /* Subtle green tint at bottom */
}

.sustainability h2 {
    color: #2d6a4f;
    /* Greenish tone for sustainability header */
}

.sustain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sustain-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: 0.3s;
}

.sustain-card:hover {
    border-color: #2d6a4f;
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.1);
    background: #fff;
}

.sustain-card h3 {
    color: #2d6a4f;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.sustain-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Sections Removed (International/Gallery) - Styles Deprecated */

/* Modern Footer */
.footer-modern {
    background-color: var(--secondary-color);
    color: #e0e0e0;
    padding: 80px 0 0;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

/* Brand Column */
.brand-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    /* Circle */
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Links & Groups */
.footer-links-group h4,
.footer-offices-group h4,
.footer-contact-group h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-links-group h4::after,
.footer-offices-group h4::after,
.footer-contact-group h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-links-group ul li {
    margin-bottom: 12px;
}

.footer-links-group ul li a {
    color: #bbb;
    transition: 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-group ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Office Locations */
.office-location {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.office-flag img {
    width: 25px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.office-details h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.office-details p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}

/* Contact List */
.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #bbb;
    font-size: 0.95rem;
    align-items: flex-start;
}

.contact-list li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.tech-resp {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
}

.footer-legal a {
    color: #777;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #ccc;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }

    .brand-desc {
        max-width: 100%;
    }
}

/* Responsive (General) */
@media (max-width: 900px) {

    .about-grid,
    .tech-content {
        grid-template-columns: 1fr;
    }

    .tech-image {
        order: -1;
        /* Image on top on mobile */
        height: 300px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .slider-interface {
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        background-color: var(--secondary-color);
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        transition: 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        /* Above hero slider UI */
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Mobile Hero Adjustments */
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1rem;
        padding-left: 15px;
        margin-bottom: 30px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero p {
        border-left: none;
        padding-left: 0;
        margin: 0 auto 30px;
    }

    .slider-interface {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .slider-progress-bar {
        display: none;
        /* Hide progress on mobile to save space */
    }

    .slide-counter {
        font-size: 1rem;
    }

    .control-btn {
        width: 35px;
        height: 35px;
    }

    .scroll-indicator {
        bottom: 150px;
        /* Push up above the interface */
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-outline {
        margin-left: 0;
    }
}

/* Technical Partner Hero */
.tech-partner-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.tech-partner-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
}

.partner-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-content {
    flex: 1;
    min-width: 300px;
}

.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 163, 17, 0.15);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.partner-content h3 {
    font-size: 1.5rem;
    color: #94a3b8;
    /* Slate text */
    font-weight: 400;
    margin-bottom: 25px;
}

.partner-intro {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.partner-highlight {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 400px;
    align-items: center;
}

.partner-highlight i {
    font-size: 1.5rem;
    color: #10b981;
    /* Success Green */
}

.partner-highlight div h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.partner-highlight div p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

/* Partner Box (Card) */
.partner-box {
    flex: 0 0 380px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.box-header {
    background: rgba(15, 23, 42, 0.8);
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.box-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.box-header h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.box-header span {
    color: #94a3b8;
    font-size: 0.9rem;
    display: block;
}

.box-body {
    padding: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-item div small {
    display: block;
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item div strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.contact-item div a {
    color: #38bdf8;
    /* Sky blue link */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.contact-item div a:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .partner-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .partner-box {
        width: 100%;
        flex: none;
    }

    .partner-content h2 {
        font-size: 2rem;
    }
}

/* --- Language Selector Styles --- */
.lang-selector {
    position: relative;
    margin-left: 15px;
}

.lang-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 140px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333 !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
    white-space: nowrap;
    transition: background 0.2s;
    text-shadow: none !important;
}

.lang-dropdown li a::after {
    display: none;
}

.lang-dropdown li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color) !important;
}

.lang-dropdown img {
    height: 14px;
    width: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Gallery Premium Section */
.gallery-premium {
    background-color: #f8fafc;
    padding: 100px 0;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 800px; /* Better for portrait images */
    margin: 40px auto 0;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #1e293b; /* Dark slate background */
    width: 100%;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.gallery-slide-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.gallery-slide-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 80vh; 
    display: block;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.gal-control {
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gal-control:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.gallery-counter {
    text-align: center;
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

#gal-current {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .gallery-slider-wrapper {
        margin-top: 20px;
    }
    
    .gal-control {
        width: 40px;
        height: 40px;
    }
    
    .gallery-controls {
        left: 10px;
        right: 10px;
    }
}

/* LGPD Banner Styles */
.lgpd-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: rgba(20, 33, 61, 0.98);
    backdrop-filter: blur(15px);
    color: #fff;
    padding: 20px 0;
    z-index: 10000; /* Above everything */
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lgpd-banner.active {
    bottom: 0;
}

.lgpd-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.lgpd-content p {
    font-size: 0.9rem;
    margin: 0;
    color: #cbd5e1;
    line-height: 1.5;
    max-width: 800px;
}

.lgpd-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

#lgpd-accept {
    white-space: nowrap;
    padding: 10px 35px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .lgpd-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .lgpd-content p {
        font-size: 0.8rem;
    }
}
