/* ───── RESET E BASE ───── */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    max-width: 100vw;
    min-height: 100vh;
}

/* ───── TEMA CLARO ───── */

:root {
    --primary: #005fac;
    --primary-dark: #004d8c;
    --primary-light: #1a7fcf;
    --secondary: #E97113;
    --secondary-dark: #cc5a0e;
    --secondary-light: #ff8c42;
    --accent: #F97316;
    --light: #F0ECDD;
    --dark: #050B1E;
    --gray: #6c757d;
    --background: #f5f7fa;
    --surface: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.05);
    --muted: #f1f5f9;
    --overlay: rgba(0, 0, 0, 0.3);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-hover: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ───── TEMA ESCURO ───── */

[data-theme="dark"] {
    --background: #0a0f1f;
    --surface: #111827;
    --text: #f0f0f0;
    --border: #2d3748;
    --shadow: rgba(0, 0, 0, 0.5);
    --muted: #1a202c;
    --overlay: rgba(0, 0, 0, 0.5);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --hover-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .company-logo,
[data-theme="dark"] .work-card .card-icon {
    background: var(--muted);
}

[data-theme="dark"] .segment-img-label {
    background: rgba(0, 0, 0, 0.7);
}

/* ───── CONTAINER ───── */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ───── TIPOGRAFIA ───── */

h1 {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary);
}

.section-title {
    text-align: center;
    color: var(--primary);
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80px, 30%);
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 3px;
}

.text-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.text-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    text-align: center;
    color: var(--text-light);
}

/* ───── BOTÕES GLOBAIS ───── */

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 14px 40px;
    font-size: 1.1rem;
}

/* ───── SCROLLBAR ───── */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ───── HEADER ───── */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--surface);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
}

/* Logo */
.logo {
    flex-shrink: 0;
    z-index: 1002;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    line-height: 1.2;
}

.logo-group {
    font-family: 'Poppins', sans-serif;
    font-size: 0.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.6px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}

.logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.6px;
}

/* Navegação Desktop */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    width: 240px;
    padding: 0.5rem 0;
    background-color: var(--surface);
    border-radius: 8px;
    box-shadow: 0 10px 25px var(--shadow);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1001;
    list-style: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--surface);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--secondary);
    background-color: var(--muted);
    padding-left: 1.5rem;
}

.dropdown-item i {
    font-size: 1rem;
    width: 1.25rem;
    color: var(--secondary);
}

/* Ações do Header */
.nav-actions-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    z-index: 1001;
}

.theme-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
    font-size: 1rem;
}

.theme-btn:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.05);
    border-color: var(--secondary);
}

.nav-involve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
}

.nav-involve-btn:hover {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.nav-actions-mobile {
    display: none;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

/* Responsividade */
@media screen and (max-width: 992px) {
    .header-container {
        height: 70px;
        padding: 0 1rem;
    }

    .logo-img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    .nav-actions-desktop {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: calc(100vh - 70px);
        background-color: var(--surface);
        flex-direction: column;
        justify-content: flex-start;
        padding: 25px 20px;
        margin: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 2px 0 10px var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background-color: var(--muted);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .dropdown-menu.active {
        max-height: 500px;
        padding: 8px 0;
        margin: 5px 0 10px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
    }

    .nav-actions-mobile .nav-involve-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav {
        width: 90%;
        max-width: 320px;
        padding: 20px 15px;
    }
}

@media screen and (max-width: 576px) {
    .header-container {
        padding: 0 12px;
        height: 65px;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }

    .nav {
        top: 65px;
        width: 85%;
        max-width: 280px;
        padding: 15px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

@media screen and (max-width: 360px) {
    .logo-text {
        display: none;
    }
}

/* ───── REDES SOCIAIS FLUTUANTES ───── */

.social-floating {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}

.social-floating a {
    width: 45px;
    height: 45px;
    background-color: var(--surface);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.social-floating a:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateX(-5px);
}

@media screen and (max-width: 992px) {
    .social-floating {
        display: none;
    }
}

/* ───── SEÇÃO HERO ───── */

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: clamp(60px, 11vh, 120px) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    max-width: 700px;
    margin: 0 0 30px 0;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero .btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 6px 20px rgba(233, 113, 19, 0.5);
}

@media screen and (max-width: 991px) {
    .hero {
        min-height: 50vh;
    }
}

@media screen and (max-width: 767px) {
    .hero {
        min-height: 45vh;
    }
}

@media screen and (max-width: 575px) {
    .hero {
        min-height: 40vh;
        padding: clamp(40px, 8vh, 80px) 0;
    }
}

/* ───── SEÇÃO SOBRE NÓS ───── */

.about {
    padding: clamp(40px, 8vw, 60px) 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--muted) 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
    margin-top: 40px;
}

.about-image-container {
    position: relative;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-location-info {
    margin-top: 20px;
    padding: clamp(15px, 3vw, 20px);
    background: var(--background);
    border-radius: 16px;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid var(--border);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-item i {
    width: 24px;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-item span {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.5;
}

.location-item strong {
    color: var(--primary);
}

.location-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 15px 0;
}

.about-paragraph {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
}

.about-paragraph strong {
    color: var(--primary);
}

.about-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.about-btn {
    padding: clamp(12px, 3vw, 14px) clamp(30px, 5vw, 35px);
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, transparent 0%, transparent 50%, var(--secondary) 50%);
    background-size: 250% 100%;
    background-position: 0% 0;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.about-btn:hover {
    background-position: 100% 0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
}

@media screen and (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image-container {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .about-paragraph {
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid var(--secondary);
        padding-bottom: 20px;
    }
}

/* ───── NOSSO GRUPO DE EMPRESAS ───── */

.group-companies {
    padding: clamp(40px, 8vw, 20px) 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
    overflow: hidden;
}

.group-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.group-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.company-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.company-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--card-shadow);
}

.company-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border-radius: 50%;
    transition: var(--transition);
    padding: 12px;
    overflow: hidden;
}

.company-card:hover .company-logo {
    transform: scale(1.05);
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.company-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.company-card:hover .company-name {
    color: var(--secondary);
}

.company-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.company-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin-top: 8px;
    cursor: pointer;
    min-width: 130px;
}

.company-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.company-card:hover .company-btn {
    background: var(--secondary);
    color: white;
    gap: 12px;
    transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .companies-grid {
        gap: 15px;
    }

    .company-card {
        padding: 15px 10px;
    }

    .company-logo {
        width: 55px;
        height: 55px;
        padding: 10px;
    }

    .company-name {
        font-size: 0.85rem;
    }

    .company-tagline {
        font-size: 0.6rem;
    }

    .company-btn {
        padding: 6px 12px;
        font-size: 0.65rem;
        min-width: 110px;
    }
}

@media screen and (max-width: 480px) {
    .companies-grid {
        gap: 12px;
    }

    .company-card {
        padding: 12px 8px;
    }

    .company-logo {
        width: 45px;
        height: 45px;
        padding: 8px;
    }

    .company-name {
        font-size: 0.75rem;
    }

    .company-tagline {
        font-size: 0.55rem;
    }

    .company-btn {
        padding: 5px 10px;
        font-size: 0.6rem;
        min-width: 95px;
    }
}

/* ───── SEÇÃO MARCAS ───── */

.brands {
    padding: clamp(40px, 8vw, 20px) 0;
}

.brands-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.brands-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.brands-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.brands-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.brand-item {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    text-align: center;
    padding: 25px 15px;
    background: var(--background);
    border-radius: 12px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
}

.brand-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    z-index: 10;
}

.brand-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.1);
}

.carousel-arrow {
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: var(--transition);
    box-shadow: 0 4px 12px var(--shadow);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--primary);
    transform: scale(1.1);
}

.carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--secondary);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--primary);
}

@media screen and (max-width: 992px) {
    .brands-carousel-container {
        padding: 0 35px;
    }

    .brand-item {
        min-width: 140px;
        padding: 20px 12px;
    }

    .brand-item img {
        max-height: 70px;
    }
}

@media screen and (max-width: 768px) {
    .brands-carousel-container {
        padding: 0 30px;
    }

    .brand-item {
        min-width: 130px;
        padding: 18px 10px;
    }

    .brand-item img {
        max-height: 60px;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .brands {
        padding: 30px 0;
    }

    .brands-carousel-container {
        padding: 0 25px;
        gap: 10px;
    }

    .brand-item {
        min-width: auto;
        max-width: 280px;
        margin: 0 auto;
        padding: 20px 15px;
    }

    .brand-item img {
        max-height: 70px;
    }

    .carousel-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .carousel-indicators {
        gap: 8px;
        margin-top: 20px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* ───── SEGMENTOS DE ATUAÇÃO ───── */

.segments-section {
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    padding: clamp(60px, 8vw, 40px) 0;
    position: relative;
    overflow: hidden;
}

.segments-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
}

.segments-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(40px, 6vw, 60px);
    padding: 0 20px;
}

.segments-header .text-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 3px;
}

.segments-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0 auto clamp(60px, 8vw, 80px);
    padding: 20px 40px;
    flex-wrap: wrap;
    max-width: 700px;
    background: var(--surface);
    border-radius: 60px;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

.stat-item {
    text-align: center;
    padding: 5px 0;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    background: var(--secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.segments-grid-images {
    display: grid;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 25px;
}

@media screen and (min-width: 769px) {
    .segments-grid-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .segments-grid-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .segments-grid-images {
        gap: 12px;
        padding: 0 12px;
    }
}

.segment-img-link {
    text-decoration: none;
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 36px;
    transition: var(--transition);
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

@media screen and (min-width: 769px) {
    .segment-img-link {
        max-width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .segment-img-link {
        max-width: 100%;
    }
}

.segment-img-container {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--primary-dark);
    border-radius: 28px;
    transition: var(--transition);
}

.segment-img-link:hover .segment-img-container {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
}

.segment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 26px;
}

.segment-img-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: white;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    letter-spacing: 1px;
    text-align: center;
}

.segment-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
    backdrop-filter: blur(2px);
    border-radius: 26px;
}

.segment-img-link:hover .segment-img-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
}

.segment-img-overlay span {
    color: white;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.segment-img-link:hover .segment-img-overlay span {
    transform: translateY(0);
}

.segment-img-overlay span i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.segment-img-link:hover .segment-img-overlay span i {
    transform: translateX(5px);
}

.segment-img-link:hover .segment-img {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .segment-img-label {
        bottom: 12px;
        left: 12px;
        right: 12px;
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .segment-img-overlay span {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
}

/* ───── DIFERENCIAIS ───── */

.highlights {
    padding: clamp(40px, 8vw, 60px) 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--muted) 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 30px);
    margin-top: 40px;
}

.highlight-card {
    text-align: center;
    padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
    background: var(--background);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--secondary);
}

.highlight-card i {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--secondary);
    margin-bottom: 20px;
}

.highlight-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.highlight-card p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
}

@media screen and (max-width: 991px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ───── PLANETA CONEXÃO (GALERIA) ───── */

.moments-gallery {
    padding: clamp(40px, 8vw, 80px) 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 32px;
}

.gallery-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 0 -4px;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
    padding: 20px 4px 30px 4px;
    touch-action: pan-y;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 16px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: var(--surface);
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.gallery-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

.gallery-slide .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: white;
    padding: 30px 20px 20px;
}

.gallery-slide .gallery-caption h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 4px;
    color: white;
}

.gallery-slide .gallery-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--surface);
    color: var(--primary);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: 0 4px 12px var(--shadow);
}

.gallery-nav:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot:hover {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: scale(1.2);
    width: 32px;
    border-radius: 20px;
}

@media screen and (max-width: 1199px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media screen and (max-width: 767px) {
    .gallery-slide {
        flex: 0 0 100%;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-dots {
        gap: 8px;
    }

    .gallery-dot.active {
        width: 24px;
    }
}

/* ───── TRABALHE CONOSCO ───── */

.work-with-us {
    padding: clamp(60px, 8vw, 20px) 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--muted) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.work-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 6vw, 60px);
    padding: 0 20px;
}

.work-header .text-title span {
    color: var(--secondary);
    position: relative;
}

.work-header .text-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.25;
    border-radius: 4px;
    z-index: -1;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.work-card {
    background: var(--background);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 30px) clamp(16px, 2.5vw, 24px);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-shadow: var(--card-shadow);
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--hover-shadow);
}

.work-card .card-icon {
    width: clamp(60px, 6vw, 70px);
    height: clamp(60px, 6vw, 70px);
    background: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.work-card:hover .card-icon {
    background: var(--secondary);
    border-color: transparent;
    transform: scale(1.1);
}

.work-card .card-icon i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--secondary);
    transition: var(--transition);
}

.work-card:hover .card-icon i {
    color: white;
}

.work-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 12px;
}

.work-card p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.6;
}

.work-media {
    max-width: 800px;
    margin: 0 auto clamp(40px, 6vw, 60px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0.95;
    pointer-events: none;
    transition: var(--transition);
}

.video-wrapper:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.playing::after {
    opacity: 0;
    visibility: hidden;
}

.work-container {
    text-align: center;
    padding: 0 20px;
}

.work-btn {
    padding: 16px 48px;
    font-size: 1.2rem;
    background: var(--secondary);
    border: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.work-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    gap: 18px;
}

.work-btn:hover i {
    transform: translateX(5px);
}

@media screen and (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .work-grid {
        gap: 15px;
    }

    .work-card {
        padding: 20px 15px;
    }

    .work-btn {
        padding: 12px 32px;
        font-size: 1rem;
    }

    .video-wrapper::after {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 576px) {
    .work-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }

    .work-btn {
        white-space: normal;
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* ───── CTA ───── */

.cta-content {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: clamp(30px, 5vw, 60px);
    text-align: center;
    color: white;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.cta-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.cta-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.cta-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    padding: 16px 36px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.cta-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .cta-btn-primary {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .cta-content {
        padding: clamp(20px, 5vw, 30px);
    }
}

/* ───── VENHA NOS VISITAR ───── */

.visit-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.visit-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 6vw, 60px);
    padding: 0 20px;
}

.visit-header .text-title span {
    color: var(--secondary);
    position: relative;
}

.visit-header .text-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.25;
    border-radius: 4px;
    z-index: -1;
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 50px);
    align-items: start;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    display: flex;
    gap: 20px;
    background: var(--surface);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 25px);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.info-card:hover {
    transform: translateX(5px);
    border-color: var(--secondary);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover .info-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--secondary);
    transition: var(--transition);
}

.info-card:hover .info-icon i {
    color: white;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-bottom: 12px;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span,
.hours-list strong {
    color: var(--text-light);
    font-size: 0.95rem;
}

.hours-list strong {
    color: var(--primary);
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 12px;
    padding: 8px 12px;
    background: var(--muted);
    border-radius: 30px;
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.info-link:hover {
    background: var(--secondary);
    color: white;
    gap: 12px;
}

.phone-link,
.email-link {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    margin-top: 4px;
}

.phone-link:hover,
.email-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.visit-map {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.store-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.store-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 30px 20px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.image-caption i {
    color: var(--secondary);
}

.image-caption span {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

@media screen and (max-width: 991px) {
    .visit-content {
        grid-template-columns: 1fr;
    }

    .visit-info {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .map-container {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-icon {
        margin-bottom: 10px;
    }

    .hours-list li {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .info-link {
        width: 100%;
        justify-content: center;
    }

    .map-container {
        height: 350px;
    }

    .image-caption {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 575px) {
    .map-container {
        height: 300px;
    }
}

/* ───── FOOTER ───── */

footer {
    background-color: var(--surface);
    color: var(--text);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
}

.footer-logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    line-height: 1.2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ───── ANIMAÇÕES GLOBAIS ───── */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.brands,
.about,
.highlights,
.segments-section,
.moments-gallery,
.visit-section {
    animation: fadeIn 1s ease-out;
}

.segments-header,
.segments-stats,
.segments-grid-images {
    animation: fadeInUp 0.6s ease-out forwards;
}

.segments-stats {
    animation-delay: 0.1s;
}

.segments-grid-images {
    animation-delay: 0.2s;
}

/* ───── HIGH CONTRAST ───── */

@media (prefers-contrast: high) {
    :root {
        --primary: #000080;
        --secondary: #8B0000;
        --text-light: #000000;
        --border: #000000;
        --surface: #FFFFFF;
        --background: #F5F5F5;
    }

    .segment-img-container,
    .highlight-card,
    .work-card {
        border: 2px solid #000000;
    }
}

/* ───── REDUCED MOTION ───── */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}