/*
Theme Name: sondotecnica
Theme URI: http://www.sondotecnica.com.br
Version: 1.0
Author: sondotecnica
Author URI: http://www.sondotecnica.com.br
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --black: #000000;
    --primary-blue-light: #3B82F6;
    --primary-blue: #092fff;
    --primary-blue-dark: #000578;
    --secondary-purple: #7C3AED;
    --secondary-red: #bfe5ff;

    /* Grays */
    --gray-900: #1a1a1a;
    --gray-600: #6B7280;
    --gray-200: #e3e3e3;
    --gray-100: #F3F4F6;

    --gray-50: #D0D0D3;
    --gray: #F4F4F4;
    --white: #FFFFFF;

    /* Typography */
    --font-primary: 'Mulish', sans-serif;
    --font-primary2: 'Source Sans Pro', sans-serif;
    --font-primary3: "Plus Jakarta Sans", sans-serif;
    --font-primary4: "Oswald", sans-serif;
    --font-primary-bold: "Mulish", sans-serif;
    --font-primary-bold2: "Montserrat", sans-serif;
    --font-secondary: 'Quicksand', sans-serif;
    --font-card: 'Roboto Condensed', sans-serif;
    --font-bebas: "Bebas Neue", sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.8), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary3);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-xs);
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-teste {
    max-width: 1300px;
    margin: 0 15%;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(90deg,
            #0032FF 0%,
            #00AAFF 50%,
            #000578 100%);

    color: var(--white);
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: linear-gradient(#f7f7f7, #f7f7f7) padding-box, linear-gradient(90deg, #27b7f5, #3846b8) border-box;
    color: var(--black);
    border: 3px solid transparent;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.16);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    /*color: var(--white);*/
    transform: translateY(-2px);
    border: 2px solid var(--primary-blue);
}

.btn-outline-white {

    font-size: 1rem;
    background-color: transparent;
    color: white;
    border: 1px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    border: 1px solid var(--primary-blue);
}

.btn-white {
    background-color: white;
    color: black;
}

.btn-white:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-slim {
    display: flex;
    background: linear-gradient(90deg,
            #0032FF 0%,
            #00AAFF 50%,
            #000578 100%);

    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-primary-slim:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-slim-white {
    display: flex;
    background: transparent;
    color: var(--white);
    border: 2px solid white;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-primary-slim-white:hover {
    background: linear-gradient(#f7f7f7, #f7f7f7) padding-box, linear-gradient(90deg, #27b7f5, #3846b8) border-box;
    color: var(--primary-blue);
    border: 3px solid transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-links {
    display: flex;
    background-color: var(--primary-blue-dark);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.btn-primary-links:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-blue-lg {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
}

.btn-blue-lg:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-green {
    font-family: var(--font-bebas);
    color: white;
    background-color: #39A935;

}

.orion-button {
    color: #0032ff;
    font-family: var(--font-bebas);
    font-size: 20px;
    white-space: nowrap;
    pointer-events: auto;
}

.orion-button-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 10;

    display: flex;
    justify-content: center;
    pointer-events: none;
}


/* Section Titles */
.section-title {
    text-align: center;
    font-family: var(--font-primary2);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    /*color: var(--primary-blue-dark);*/
    background: linear-gradient(90deg, #0032FF 0%, #00AAFF 50%, #000578 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-title-bright {
    text-align: center;
    font-family: var(--font-primary2);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    /*color: var(--primary-blue-dark);*/
    background: linear-gradient(90deg, #0032FF 0%, #00AAFF 50%, #0032FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-title-white {
    text-align: center;
    font-family: var(--font-primary2);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: white;
}



/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu-footer {
    display: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease-in-out;

}

.header.scrolled .logo {
    color: #1f2937;
    font-size: 1.25rem;

}

.header-case {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.social-links-header {
    display: none;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
}

.logo-img {
    height: 40px;
    width: 200px;
    align-items: left;
}

.nav-menu {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xl);
    text-decoration: none;

}

.nav-list>li>a,
.nav-list>li>a.nav-link {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.header.scrolled .nav-list>li>a {
    color: #374151;
}

.nav-list>li>a:hover {
    color: var(--primary-blue-light);
    text-decoration: none;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.nav-link:hover {
    font-weight: 600;
}

.nav-link-black {
    font-family: var(--font-card);
    font-size: 1.1rem;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.header.scrolled .nav-link {
    color: #374151;
}

.header.scrolled .nav-link:hover {
    color: var(--primary-blue-light);
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #BAC6F7;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-900);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.dropdown-menu a:hover {
    /* background-color:  ; */
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.search-box-nav-menu {
    display: none;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.language-selected img {
    width: 30px;
    height: 20px;

}

.language-options {
    display: none;
    position: absolute;
    background: #fff;
    margin-top: 4px;
}

.language-options div {
    padding: 5px;
}

.language-options img {
    width: 30px;
    height: 20px;
}

.language-dropdown.open .language-options {
    display: block;
}

.search-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}

.search-btn:hover {
    color: var(--primary-blue-light);
}

.search-btn.scrolled {
    color: #374151;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s;
}

/* Primeira barra */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

/* Barra do meio */
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

/* Última barra */
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Primeira barra */
.mobile-menu-btn.closing span:nth-child(1) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Barra do meio */
.mobile-menu-btn.closing span:nth-child(2) {
    opacity: 1;
}

/* Última barra */
.mobile-menu-btn.closing span:nth-child(3) {
    transform: translateY(9px) rotate(45deg);
}

/* Botão da lupa */
.search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;

    padding: 0.5rem;
    border-radius: var(--radius-sm);

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast);
}

.search-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

/* Modal */
.header-search-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 100px 20px 20px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.header-search-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Fundo escuro */
.header-search-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

/* Caixa da busca */
.header-search-container {
    position: relative;
    z-index: 2;

    width: min(760px, 100%);

    padding: 45px 40px;
    background: #fff;
    border-radius: 16px;

    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.header-search-modal.is-open .header-search-container {
    transform: translateY(0);
}

.header-search-container h2 {
    margin: 0 50px 30px 0;
    color: #111;
    font-size: clamp(28px, 4vw, 42px);
}

/* Fechar */
.header-search-close {
    position: absolute;
    top: 15px;
    right: 20px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: none;
    background: transparent;

    color: #111;
    font-size: 36px;
    line-height: 1;

    cursor: pointer;
}

/* Campo */
.header-search-field {
    display: flex;
    align-items: stretch;

    border: 1px solid #d7d7d7;
    border-radius: 8px;
    overflow: hidden;
}

.header-search-field input {
    flex: 1;
    min-width: 0;

    padding: 16px 18px;

    border: none;
    outline: none;

    color: #222;
    background: #fff;
    font-size: 16px;
}

.header-search-submit {
    width: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: var(--primary-blue, #0032ff);
    color: #fff;

    cursor: pointer;
    transition: opacity 0.25s ease;
}

.header-search-submit:hover {
    opacity: 0.85;
}

/* Filtros */
.header-search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 20px;
}

.header-search-filter {
    cursor: pointer;
}

.header-search-filter input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.header-search-filter span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 105px;
    padding: 10px 18px;

    border: 1px solid #d7d7d7;
    border-radius: 999px;

    color: #333;
    background: #fff;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.header-search-filter input:checked+span {
    color: #fff;
    background: var(--primary-blue, #0032ff);
    border-color: var(--primary-blue, #0032ff);
}

body.search-modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .header-search-modal {
        padding-top: 80px;
    }

    .header-search-container {
        padding: 40px 20px 30px;
    }

    .header-search-filters {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .header-search-filter span {
        width: 100%;
        min-width: 0;
        padding: 10px 8px;
    }
}

.search-results-page {
    padding-top: 120px;
    background: #f7f7f7;
}

.search-results-header {
    padding: 60px 0 40px;
    background: #fff;
}

.search-results-header h1 {
    margin: 8px 0 12px;
    color: #151515;
    font-size: clamp(30px, 4vw, 52px);
}

.search-results-type {
    margin: 0;
    color: var(--primary-blue, #0032ff);
    font-weight: 700;
    text-transform: uppercase;
}

.search-results-content {
    padding: 60px 0 90px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.search-result-card {
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.search-result-card>a {
    display: block;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.search-result-image {
    height: 220px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.search-result-card:hover .search-result-image img {
    transform: scale(1.04);
}

.search-result-content {
    padding: 25px;
}

.search-result-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--primary-blue, #0032ff);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.search-result-content h2 {
    margin: 0 0 15px;
    color: #151515;
    font-size: 24px;
}

.search-result-content p {
    color: #666;
    line-height: 1.6;
}

.search-result-link {
    display: inline-block;
    margin-top: 12px;

    color: var(--primary-blue, #0032ff);
    font-weight: 700;
}

.search-results-pagination {
    margin-top: 50px;
}

.search-results-pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.search-results-pagination .page-numbers {
    min-width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border-radius: 6px;
    background: #fff;
    color: #222;

    text-decoration: none;
}

.search-results-pagination .page-numbers.current {
    background: var(--primary-blue, #0032ff);
    color: #fff;
}

.search-no-results {
    padding: 60px 30px;
    background: #fff;
    border-radius: 14px;
    text-align: center;
}

@media (max-width: 992px) {
    .search-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .search-results-page {
        padding-top: 80px;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    position: relative;
}

.hero-about {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    inset: 0;
    opacity: 60%;
}

.hero-overlay-blue {
    position: absolute;
    background: #000578;
    inset: 0;
    opacity: 60%;
}

/* Overlay azul */
.hero-overlay-blue-orion {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(18, 12, 100, 0.76) 0%,
            rgba(25, 17, 125, 0.56) 48%,
            rgba(20, 14, 110, 0.42) 100%);
}

.hero-overlay-black {
    position: absolute;
    background: black;
    inset: 0;
    opacity: 70%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    align-items: center;
    color: white;
    max-width: 600px;
    padding: 0 1.5rem;
}

.hero-links {
    position: relative;
    z-index: 10;
    align-items: center;
    justify-content: left;
    color: white;
    max-width: 45rem;
    padding: 0.5rem 1.5rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 100%;
    z-index: -1;
}

.hero-video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    inset: 0;
}

.hero-video-investidores {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* fade escuro por cima do vídeo */
.hero-video-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 1;
    pointer-events: none;
}

.video-fundo {
    position: absolute;
    width: 100%;
    max-height: 120%;
    object-fit: cover;
    opacity: 100%;
    z-index: -1;
}

.hero-estamos {
    position: absolute;
    justify-content: center;
    /* object-fit: cover; */
    z-index: -1;

}

.hero-title {
    font-family: var(--font-primary2);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-title-news {
    font-family: var(--font-primary2);
    font-size: 26px;

    line-height: 1.3;
}

.hero-toptitle {
    font-size: 2.6rem;
    line-height: 1.1;
    font-family: var(--font-primary3);
    margin-bottom: -0.5rem;
}

.hero-subtitle-esg {
    font-size: 2rem;
    line-height: 1.1;
    font-family: var(--font-primary3);
    font-weight: 600;
    margin-bottom: -0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;

}

.hero-controls {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 3;
}

.hero-prev,
.hero-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color var(--transition-normal);
}

.hero-prev:hover,
.hero-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-indicators {
    display: flex;
    gap: var(--spacing-xs);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.indicator.active {
    background-color: var(--white);
}

/* .hero-case {
    width: 100%;
    height: 28vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    position: fixed;
    z-index: 20;
} */

.hero-case {
    width: 100%;
    height: 28vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    position: relative;
    z-index: 20;
}

.section-gray {
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-100);
}

.section-white {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.section-dark-blue {
    padding: 80px 0;
    background-color: #000578;
}

/* About Section */
.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--gray-600);
}

.section-video-about {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: start;
    justify-content: right;
    position: relative;
}

.video-about {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 100%;
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.stats-grid-second {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));

}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary2);
    font-size: 3rem;
    font-weight: 800;
    /*color: var(--primary-blue-dark);*/
    background: linear-gradient(90deg,
            var(--primary-blue) 0%,
            var(--primary-blue-light) 50%,
            var(--primary-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--spacing-xs);
}

.stat-number::after {
    content: '+';
}

.stat-number-white {
    font-family: var(--font-primary2);
    font-size: 3rem;
    font-weight: 550;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.stat-number-white::after {
    content: '+';
}

.stat-number-simple {
    font-family: var(--font-primary2);
    font-size: 3rem;
    font-weight: 550;
    /*color: white; */
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(90deg,
            var(--primary-blue) 0%,
            var(--primary-blue-light) 50%,
            var(--primary-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--spacing-xs);

}

.stat-number-simple-plus {
    font-family: var(--font-primary2);
    font-size: 3rem;
    font-weight: 550;
    /*color: white; */
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(90deg,
            var(--primary-blue) 0%,
            var(--primary-blue-light) 50%,
            var(--primary-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--spacing-xs);

}

.stat-number-simple-plus::after {
    content: '+';
}

.stat-label {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.service-title {
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.service-link:hover {
    color: #ea580c;
}

/* TECHLAB Section */
.techlab-section {
    padding: 12rem;
    color: var(--white);
}

.techlab-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 200px;
    align-items: center;
    justify-items: center;
}

.techlab-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.techlab-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    padding-top: 20px;
    text-align: justify;
}

.techlab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 25px;
    padding-top: 40px;
    padding-bottom: 40px;

}

.techlab-image {
    width: 350px;
    height: auto;
    display: block;
    border-radius: 3rem;
}

.grid-valores {
    display: grid;
    grid-template-columns: repeat(2, 1.5fr);
    grid-template-rows: repeat(4, 1fr);
}

.grid-valor-item {
    display: grid;
    grid-template-columns: 0.5fr 2fr;
    padding-right: 15px;
}

.valor-item-image img {
    width: 32px;
    height: auto;
}



/* Cases Section */
.hero-cases-grid {
    display: grid;
    align-items: center;
    /* justify-content: center; */
    grid-template-columns: repeat(10, 1fr);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px 0px 30px;
}

.hero-cases-grid-item {
    overflow: hidden;
}

.hero-cases-grid-item img {
    width: auto;
    height: 120vh;
    object-fit: cover;
}

/* Barra de busca */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    min-width: 600px;
    padding: 16px 20px 16px 20px;
    font-size: 14px;
    border: 2px solid #0052cc;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    background-color: white;
    color: #333;
}

.search-input::placeholder {
    color: #999;
    font-size: 16px;
}

.search-input:focus {
    border-color: #0052cc;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.search-icon {
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.search-input:focus~.search-icon {
    color: #0052cc;
}

.search-icon:hover {
    color: #0052cc;
}

#cases-results-wrapper {
    transition: opacity 0.3s ease;
}

#cases-results-wrapper.is-loading {
    opacity: 0.4;
    pointer-events: none;
}

/* SVG do ícone de lupa */
.search-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Listas de cases */
.case-container {
    padding: 20px 0 20px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: var(--spacing-sm);
}

.cases-grid a {
    text-decoration: none;
}

.case-card {
    position: relative;
    justify-items: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.case-card:hover {
    transform: translateY(-8px);
}

.case-card-overlay {
    position: absolute;
    top: 10px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.titulo-case-card {
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 1.3;
}

.linha-titulo {
    display: block;
    width: 100%;
    height: 20px;
    margin-top: 4px;
}

.case-card-img {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow-lg);
}

.case-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* fade escuro por cima da imagem */
.case-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.descricao-servicos {
    color: rgb(101 100 100);
    font-size: 12px;
    justify-self: left;
    display: inherit;
}

/* Veja mais */
.more {
    display: block;
    text-align: right;
    font-family: var(--font-secondary);
    color: var(--primary-blue);
    font-size: 12px;
    text-decoration: none;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.more:hover {
    text-decoration: underline;
}

.case-info-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.case-info-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.col-3-4 {
    grid-column: 3 / span 2;
}

.case-cabecalho {
    margin-bottom: 10px;
    text-align: left;
    padding: 15px;
    border-style: solid;
    border-width: 1px;
    border-color: #c7d9fa;
    border-radius: 10px;
}

.case-details {
    justify-items: center;
    margin-top: 80px;
}

.case-details img {
    min-width: 500px;
    max-width: 700px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
}

.case-details p {
    font-size: 16px;
    color: #374151;
    text-align: justify;
    line-height: 1.6;
    max-width: 700px;
    text-align: justify;
}

.case-details video {
    min-width: 500px;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    margin-top: 50px;
}

.pagination-cases {
    margin-top: 50px;
    text-align: center;
}

.pagination-cases ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-cases li a,
.pagination-cases li span {
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-cases li a:hover {
    background-color: #0032ff;
    color: #fff;
    border-color: #0032ff;
}

.pagination-cases li .current {
    background-color: #0032ff;
    color: #fff;
    border-color: #0032ff;
}

/* Container dos Cards */
.cards-container {
    display: flex;
    gap: 5px;
    height: 500px;
    justify-content: center;
    /* width: 1200;  */
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    margin: 50px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);  */
}

/* Card Base - Implementação da Animação ZoomTech */
.acordeao-box {
    position: relative;
    max-width: 150px;
    height: 100%;
    /* transition: max-width 0.5s ease; */
    overflow: hidden;
    cursor: pointer;
    display: flex;
    background-size: cover;
    background-position: center;
}

.acordeao-box.acordeao-ativo {
    max-width: 750px;
}

/* Conteúdo Principal do Card */
.card-main-content {
    position: relative;
    width: 150px;
    /*  height: 100%; */
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 32px;
    color: white;
    z-index: 2;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.card-main-content::before {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8), rgba(59, 130, 246, 0.6));
    z-index: -1;
}

.card-icon {
    width: 32px;
    height: 32px;
    fill: white;
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-card);
    font-size: 1.2rem;
    font-weight: 550;
    margin-bottom: 8px;
}

/* Painel Expandido */
.card-expanded-content {
    width: 450px;
    height: 100%;
    font-size: 0.9rem;
    background: var(--gray-50);
    justify-content: center;
    text-align: left;
    padding: 24px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    /* transform: translateX(-20px);
    transition: all 0.3s ease 0.2s; */
    border-radius: 20px;
}

.acordeao-ativo .card-expanded-content {
    opacity: 1;
    transform: translateX(0);
}

.expanded-icon {
    width: 24px;
    height: 24px;
    fill: #6B46C1;
}

/* TESTES - NOSSA HISTORIA */
/* Container dos Cards */
.cards-container-secundary {
    display: flex;
    gap: 25px;
    height: 500px;
    justify-content: center;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    margin: 50px;

}

/* Card Base - Implementação da Animação ZoomTech */
.acordeao-box-secundary {
    position: relative;
    max-width: 250px;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    background-size: cover;
    background-position: center;
}

.acordeao-box-secundary.acordeao-ativo-secundary {
    max-width: 750px;
}

/* Conteúdo Principal do Card */
.card-main-content-secundary {
    position: relative;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    padding: 20px 32px;
    color: white;
    z-index: 2;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.card-main-content-secundary::before {
    content: '';
    width: 250px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8), rgba(59, 130, 246, 0.6));
    z-index: -1;
}

/* Painel Expandido */
.card-expanded-content-secundary {
    width: 300px;
    height: 100%;
    font-size: 0.9rem;
    background: var(--gray-50);
    justify-content: center;
    text-align: left;
    padding: 24px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    border-radius: 20px;
}

.acordeao-ativo-secundary .card-expanded-content-secundary {
    opacity: 1;
    transform: translateX(0);
}

.card-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* TESTES NOSSA HISTÓRIA  */


.subcategories {
    list-style: none;
}

.subcategory-item {
    margin-bottom: 12px;
}

.subcategory-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #374151;
    background: rgba(243, 244, 246, 0.5);
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.subcategory-link:hover {
    background: rgba(243, 244, 246, 0.8);
    transform: translateX(4px);
    color: #1f2937;
}

.subcategory-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Seção de clientes */
.clientes-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

/* Configuração do Swiper */
.clientes-swiper {
    width: 100%;
    padding-bottom: 60px;
}

/* Grid de clientes - 2 linhas x 6 colunas */
.clientes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
    align-items: center;
    justify-items: center;
}

/* Item individual do cliente */
.cliente-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: transparent;
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 120px;
}

.cliente-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.1), transparent); */
    transition: left 0.6s ease;
}

/* Logo do cliente */
.cliente-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.7); */
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

/* Animações hover */
.cliente-item:hover {
    transform: translateY(-8px) scale(1.05);
    /* box-shadow: 0 12px 30px rgba(108, 92, 231, 0.2);
    background: linear-gradient(135deg, #ffffff, #f8f9ff); */
}

.cliente-item:hover::before {
    left: 100%;
}

.cliente-item:hover .cliente-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Paginação personalizada */
.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #ddd;
    opacity: 1;
    margin: 0 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
}

.swiper-pagination-bullet:hover {
    background: #6c5ce7;
    transform: scale(1.1);
}


/* Animação de entrada */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}  */

.cliente-item {
    animation: fadeInUp 0.6s ease forwards;
}

.cliente-item:nth-child(1) {
    animation-delay: 0.1s;
}

.cliente-item:nth-child(2) {
    animation-delay: 0.2s;
}

.cliente-item:nth-child(3) {
    animation-delay: 0.3s;
}

.cliente-item:nth-child(4) {
    animation-delay: 0.4s;
}

.cliente-item:nth-child(5) {
    animation-delay: 0.5s;
}

.cliente-item:nth-child(6) {
    animation-delay: 0.6s;
}

.cliente-item:nth-child(7) {
    animation-delay: 0.7s;
}

.cliente-item:nth-child(8) {
    animation-delay: 0.8s;
}

.cliente-item:nth-child(9) {
    animation-delay: 0.9s;
}

.cliente-item:nth-child(10) {
    animation-delay: 1.0s;
}

.cliente-item:nth-child(11) {
    animation-delay: 1.1s;
}

.cliente-item:nth-child(12) {
    animation-delay: 1.2s;
}

.atuamos-section {
    padding: 80px 0;
    background-color: var(--gray-100);
    text-align: center;
}

.atuamos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px 10px;
    padding: 20px 0px;
    align-items: center;
    justify-items: center;
}

/* Item individual do cliente */
.atuamos-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.381);

}

/* Fade preto */
.atuamos-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.55) 35%,
            rgba(0, 0, 0, 0) 75%);
    z-index: 1;
    pointer-events: none;
}

.atuamos-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
}

/* Logo do cliente */
.atuamos-logo {
    max-width: 240px;
    max-height: 180px;
    object-fit: contain;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.381);
    z-index: 0;
    opacity: 100%;
}

/* Logo do cliente */
.atuamos-logo-title {
    font-family: var(--font-primary4);
    color: white;
    position: absolute;
    z-index: 2;
    text-align: center;
    bottom: 5px;
    color: white;
}

/* Animações hover */
.atuamos-item:hover {
    transform: translateY(-8px);
}

.atuamos-item:hover::before {
    left: 100%;
}

.item-texto {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    align-content: center;
    background-color: var(--gray-200);
    transform: translateY(130%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    font-size: 14px;

}

.atuamos-item:hover .item-texto {
    transform: translateY(0);
}

/* Indicadores coloridos */
.green {
    background-color: #10B981;
}

.blue {
    background-color: #3B82F6;
}

.yellow {
    background-color: #F59E0B;
}

.purple {
    background-color: #8B5CF6;
}

/* Bordas coloridas nos links */
.subcategory-link.green:hover {
    border-left-color: #10B981;
}

.subcategory-link.blue:hover {
    border-left-color: #3B82F6;
}

.subcategory-link.yellow:hover {
    border-left-color: #F59E0B;
}

.subcategory-link.purple:hover {
    border-left-color: #8B5CF6;
}

/* Backgrounds dos cards */
.card0 {
    background-image: linear-gradient(135deg, rgba(16, 34, 199, 0.5)), url('assets/estudos_viabilidade.jpg');
    background-size: cover;
    background-position: center;
}

.card1 {
    background-image: linear-gradient(135deg, rgba(16, 34, 199, 0.5)), url('assets/supervisao.jpg');
    background-size: cover;
    background-position: center;
}

.card2 {
    background-image: linear-gradient(135deg, rgba(16, 34, 199, 0.5)), url('assets/modelagem.jpg');
    background-size: cover;
    background-position: center;
}

.card3 {
    background-image: linear-gradient(135deg, rgba(16, 34, 199, 0.5)), url('assets/projetos.jpg');
    background-size: cover;
    background-position: center;
}

.card4 {
    background-image: linear-gradient(135deg, rgba(16, 34, 199, 0.5)), url('assets/gerenciamento.jpg');
    background-size: cover;
    background-position: center;
}

.card5 {
    background-image: linear-gradient(135deg, rgba(16, 34, 199, 0.5)), url('assets/outros_servicos.jpg');
    background-size: cover;
    background-position: center;
}

/* Responsividade */
@media (max-width: 767px) {
    .cards-container {
        flex-direction: column;
        height: auto;
    }

    .acordeao-box {
        max-width: 100%;
        height: 200px;
    }

    .acordeao-box.acordeao-ativo {
        max-width: 100%;
        height: 400px;
    }

    .card-expanded-content {
        width: 100%;
        padding: 24px;
    }

    .section-title {
        font-size: 2rem;
    }

    .clients-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .client-logo {
        max-width: 180px;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%) opacity(0.7);
        transition: all 0.3s ease;
    }
}

/* Animação de entrada */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.acordeao-box {
    animation: slideInUp 0.6s ease forwards;
}

.acordeao-box:nth-child(1) {
    animation-delay: 0.1s;
}

.acordeao-box:nth-child(2) {
    animation-delay: 0.2s;
}

.acordeao-box:nth-child(3) {
    animation-delay: 0.3s;
}

.acordeao-box:nth-child(4) {
    animation-delay: 0.4s;
}

/* News Section */
.news {
    padding: var(--spacing-3xl) 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));

    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: var(--spacing-md);
}

.news-meta {
    display: inline-flex;
    gap: var(--spacing-sm);
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.news-category {
    background-color: hsla(228, 100%, 50%, 0.20);
    color: var(--black);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.6rem;
    font-weight: 600;
}

.news-date {
    color: var(--gray-600);
    font-size: 0.7rem;
}

.news-title {
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.news-excerpt {
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
}

.news-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.news-link:hover {
    color: #ea580c;
}

.news-cta {
    text-align: center;
}

.pagination-news {
    margin-top: 50px;
    text-align: center;
}

.pagination-news ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-news li a,
.pagination-news li span {
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.pagination-news li .current {
    background: #333;
    color: #fff;
    border-color: #333;
}

#news-results-wrapper {
    position: relative;
    transition: opacity 0.25s ease;
}

#news-results-wrapper.is-loading {
    opacity: 0.45;
    pointer-events: none;
}

.search-icon {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.search-feedback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.clear-news-filters {
    color: var(--primary-blue);
    text-decoration: underline;
    cursor: pointer;
}

.no-news-results {
    grid-column: 1 / -1;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
}


/* CERTIFICATIONS section */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    padding-top: 50px;
}

.cert-content {
    padding: var(--spacing-xs) var(--spacing-md);
    display: flex;
    justify-content: center;
}

.cert-title {
    font-family: var(--font-primary4);
    font-weight: 500;
    color: var(--primary-blue-dark);
    text-align: center;
    margin-bottom: 0;
}


.cert-image-top {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
}

.cert-image-top img {
    max-width: 110px;
    max-height: 100px;
    transition: transform var(--transition-normal);
}

.cert-image {
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cert-image img {
    max-height: 320px;
    width: auto;
    transition: transform var(--transition-normal);
}

.thumbnail {
    width: 200px;
    /* tamanho pequeno */
    cursor: pointer;
    transition: 0.3s;
}

.thumbnail:hover {
    opacity: 0.8;
}

/* Fundo escuro */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Imagem grande */
.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}

/* Botão de fechar */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* PREMIAÇÕES */


.premi-content {
    padding: var(--spacing-xs);
    /*     display: flex; */
    justify-content: center;
    align-content: center;
    box-shadow: var(--shadow-lg);
}

.premi-text {
    padding: var(--spacing-sm);
    /* color: var(--primary-blue-dark);  */
    text-align: center;
    margin-bottom: 0;
}

.premi-image {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}

.premi-image img {
    width: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

/* PREMIAÇÕES - SLIDER */

.premiacoes-slider-wrapper {
    width: 100%;
    position: relative;
    padding: 40px 0 70px;
    overflow: hidden;
}

.premiacoes-swiper,
.bastidores-swiper {
    width: 100%;
    padding: 20px 0 70px;
    overflow: visible;
}

.premiacoes-swiper .swiper-wrapper,
.bastidores-swiper .swiper-wrapper {
    align-items: center;
}

.premiacoes-swiper .swiper-slide,
.bastidores-swiper .swiper-slide {
    width: 260px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.premi-card {
    width: 250px;
    height: auto;
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}



.bastidores-swiper .premi-card {
    height: 450px;
}

/* Card central em destaque */
.premiacoes-swiper .swiper-slide-active .premi-card,
.bastidores-swiper .swiper-slide-active .premi-card {
    transform: scale(1.12);
}

/* Cards laterais um pouco menores */
.premiacoes-swiper .swiper-slide-prev .premi-card,
.premiacoes-swiper .swiper-slide-next .premi-card,
.bastidores-swiper .swiper-slide-prev .premi-card,
.bastidores-swiper .swiper-slide-next .premi-card {
    transform: scale(0.95);
}

.bastidores-swiper .swiper-slide-prev .premi-card,
.bastidores-swiper .swiper-slide-next .premi-card {
    opacity: 0.8;
    pointer-events: none;
}

/* Cards mais distantes */
.premiacoes-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .premi-card,
.bastidores-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .premi-card {
    transform: scale(0.82);
    opacity: 0.85;
}

.bastidores-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .premi-card {
    pointer-events: none;
}

.bastidores-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .premi-card video {
    opacity: 0.6;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.45),
        0 5px 15px rgba(0, 0, 0, 0.25);
}

.premi-image-top {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.premi-image-top video {
    height: 100%;
    object-fit: cover;
}

.premi-content {
    padding: var(--spacing-xs) var(--spacing-md);
    display: flex;
    justify-content: center;
    text-align: center;
}

.premi-content p {
    font-size: 12px;
    margin-bottom: 50px;
    color: #333;
}

/* Setas */
.premiacoes-button-prev,
.premiacoes-button-next {
    width: 34px;
    height: 34px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    top: 45%;
}

.premiacoes-button-prev::after,
.premiacoes-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.premiacoes-button-prev {
    left: 10px;
}

.premiacoes-button-next {
    right: 10px;
}

/* Paginação */
.premiacoes-pagination {
    bottom: 10px !important;
}

.premiacoes-pagination .swiper-pagination-bullet {
    width: 55px;
    height: 4px;
    border-radius: 10px;
    background: #9bbcff;
    opacity: 1;
}

.premiacoes-pagination .swiper-pagination-bullet-active {
    background: #007bff;
}

/* Responsivo */
@media (max-width: 767px) {
    .premiacoes-swiper .swiper-slide {
        width: 240px;
    }

    .premi-card {
        width: 230px;
        min-height: 340px;
    }

    .premiacoes-swiper .swiper-slide-active .premi-card {
        transform: scale(1.03);
    }

    .premiacoes-button-prev,
    .premiacoes-button-next {
        display: none;
    }
}

/* ESG Section */
.esg {
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-100);
}

.esg-content {
    text-align: center;
}

.esg-description {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--gray-600);
}

.esg-item {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal);
}

.esg-item:hover {
    transform: translateY(-4px);
}

.esg-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.esg-title {
    color: var(--black);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.esg-sections-titles {
    color: var(--primary-blue);
    max-width: 500px;
    margin-bottom: 3rem;
    justify-content: center;

}

.esg-text {
    color: var(--gray-600);
}

.image-gallery {
    position: absolute;
    right: 0;
    width: 500px;
    height: 100%;
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.gallery-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-image.active {
    opacity: 1;
}

.content-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
    align-items: center;
    justify-items: center;
}

.content-column-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-top: 70px;
}

.content-column-3 {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1.2fr;
    align-items: center;
    justify-items: left;
}

.esg-video {
    width: 250px;
    height: auto;
    display: block;
    border-radius: 3rem;
    box-shadow: var(--shadow-lg);
}

.esg-card {
    background: linear-gradient(#f7f7f7, #f7f7f7) padding-box, linear-gradient(90deg, #27b7f5, #3846b8) border-box;
    color: var(--black);
    border: 3px solid transparent;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    margin: 50px 0px 50px;
}

.section-diversidade {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(70deg,
            blue 0%,
            blue 45%,
            #F4F4F4 45%,
            #F4F4F4 100%);
}

.grid-2-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
    justify-items: center;
}

.grid-4-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
    justify-items: center;
}


/* Wrapper para as colunas de animação */
.instituicoes-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 20px;
    margin-left: 20px;
    height: 600px;
    overflow: hidden;
    position: relative;
}

/* Container com scroll infinito */
.instituicoes-scroll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scroll-up 30s linear infinite;
}

.instituicoes-column:nth-child(2) .instituicoes-scroll {
    animation: scroll-down 30s linear infinite;
}

/* Animação para rolar para cima */
@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Animação para rolar para baixo */
@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Estilos dos cards */
.instituicoes-item {
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 150px;
    flex-shrink: 0;

    background: linear-gradient(#f7f7f7, #f7f7f7) padding-box, linear-gradient(90deg, #27b7f5, #3846b8) border-box;
    color: var(--black);
    border: 3px solid transparent;

}

.instituicoes-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Animações hover */
.instituicoes-item:hover {
    transform: translateY(-8px) scale(1.05);
    /* box-shadow: 0 12px 30px rgba(108, 92, 231, 0.2);
    background: linear-gradient(135deg, #ffffff, #f8f9ff); */
}

.instituicoes-item:hover::before {
    left: 100%;
}

.instituicoes-item:hover .cliente-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 767px) {
    .content-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .instituicoes-column {
        height: 400px;
    }

    .instituicoes-logo {
        width: 120px;
        height: 120px;
    }

    .text-content h2 {
        font-size: 24px;
    }

    .text-content p {
        font-size: 13px;
    }
}

.section-governanca {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(110deg,
            var(--primary-blue-dark) 0%,
            var(--primary-blue-dark) 45%,
            #F4F4F4 45%,
            #F4F4F4 100%);
}

/* Linha vertical central */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: black;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    opacity: 0;
}

/* Items da direita (índice par) */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Items da esquerda (índice ímpar) */
.timeline-item:nth-child(odd) {
    flex-direction: row;
}

/* Conteúdo do item */
.timeline-content {
    width: 30%;
}

.timeline-content h3 {
    color: #0052cc;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: black;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

/* Imagem dentro do conteúdo */
.timeline-image {
    width: 100%;
    height: 200px;
    max-width: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-lg);
}

/* Círculo central */
.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    /* border: 4px solid white; */
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    /* box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.2); */
}

/* Ano/Data */
.timeline-year-right {
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 4;
    margin-top: -35px;
}

.timeline-year-right-back {
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-100);
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 3;
    margin-top: -35px;
}

/* Ano/Data */
.timeline-year-left {
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 4;
    margin-top: -35px;
}

.timeline-year-left-back {
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-100);
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 3;
    margin-top: -35px;
}

.instituicoes-swiper {
    width: 100%;
    padding: 20px 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instituicao-item {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instituicao-logo {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
}

/* Animações de entrada */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animações */
.timeline-item.animate-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.timeline-item.animate-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

/* Responsividade para tablets */
@media (max-width: 767px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 60px;
    }

    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-content {
        width: 100%;
        margin-left: 80px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
        margin-top: 0;
        margin-bottom: 10px;
    }

    .timeline-item.animate-right,
    .timeline-item.animate-left {
        animation: slideInRight 0.8s ease-out forwards;
    }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    .timeline-title {
        font-size: 1.8rem;
        margin-bottom: 60px;
    }

    .timeline-content {
        padding: 20px;
        margin-left: 60px;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        left: 22px;
    }

    .timeline-line {
        left: 22px;
        top: 100px;
    }

    .timeline-year {
        left: 22px;
        font-size: 1rem;
        padding: 3px 10px;
    }


    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

.fade-overlay-bottom-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1.5));
    pointer-events: none;
}

.fade-overlay-bottom {
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1.5));
    pointer-events: none;
}

.fade-overlay-top {
    height: 100px;
    background: linear-gradient(to top, transparent, rgba(0, 0, 0, 1.5));
    pointer-events: none;
}

.back-blue {
    /* padding: var(--spacing-3xl) 0; */
    background: linear-gradient(var(--primary-blue-dark) 50%, var(--black));
    color: var(--white);
}

.back-black {
    /* padding: var(--spacing-3xl) 0; */
    background: linear-gradient(var(--black), #474f5b 50%, var(--black));
    color: var(--white);
}

.techlab-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 50px;
}

.techlab-grid a {
    text-decoration: none;
}

.techlab-card {
    position: relative;
    justify-items: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.techlab-card:hover {
    transform: translateY(-8px);
}

.techlab-card-proj {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 330px;
    height: 330px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.techlab-card-img {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow-lg);
}

.techlab-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.grid-row {
    display: grid;
    grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
    margin-bottom: 50px;
}

.techlab-valor-item {
    display: grid;
    grid-template-columns: 0.5fr 2fr;
    padding-right: 15px;
}

.techlab-item-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.techlab-item-image img {
    width: 70px;
    height: 70px;
}

/* ORION SCETION*/

/* Conteúdo */
.hero-about-orion {
    position: absolute;
    left: 12%;
    bottom: 18%;
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: min(600px, 75%);
    color: white;
}

.hero-orion-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background-color: #111;
}

.hero-orion-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Imagem do banner */
.hero-orion-image {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.orion-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.orion-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background-color: rgba(0, 5, 120, 0.55);
    pointer-events: none;
}

.orion-logo {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.orion-title {
    max-width: 580px;
    margin: 0;
    font color: white;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

/* Botões laterais */
.hero-orion-button {
    position: absolute;
    top: 50%;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    padding: 0;
    border: none;
    border-radius: 50%;

    background-color: white;
    color: #1638ff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
    transform: translateY(-50%);
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.hero-orion-button:hover {
    background-color: #1638ff;
    color: white;
    transform: translateY(-50%) scale(1.08);
}

.hero-orion-button-prev {
    left: 5%;
}

.hero-orion-button-next {
    right: 5%;
}

/* Remove as setas padrão caso alguma classe do Swiper interfira */
.hero-orion-button::after {
    display: none;
}

/* Paginação */
.hero-orion-pagination {
    z-index: 20;
    bottom: 30px !important;
}

.hero-orion-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: white;
    opacity: 0.55;
}

.hero-orion-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 10px;
    opacity: 1;
}

/* Zoom da imagem no slide ativo */
.hero-orion-slide.swiper-slide-active .hero-orion-image {
    animation: heroImageZoom 7s ease-out forwards;
}

/* Conteúdo inicialmente escondido */
.hero-orion-slide .hero-about-orion {
    opacity: 0;
    visibility: hidden;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease 0.25s,
        transform 0.8s ease 0.25s,
        visibility 0s linear 0.25s;
}

/* Conteúdo do slide ativo */
.hero-orion-slide.swiper-slide-active .hero-about-orion {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
        opacity 0.8s ease 0.25s,
        transform 0.8s ease 0.25s,
        visibility 0s;
}

.grid-item {
    padding: 20px 50px;
    border-bottom: 2px solid #E6EAF5;
}

.grid-title {
    font-family: var(--font-primary2);
    font-weight: 700;
    background: linear-gradient(90deg,
            var(--primary-blue) 0%,
            var(--primary-blue-light) 50%,
            var(--primary-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0px;
    text-align: left;
}

.grid-text {
    color: gray;
    text-align: justify;
}

.partnership {
    position: relative;
    width: 600px;
    margin: 0 auto;
}

.partnership__logos {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    transform: translateY(20%);
}

.partnership__logos img {
    width: 450px;
}

.partnership__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin-top: -40px;
    margin-bottom: 30px;
    border-radius: 30px;
}

/* Footer */
.footer {
    background-color: black;
    color: var(--white);

}

.footer-mosaic {
    width: 100%;
    height: 70px;

    background-repeat: repeat-x;
    background-position: top left;
    background-size: auto 70px;

    margin-bottom: var(--spacing-3xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 350px repeat(auto-fit, minmax(50px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo-img {
    height: 40px;
    margin-bottom: var(--spacing-md);
}

.footer-logo-selo {
    height: 180px;

}

.footer-description {
    color: white;
}

.social-links {
    display: flex;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color var(--transition-normal);
}

.social-link:hover {
    background-color: var(--primary-blue);
}

.footer-title {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--white);
    font-family: var(--font-primary);
    text-decoration: none;
    font-size: 0.9rem;

    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-where {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 750;
    margin-bottom: var(--spacing-xs);
}

.contact-item p,
.contact-item a {
    color: var(--white);
    font-size: 0.8rem;
    line-height: 1.5;
    text-decoration: none;
    padding: 10px 0 20px;
}

.contact-item a:hover {
    text-decoration: underline;
}

.newsletter-text {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.newsletter-input {
    padding: 0.75rem;
    border: 1px solid var(--gray-600);
    border-radius: var(--radius-sm);
    background-color: var(--gray-900);
    color: var(--white);
    font-family: var(--font-secondary);
}

.newsletter-input::placeholder {
    color: var(--gray-600);
}

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: var(--spacing-lg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.copyright {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .techlab-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contact-info {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* .hero {
        margin-top: 70px;
    } */

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 var(--spacing-sm);
        text-align: center;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .services-grid,
    .cases-grid,

    .esg-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-content>* {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-mission {
    animation-delay: 0.6s;
}

.hero-buttons {
    animation-delay: 0.8s;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}


.gallery-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    user-select: none;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    cursor: grab;
    transform-style: preserve-3d;
    /* Importante para o efeito 3D */
}

.gallery-track:active {
    cursor: grabbing;
}

/* Estilo das Imagens */
.gallery-track img {
    position: absolute;
    width: 250px;
    height: 350px;
    object-fit: cover;
    /* Garante que a imagem preencha o card sem distorcer */
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-speed) var(--ease-out-back);
    /* Inicialmente escondido */
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

/* Estados de Posição */
.gallery-track img.active {
    z-index: 30;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    filter: brightness(1);
    /* Imagem central brilhante */
}

.gallery-track img.prev {
    z-index: 10;
    opacity: 0.6;
    transform: translateX(-40%) scale(0.8);
    filter: brightness(0.5);
    /* Imagem lateral mais escura */
}

.gallery-track img.next {
    z-index: 10;
    opacity: 0.6;
    transform: translateX(40%) scale(0.8);
    filter: brightness(0.5);
    /* Imagem lateral mais escura */
}

/* Paginação */
.pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 40;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background-color: #60a5fa;
    width: 24px;
    border-radius: 12px;
}

.date-selector {
    flex-shrink: 0;
}

.date-selector select {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    background-color: white;
    color: #666;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.date-selector select:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.date-selector select:focus {
    outline: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Seção de Carrossel */
.carousel-section {
    margin-bottom: 80px;
}

.carousel-section:last-child {
    margin-bottom: 0;
}

.title-section-doc {
    font-size: 22px;
    margin-bottom: 20px;
    color: #504E4E;
}

/* Carrossel */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

/* Cartões de documento */
.document-card {
    flex: 0 0 150px;
    height: 200px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.document-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);

}

.document-card:hover .card-label,
.document-card:hover .doc-ico {
    color: var(--primary-blue);
}

.card-content {
    border-bottom: 1px solid #e8e8e8;
    align-content: center;
    padding: 10px;
}

.card-label {
    padding: 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: white;
}

.doc-ico {
    display: block;
    margin: 0 auto;
    width: 40px;
    height: auto;
    color: #bfbfbf;
}


/* Botões de navegação */
.nav-button {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background-color: transparent;
    color: #666;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
}

.nav-button:hover:not(:disabled) {
    /* background-color: #f5f5f5; */
    /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); */
    transform: scale(1.05);
    color: var(--primary-blue);
}

.nav-button:active:not(:disabled) {
    transform: scale(0.95);
}

.nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nav-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.no-files-message {
    margin-top: 24px;
    padding: 24px;
    color: #666;
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 767px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .header h1 {
        font-size: 24px;
    }

    .document-card {
        flex: 0 0 220px;
        height: 240px;
    }

    .carousel-wrapper {
        gap: 12px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 20px;
    }

    .document-card {
        flex: 0 0 180px;
        height: 200px;
    }

    .card-label {
        font-size: 14px;
        padding: 16px;
    }

    .nav-button {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* Animação de deslizamento suave */
@media (prefers-reduced-motion: reduce) {

    .carousel-track,
    .document-card,
    .nav-button {
        transition: none;
    }
}

.hero-content-pessoas-carreiras {
    display: flex;
    gap: var(--spacing-xl);
    z-index: 999;
    padding: 0 var(--spacing-2xl);
    width: 100vw;
    justify-content: space-evenly;
}

.hero-content-pessoas-carreiras .btn-primary-slim,
.hero-content-pessoas-carreiras .btn-primary-slim-white {
    font-size: 1.2rem
}

.hero-content-info {
    display: flex;
    flex-direction: column;
    color: var(--white);
    align-items: start;
}

.hero-content-info img {
    margin-bottom: var(--spacing-md);
    width: 45%;
}

.pessoas-carreiras-subtitulo {
    max-width: 450px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

.banner-image {
    border-radius: 14px;
    height: 100%;
    box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.8);
}

.pessoas-carreiras-cards {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.pessoas-carreiras-card {
    width: 260px;
    min-height: 330px;

    border: 3px solid #0A38FF;
    border-radius: 18px;

    padding: 40px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: #fff;

    transition: .3s;
}

.pessoas-carreiras-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.pessoas-carreiras-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;

    margin-bottom: 30px;
}

.pessoas-carreiras-card h3 {
    color: #0A38FF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;

    margin-bottom: 22px;
}

.pessoas-carreiras-card p {
    color: #707070;
    font-size: 20px;
    line-height: 1.5;
}

.pessoas-carreiras-video-institucional,
.pessoas-carreiras-video-institucional video {
    width: 100%;
}

.pessoas-carreiras-gptw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.pessoas-carreiras-gptw>div {
    display: grid;
    align-items: center;
    justify-content: space-between;
}

.pessoas-carreiras-gptw-info {
    flex: 0 0 430px;
}

.pessoas-carreiras-gptw-info h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #0057ff;
    margin-bottom: 40px;
    text-align: left;
}

.pessoas-carreiras-gptw-info p {
    font-size: 18px;
    line-height: 1.55;
    color: #4d4d4d;
    margin-bottom: 45px;
    text-align: justify;
}

.pessoas-carreiras-gptw-selos {
    display: flex;
    gap: 18px;
    align-items: center;
}

.pessoas-carreiras-gptw-selos img {
    height: 80px;
    width: auto;
}


.pessoas-carreiras-gptw-image img {
    width: 100%;
    display: block;
    border-radius: 30px;
    box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.8);
}

.pessoas-carreiras-gptw-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pessoas-carreiras-gptw-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    overflow: hidden;
    padding: 14px 18px 24px;
    transition: .3s;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .25);
    min-width: 200px;
    max-width: 300px;
    height: 100%;
}

.pessoas-carreiras-gptw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.pessoas-carreiras-gptw-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 18px;
}

.pessoas-carreiras-gptw-card h3 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1rem;
}

.pessoas-carreiras-gptw-card p {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.techlab-cta {
    position: relative;
}

.techlab-cta-background {
    position: relative;
    left: 0;
    width: 100%;
}

.techlab-cta-molduras {
    position: absolute;
    display: flex;
    top: 0;
    height: 100%;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: 0 24px;
}

.techlab-cta-moldura {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: -5px 5px 27.7px rgba(255, 255, 255, 0.21);
    border-radius: 24px;
    position: relative;
    height: 300px;
    width: 40vw;
}

.techlab-cta-moldura::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* espessura da borda */
    border-radius: inherit;

    background: linear-gradient(90deg,
            #0032FF 3%,
            #00AAFF 9%,
            #000578 34%,
            #0032FF 40%,
            #00AAFF 57%,
            #000578 81%,
            #00AAFF 98%);

    /* Faz o gradiente aparecer apenas na borda */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;

    pointer-events: none;
}

.techlab-cta-moldura>* {
    border-radius: 22px;
}

.techlab-cta-description p {
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: justify;
}


.gradient-text {
    background: linear-gradient(90deg, #0032FF 0%, #00AAFF 50%, #000578 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.gradient-text.first {
    background: linear-gradient(90deg, #0032FF 0%, #00AAFF 75%, #000578 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.gradient-text.second {
    background: linear-gradient(90deg, #0032FF 0%, #00AAFF 40%, #000578 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.gradient-text.third {
    background: linear-gradient(90deg, #0032FF 0%, #00AAFF 75%, #000578 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    text-shadow: none;
}

.gradient-text-bright {
    background: linear-gradient(90deg, #0032FF 0%, #00AAFF 50%, #0032FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}


.techlab-cta-content {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    padding-left: 5rem;
    width: 70%;
    gap: 1rem;
}

.techlab-cta-content img {
    width: 70%;
}

.techlab-cta-content button {
    width: 50%;
}

/* Centralização do conteúdo */
.programas-desenvolvimento {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}


/* Estilo do subtítulo */
.programas-desenvolvimento p {
    color: #4a4a4a;
    font-size: 16px;
    margin-bottom: 60px;
}

/* Container dos cards (Usando Grid para alinhar em 3 colunas) */
.programas-desenvolvimento-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Espaçamento entre os cards */
    padding: 0 20px;
}

/* Estilo individual de cada card */
.programas-desenvolvimento-card {
    background-color: #ffffff;
    border: 2px solid #0022aa;
    /* Azul da borda dos cards */
    border-radius: 12px;
    /* Arredondamento das pontas */
    display: flex;
    align-items: center;
    /* Centraliza a imagem verticalmente */
    justify-content: center;
    /* Centraliza a imagem horizontalmente */
    aspect-ratio: 1 / 1;
    /* Mantém o formato quadrado como na imagem */
    padding: 30px;
    transition: transform 0.3s ease;
    /* Efeito suave opcional */
    position: relative;
}

/* Efeito opcional: leve elevação ao passar o mouse */
.programas-desenvolvimento-card:hover {
    transform: translateY(-5px);
}

/* Comportamento das imagens dentro dos cards */
.programas-desenvolvimento-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centraliza perfeitamente */
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    opacity: 1;
    /* Totalmente visível */
    transition: opacity 0.4s ease;
    /* Transição suave da transparência */
}

/* Estilo do Texto interno (Oculto por padrão) */
.programas-desenvolvimento-card p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centraliza perfeitamente */
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    color: #666666;
    /* Cor do texto no hover */
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    opacity: 0;
    /* Invisível por padrão */
    transition: opacity 0.4s ease;
    margin: 0;
    /* Remove margens padrão do p */
}

/* Estado do card ao passar o mouse (Muda fundo e borda) */
.programas-desenvolvimento-card:hover {
    background-color: #f4f4f4;
    /* Cinza claro da imagem */
    border-color: #f4f4f4;
}

/* Esconde a imagem ao passar o mouse */
.programas-desenvolvimento-card:hover img {
    opacity: 0;
}

/* Mostra o texto ao passar o mouse */
.programas-desenvolvimento-card:hover p {
    opacity: 1;
}

/* --- Responsividade para Celulares e Tablets --- */
@media (max-width: 767px) {
    .programas-desenvolvimento-cards {
        grid-template-columns: 1fr;
        /* Muda para 1 coluna no celular */
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
}

.sondolovers-avaliacoes-cards {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: var(--spacing-3xl);
}

.sondolovers-avaliacao-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.section-blue {
    background: radial-gradient(circle at 50% 30%,
            #0032FF 0%,
            #000578 100%);
    width: 100%;
    text-align: center;
    padding: 40px;
    position: relative;
}

.section-blue h2 {
    color: var(--white);
}

.video-overlay-thumb {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: .3s;
}

.video-overlay-thumb:hover {
    background: rgba(0, 0, 0, .4);
}

.play-button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #000;

    transition: .3s;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #0032FF;
}

.video-overlay-thumb:hover .play-button {
    transform: scale(1.1);
}

.swiper-slide-active .play-button {
    opacity: 1;
}

.swiper-slide-active .video-overlay-thumb {
    pointer-events: auto;
}

.swiper-slide-active .video-wrapper-bastidores.playing video {
    height: auto;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bastidores-swiper .premi-card {
    background-color: #000;
}


.section-content {
    display: flex;
    gap: var(--spacing-3xl);
}

.section-content p {
    padding-bottom: var(--spacing-md);
}

.diferenciais-orion-img {
    width: 100%;
}

#news-page .hero-orion-slider.swiper {
    height: 80vh;
}
.page-noticias .hero-orion-slide a {
    width: 100%;
    height: 100%;
}

.page-noticias .hero-orion-slide a img {
    width: 100%;
    right: 0;
    position: absolute;
    inset: auto;
}

.page-noticias .hero-orion-slide a .hero-slide-content {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    left: 10%;
    z-index: 3;
}

.page-noticias .hero-orion-slide a .orion-title {
    color: #fff;
}

.page-noticias .hero-overlay-blue-orion {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(18, 12, 100, 0.96) 0%,
            rgba(25, 17, 125, 0.86) 48%,
            rgba(20, 14, 110, 0.42) 100%);
}

@keyframes slideInLeft {
    from {
        left: 100%;
        opacity: 0;
    }

    to {
        left: 20%;
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        left: 20%;
        opacity: 1;
    }

    to {
        left: 100%;
        opacity: 0;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .clientes-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 25px;
    }
}


@media (max-width: 480px) {
    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 15px;
    }

    .cliente-item {
        height: 80px;
        padding: 10px;
    }

    .cliente-logo {
        max-width: 100px;
        max-height: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Smartphones */
@media screen and (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
    }

    /* #menu-menu-principal {
        display: none;
    } */

    main {
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
    }

    .logo-img {
        height: 30px;
        width: 150px;
    }

    .header.scrolled .logo-img {
        height: 30px;
        width: auto;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-content {
        width: 90%;
        padding: 0;
        left: auto !important;
    }

    .hero {
        top: 0;
        left: 0;
        width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .techlab-section {
        width: 100%;
        padding: 6rem 1rem;
    }

    .techlab-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        justify-content: center;
    }

    .techlab-text img {
        width: 280px;
        height: auto;
    }

    .techlab-title {
        font-size: 0.9rem;

    }

    .techlab-description {
        font-size: 1.1rem;
    }

    .atuamos-grid {
        display: flex;
        gap: 15px;
        height: auto;
        align-items: center;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 15px;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

    .atuamos-grid::-webkit-scrollbar {
        display: none;
    }

    .atuamos-item {
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* .atuamos-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
    } */

    .hero-content img {
        width: 100%;
        height: auto;
    }


    .footer-where {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer {
        overflow: hidden;
        padding: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        width: 100%;
    }

    .footer-logo div {
        display: flex;
        justify-content: space-between;
    }

    .footer-logo-img {
        height: 90px !important;
    }

    .footer-logo-selo {
        height: 100px !important;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* .nav-menu {
        display: none;
    } */

    .nav-menu {
        align-items: start;
    }

    .nav-actions {
        display: none;
    }


    .search-box-nav-menu {
        display: flex;
        width: 100%;
        gap: 8px;
        align-items: start;
        border-bottom: 2px solid #7a7a7a;
        padding: 10px 0;
        color: #7a7a7a;
    }


    .search-box-nav-menu input {
        flex: 1;
        min-width: 0;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        font-size: 16px;
        margin: 0 12px;
    }

    .search-box-nav-menu input::placeholder {
        color: #8c8c8c;
    }

    .search-box-nav-menu button {
        background: none;
        border: none;
        cursor: pointer;
        color: #fff;
        font-size: 18px;
    }

    /* Menu mobile ativo */
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        justify-content: space-between;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        height: 100dvh;
        background-color: var(--gray-900);
        padding: var(--spacing-md);
        padding-top: 12vh;
        gap: var(--spacing-xl);
        z-index: 999;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
        animation: slideInFromRight 0.4s ease-out forwards;
        overflow-y: auto;
    }


    .nav-menu {
        animation: slideInFromRight 0.4s ease-in forwards;
    }

    .nav-menu.active .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }

    .nav-menu.active .nav-link {
        padding: var(--spacing-md) 0;
        color: var(--white);
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.closing {
        animation: slideOutToRight 0.4s ease-out forwards;
    }

    /* Botão de menu mobile ativo */
    .mobile-menu-btn.active span {
        background-color: var(--white) !important;
    }

    .mobile-menu-btn.closing span {
        background-color: var(--white);
        transition: background-color 0.4s ease-out;
    }

    .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu.active .nav-link:hover {
        color: var(--primary-blue-light);
        padding-left: var(--spacing-sm);
    }

    .nav-actions.active {
        display: flex !important;
        position: absolute;
        top: 0px;
        background-color: transparent;
        animation: slideInLeft 0.4s ease-out forwards;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
        z-index: 9999;
    }

    .nav-actions.closing {
        animation: slideOutLeft 0.4s ease-out forwards;
    }

    .search-btn {
        display: none;
    }

    .nav-container {
        padding: 0 20px;
    }

    .header.scrolled .mobile-menu-btn span {
        background-color: var(--primary-blue);
    }

    .header.scrolled .mobile-menu-btn.closing span {
        background-color: var(--primary-blue) !important;
        transition: background-color 0.4s ease-out;
    }

    /* Cards - Carrossel horizontal no mobile */
    .cards-container {
        flex-direction: row;
        height: 380px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        margin: 20px 10px;
        padding: 0;
        scrollbar-width: none;
        /* largura total: N cards + 1 card-expanded-content — os filhos flex-shrink:0 criam o overflow naturalmente */
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .cards-container .acordeao-box {
        flex-shrink: 0;
        max-width: 150px;
        height: 100%;
        scroll-snap-align: start;
    }

    .cards-container .acordeao-box.acordeao-ativo {
        /* 150px (card) + 280px (expanded) */
        max-width: 430px;
        height: 100%;
    }

    .cards-container .card-expanded-content {
        width: 280px;
        min-width: 280px;
        padding: 16px;
        font-size: 0.8rem;
    }

    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        height: 280px;
    }

    .cliente-item {
        height: 120px;
        padding: 15px;
    }

    .swiper {
        height: 450px;
    }

    .news-meta {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
    }


    .mobile-menu-btn.active {
        color: var(--primary-blue);
        z-index: 999;
    }

    .nav-menu-footer {
        position: relative;
        display: flex;
        flex-direction: column;
        align-self: start;
    }

    .nav-menu-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background-color: var(--gray-900);
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        transition: background-color var(--transition-normal);
    }

    .nav-menu-footer button {
        background-color: transparent;
        color: var(--white);
        border: 1px solid;
    }

    .social-media-links {
        display: flex;
        gap: var(--spacing-sm);
        justify-content: space-evenly;
    }

    .content-column-2 {
        display: flex;
        flex-direction: column;
        gap: 20px !important;
        margin-top: 20px;
    }

    .cards-container-secundary {
        flex-direction: row;
        align-items: center;
        height: 500px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        margin: 20px 10px;
        padding: 0;
        scrollbar-width: none;
    }

    .cards-container-secundary::-webkit-scrollbar {
        display: none;
    }

    .card-main-content-secundary {
        height: 95%;
        width: 220px;
    }

    .cards-container-secundary .acordeao-box-secundary {
        flex-shrink: 0;
        max-width: 220px;
        height: 95%;
        scroll-snap-align: start;
    }

    .cards-container-secundary .acordeao-box-secundary.acordeao-ativo-secundary {
        max-width: 550px;
        height: 95%;
    }

    .cards-container-secundary .card-expanded-content-secundary {
        height: 95%;
        padding: 16px;
        font-size: 0.8rem;
    }

    .content-column div {
        margin-right: 0 !important;
    }

    .grid-valores {
        grid-template-columns: repeat(1, 1.5fr);
    }

    .stats-grid-second-location {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stats-grid-second-location .stat-item:nth-child(1) {
        grid-column: 1/3 !important;
        justify-self: center !important;
    }

    .cert-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 250px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .cert-grid>div {
        scroll-snap-align: center;
    }

    .premiacoes-pagination.swiper-pagination-bullets,
    .premiacoes-pagination.swiper-pagination-bullets.swiper-pagination-horizontal,
    .premiacoes-pagination.swiper-pagination-custom,
    .premiacoes-pagination.swiper-pagination-fraction {
        display: flex;
        justify-content: center;
    }

    .content-column {
        padding: 20px;
    }

    /* .cards-container-secundary {
        flex-direction: column;
    } */
    .cases-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 300px;
        gap: 16px;
        position: relative;
        width: 100vw;
        width: 100dvw;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
        /* Firefox */
    }

    .cases-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }


    .cases-grid>* {
        scroll-snap-align: start;
    }

    .case-card {
        width: 300px;
    }

    .selos-footer img {
        width: auto;
        height: 70px !important;
    }

    .filter-section {
        display: flex !important;
    }

    .filter-section .search-input {
        min-width: 200px !important;
    }

    .nav-container.filter-section {
        flex-direction: column-reverse;
        gap: 2rem;
        align-items: start;
    }

    .nav-actions.filter-section,
    .nav-actions.filter-section .search-box,
    .nav-actions.filter-section .search-box input {
        width: 100%;
    }


    .page-investidores-title h1 {
        font-size: 2rem;
    }

    .page-investidores-acoes-title {
        margin-bottom: 40px !important;
    }


    .page-investidores-acoes-title h2 {
        text-align: center;
    }

    .acoes-content h2 {
        font-size: 1.5rem;
    }

    .acoes-content .news-excerpt {
        font-size: 10px;
    }

    .acoes-grid {
        grid-template-columns: none !important;
        grid-auto-flow: column;
        grid-auto-columns: 175px;
        gap: 16px;
        justify-content: flex-start !important;

        overflow-x: auto;
        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .investidores-hero video {
        width: auto;
    }

    .investidores-hero .content-column {
        padding: 50px;
    }

    .investidores-hero .content-column h4 {
        margin-bottom: 30px;
    }

    .governanca-section-title {
        margin-bottom: 40px !important;
    }

    .governanca-section-title h2 {
        text-align: center;
    }

    .governanca-grid {
        gap: 50px !important;
    }

    .page-investidores-sessao-arquivos {
        width: 100vw !important;
    }

    .sessao-arquivos-header {
        flex-direction: column;
        text-align: center;
        justify-content: center !important;
        padding: 12px;
    }

    .hero-content-info {
        width: 100%;
    }

    .hero-content-image {
        display: none;
    }

    .hero-content-info .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-content-info .section-title-bright {
        font-size: 3rem !important;
    }

    .pessoas-carreiras-subtitulo {
        font-size: 20px;
    }

    .hero-content-pessoas-carreiras {
        padding: 0 var(--spacing-md);
    }

    .hero-content-info .hero-buttons,
    .hero-content-info .content-column,
    .hero-content-info .content-column div,
    .hero-content-info button {
        width: 100%;
    }

    .pessoas-carreiras-cards {
        display: flex;
        justify-content: center;
        gap: 38px;
        /* 48 -> 38 */
        flex-wrap: wrap;
    }

    .pessoas-carreiras-card {
        width: 208px;
        /* 260 -> 208 */
        min-height: 264px;
        /* 330 -> 264 */

        border: 2px solid #0A38FF;
        /* 3 -> 2.4 (arredondado) */
        border-radius: 14px;
        /* 18 -> 14 */

        padding: 32px 20px;
        /* 40 25 -> 32 20 */

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        background: #fff;

        transition: .3s;
    }

    .pessoas-carreiras-card:hover {
        transform: translateY(-5px);
        /* 6 -> 5 */
        box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    }

    .pessoas-carreiras-card img {
        width: 58px;
        /* 72 -> 58 */
        height: 58px;
        object-fit: contain;

        margin-bottom: 24px;
        /* 30 -> 24 */
    }

    .pessoas-carreiras-card h3 {
        color: #0A38FF;
        font-size: 16px;
        /* 20 -> 16 */
        font-weight: 700;
        line-height: 1.15;

        margin-bottom: 18px;
        /* 22 -> 18 */
    }

    .pessoas-carreiras-card p {
        color: #707070;
        font-size: 16px;
        /* 20 -> 16 */
        line-height: 1.5;
    }

    .pessoas-carreiras-gptw>div {
        flex-direction: column;
    }

    .pessoas-carreiras-gptw-cards {
        grid-template-columns: none;
        grid-auto-flow: column;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .techlab-cta {
        height: 100vh;
    }

    .techlab-cta-background {
        height: 100%;
        width: auto;
    }

    .techlab-cta-molduras {
        flex-direction: column;
    }

    .techlab-cta-moldura {
        width: 100%;
        overflow: hidden;
        height: auto;
    }

    .techlab-cta-content {
        width: auto;
        padding-left: 1rem;
    }

    .techlab-cta-content button {
        width: auto;
    }

    .techlab-cta-moldura-image {
        object-fit: cover;
    }

    .sondolovers-avaliacoes-cards {
        flex-direction: column;
    }

    .premiacoes-slider-wrapper {
        overflow: visible;
    }

    .premiacoes-button-next,
    .premiacoes-button-prev {
        display: flex !important;
        top: 55%;
    }

    .premiacoes-button-next {
        right: -20px
    }

    .premiacoes-button-prev {
        left: -20px;
    }

    #legado-section .container,
    #projetos-sociais .container {
        position: relative;
        z-index: 2;
        padding: 20px !important;
    }

    #legado-section .image-gallery,
    #projetos-sociais .image-gallery {
        opacity: 0.3;
    }


    .section-title {
        font-size: 1.5rem;
    }

    .section-content {
        flex-direction: column;
    }

    #bastidores h2 {
        font-size: 1.5rem;
    }

    .section-content button {
        width: 100% !important;
    }

    .instituicoes-swiper {
        height: auto !important;
        padding: 0;
    }

    .esg-card .content-column {
        width: 90vw;
        display: flex;
        flex-direction: column;
    }

    .esg-card .content-column-3>div img {
        width: 80px !important;
        height: 80px !important;
    }

    .esg-card .content-column-3 {
        gap: 10px !important;
    }

    .sondotecnica-descartavel-zero-img {
        width: 100% !important;
    }

    .maquina-coleta-img {
        width: 50% !important;
    }

    .section-diversidade {
        background-position: right !important;
    }

    .governanca-esg-botoes {
        justify-items: center !important;
        justify-content: center;
    }

    .mobile-grid-autofit {
        grid-template-columns: repeat(auto-fit, 150px) !important;
        width: 100%;
        justify-content: center;
    }

    .linha-do-tempo-page .hero-content .hero-toptitle {
        font-size: 2rem;
    }

    .linha-do-tempo-page .hero-content h4 {
        font-size: 1rem;
    }

    .timeline-line {
        left: 50%;
        background: rgba(0, 0, 0, 0.15);
    }

    .timeline-dot {
        margin-top: -25px;
        position: absolute;
        left: 50%;
    }


    .timeline-year-right,
    .timeline-year-right-back {
        left: 75%;
    }

    .timeline-year-left,
    .timeline-year-left-back {
        left: 25%;
    }

    .timeline-year-right-back,
    .timeline-year-left-back {
        margin-top: -65px;
    }

    .timeline-content {
        margin-left: 0 !important;
        background-color: #fff;
    }

    .page-techlab .hero-content {
        margin-left: auto !important;
        width: 100%;
        margin-bottom: 150px !important;
    }

    .page-techlab .hero-content img {
        width: 90% !important;
    }

    .page-techlab .hero-content h4 {
        font-size: 18px !important;
    }

    .page-techlab .content-column {
        display: flex;
        justify-content: center;
    }

    .page-techlab h2 {
        font-size: 1.5rem;
        text-align: center;
        padding-bottom: 0 !important;
    }

    .pilares-inovacao .pilares {
        display: flex !important;
        justify-content: center;
        gap: var(--spacing-md) !important;
    }

    .pilares-inovacao .pilares>div img {
        height: 100px;
    }

    .m-i-t .content-column {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mit-content {
        width: 100%;
    }

    .mit-content h2 {
        text-align: left;
    }

    .mit-content .techlab-valor-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mit-content .grid-item {
        padding: 20px;
    }

    .partnership {
        width: 100%;
    }

    .partnership__logos img {
        width: 50%;
    }

    .page-techlab .fade-overlay-top {
        height: 100px !important;
    }

    .missao-valores-techlab {
        flex-direction: column;
    }

    .missao-valores-techlab h2 {
        text-align: left;
    }


    .missao-valores-techlab>div {
        width: 100%;
    }

    .swiper-slide {
        align-items: start;
    }

    .nossos-escritorios .content-column {
        flex-direction: column;
    }

    .nossos-escritorios h4 {
        text-align: center;
    }

    .nossos-escritorios .content-column>div img {
        margin-right: 0 !important;
    }

    .premios-reconhecimentos .container>div {
        display: grid;
        grid-template-columns: repeat(auto-fit, 150px);
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .premios-reconhecimentos .container>div img {
        width: 150px !important;
    }

    .agende-visita-techlab .content-column>div {
        display: contents;
    }

    .agende-visita-techlab .content-column {
        flex-direction: column;
    }

    .hero-about-orion {
        margin-left: auto;
    }

    .orion-description .case-info-grid-4 {
        grid-template-columns: repeat(auto-fit, 150px);
        width: 100%;
    }

    .diferenciais-orion-img {
        width: 130%;
    }

    .orion-button {
        font-size: 16px !important;
        top: 0;
        bottom: auto;
    }

    .orion-info-img {
        width: 100% !important;
    }

    .premi-card .premi-content p {
        margin-bottom: 0 !important;
    }

    .premi-card .premi-content {
        box-shadow: none;
    }

    .instituicoes-item img {
        width: 150px !important;
    }

    .case-container {
        width: 100%;
    }

}

/* Smartphones Maiores */

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {

    @keyframes slideInLeft {
        from {
            left: 100%;
            opacity: 0;
        }

        to {
            left: 50%;
            opacity: 1;
        }
    }

    @keyframes slideOutLeft {
        from {
            left: 50%;
            opacity: 1;
        }

        to {
            left: 100%;
            opacity: 0;
        }
    }

    html,
    body {
        overflow-x: hidden;
    }

    /* #menu-menu-principal {
        display: none;
    } */

    main {
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 999;
    }

    .mobile-menu-btn.active span {
        background-color: var(--white) !important;
    }

    .mobile-menu-btn.closing span {
        background-color: var(--white);
        transition: background-color 0.4s ease-out;
    }

    .search-btn {
        color: var(--black);
    }

    .language-selected img {
        height: 30px;
        width: auto;
    }

    .search-btn svg {
        height: 30px !important;
        width: auto !important;
    }

    .header.scrolled .logo-img {
        width: auto;
    }

    .header.scrolled .mobile-menu-btn span {
        background-color: var(--primary-blue);
    }

    .header.scrolled .mobile-menu-btn.closing span {
        background-color: var(--primary-blue) !important;
        transition: background-color 0.4s ease-out;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
    }

    .atuamos-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
        justify-items: center;
    }

    /* 2 itens - Linha 1 */
    .atuamos-grid> :nth-child(1) {
        grid-column: 2 / 4;
    }

    .atuamos-grid> :nth-child(2) {
        grid-column: 4 / 6;
    }

    /* 3 itens - Linha 2 */
    .atuamos-grid> :nth-child(3) {
        grid-column: 1 / 3;
    }

    .atuamos-grid> :nth-child(4) {
        grid-column: 3 / 5;
    }

    .atuamos-grid> :nth-child(5) {
        grid-column: 5 / 7;
    }

    /* 3 itens - Linha 3 */
    .atuamos-grid> :nth-child(6) {
        grid-column: 1 / 3;
    }

    .atuamos-grid> :nth-child(7) {
        grid-column: 3 / 5;
    }

    .atuamos-grid> :nth-child(8) {
        grid-column: 5 / 7;
    }

    /* 2 itens - Linha 4 */
    .atuamos-grid> :nth-child(9) {
        grid-column: 2 / 4;
    }

    .atuamos-grid> :nth-child(10) {
        grid-column: 4 / 6;
    }

    .news-grid {
        width: auto;
        overflow-x: auto;
        grid-template-columns: repeat(4, 280px);
        justify-content: space-evenly;
    }

    .news-grid::-webkit-scrollbar {
        display: none;
    }

    .news-grid-second {
        width: auto;
        overflow-x: auto;
        grid-template-columns: repeat(auto-fit, 280px);
        justify-content: space-evenly;
    }

    .news-grid-second::-webkit-scrollbar {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .footer-content>div:nth-child(3) {
        grid-column: 1/-1;
    }

    /* Cards - Carrossel horizontal no mobile */
    .cards-container {
        flex-direction: row;
        height: 380px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        margin: 20px 10px;
        padding: 0;
        scrollbar-width: none;
        /* largura total: N cards + 1 card-expanded-content — os filhos flex-shrink:0 criam o overflow naturalmente */
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .cards-container .acordeao-box {
        flex-shrink: 0;
        max-width: 150px;
        height: 100%;
        scroll-snap-align: start;
    }

    .cards-container .acordeao-box.acordeao-ativo {
        /* 150px (card) + 280px (expanded) */
        max-width: 430px;
        height: 100%;
    }

    .cards-container .card-expanded-content {
        width: 280px;
        min-width: 280px;
        padding: 16px;
        font-size: 0.8rem;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        justify-content: space-between;
        top: 0;
        right: 0;
        width: 50%;
        height: 100vh;
        background-color: var(--gray-900);
        padding: var(--spacing-md);
        padding-top: 12vh;
        gap: var(--spacing-xl);
        z-index: 999;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
        animation: slideInFromRight 0.4s ease-out forwards;
        overflow-y: auto;
    }

    .nav-menu.active .nav-list {
        flex-direction: column;
        gap: var(--spacing-xl);
        width: 100%;
    }


    .nav-menu.active .nav-link {
        padding: var(--spacing-md) 0;
        color: var(--white);
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.closing {
        animation: slideOutToRight 0.4s ease-out forwards;
    }

    .nav-actions.active {
        display: flex !important;
        position: absolute;
        top: 0px;
        background-color: transparent;
        animation: slideInLeft 0.4s ease-out forwards;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
        z-index: 9999;
    }

    .nav-actions.closing {
        animation: slideOutLeft 0.3s ease-out forwards;
    }

    .social-links-header {
        position: absolute;
        bottom: 60px;
        display: flex;
        gap: var(--spacing-sm);
    }

    .social-links-header a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--black);
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        transition: background-color var(--transition-normal);
    }

    .content-column-2 {
        gap: 20px !important;
        display: flex;
        flex-direction: column;
    }

    .cards-container-secundary {
        flex-direction: row;
        height: 500px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: center;
        margin: 20px 10px;
        padding: 0;
        scrollbar-width: none;
    }

    .cards-container-secundary::-webkit-scrollbar {
        display: none;
    }

    .cards-container-secundary .acordeao-box-secundary {
        flex-shrink: 0;
        max-width: 250px;
        height: 100%;
        scroll-snap-align: start;
    }

    .cards-container-secundary .acordeao-box-secundary.acordeao-ativo-secundary {
        max-width: 550px;
        height: 100%;
    }

    .cards-container-secundary .card-expanded-content-secundary {
        width: 500px;
        padding: 16px;
        font-size: 0.8rem;
    }

    .cert-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 250px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .cert-grid>div {
        scroll-snap-align: center;
    }

    .content-column {
        display: flex;
        flex-direction: column;
    }

    /* .cases-grid {
        display: flex;
        width: auto;
        overflow-x: scroll;
    }

    .case-card {
        max-width: 350px;
    } */

    .cases-grid {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 350px;
        gap: 16px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
        /* Firefox */
    }

    .cases-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .cases-grid>* {
        scroll-snap-align: start;
    }

    .case-card {
        width: 350px;
    }

    .footer-bottom-content {
        justify-content: center;
    }

    .filter-section {
        display: flex !important;
        gap: 2rem !important;
    }

    .filter-section .search-input {
        min-width: 400px !important;
    }

    .governanca-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .governanca-grid> :nth-child(3) {
        grid-column: 1 / -1;
        width: 230px;
        justify-self: center;
    }

    .intro-sessao-arquivos {
        width: 60vw !important;
        text-align: end;
    }

    .page-investidores-sessao-arquivos {
        width: 100vw !important;
    }

    .sessao-arquivos-header {
        flex-direction: column;
        text-align: center;
        justify-content: center !important;
    }

    .nav-menu-footer {
        position: relative;
        display: flex;
        flex-direction: column;
        align-self: start;
    }

    .nav-menu-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background-color: var(--gray-900);
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        transition: background-color var(--transition-normal);
    }

    .nav-menu-footer button {
        background-color: transparent;
        color: var(--white);
        border: 1px solid;
    }

    .social-media-links {
        display: flex;
        gap: var(--spacing-sm);
        justify-content: space-evenly;
    }

    .search-btn {
        display: none;
    }

    .search-box-nav-menu {
        display: flex;
        width: 100%;
        gap: 8px;
        align-items: start;
        border-bottom: 2px solid #7a7a7a;
        padding: 10px 0;
        margin-top: 20px;
        color: #7a7a7a;
    }

    .search-box-nav-menu input {
        flex: 1;
        min-width: 0;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        font-size: 16px;
        margin: 0 12px;
    }

    .search-box-nav-menu input::placeholder {
        color: #8c8c8c;
    }

    .search-box-nav-menu button {
        background: none;
        border: none;
        cursor: pointer;
        color: #fff;
        font-size: 18px;
    }

    .nav-menu-footer {
        position: relative;
        display: flex;
        flex-direction: column;
        align-self: start;
    }

    .nav-menu-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background-color: var(--black);
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        transition: background-color var(--transition-normal);
    }

    .nav-menu-footer button {
        background-color: transparent;
        color: var(--white);
        border: 1px solid;
    }

    .social-media-links {
        display: flex;
        gap: var(--spacing-sm);
        justify-content: space-evenly;
    }

    .search-btn {
        display: none;
    }

    .search-box-nav-menu {
        display: flex;
        width: 100%;
        gap: 8px;
        align-items: start;
        border-bottom: 2px solid #7a7a7a;
        padding: 10px 0;
        margin-top: 20px;
        color: #7a7a7a;
    }

    .search-box-nav-menu input {
        flex: 1;
        min-width: 0;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        font-size: 16px;
        margin: 0 12px;
    }

    .search-box-nav-menu input::placeholder {
        color: #8c8c8c;
    }

    .search-box-nav-menu button {
        background: none;
        border: none;
        cursor: pointer;
        color: #fff;
        font-size: 18px;
    }

    .hero-content-info {
        z-index: 2;
    }

    .hero-content-image {
        position: absolute;
        opacity: 0.5;
        right: -40%;
    }

    .pessoas-carreiras-gptw-info {
        flex: 0 0 400px;
        padding-right: var(--spacing-md);
    }

    .pessoas-carreiras-gptw-cards {
        grid-template-columns: none;
        grid-auto-flow: column;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .pessoas-carreiras-gptw-cards::-webkit-scrollbar {
        display: none;
    }

    .techlab-cta {
        height: 80vh;
    }

    .techlab-cta-background {
        height: 100%;
        width: auto;
    }

    .techlab-cta-molduras {
        flex-direction: column;
    }

    .techlab-cta-moldura {
        width: 100%;
    }

    .sondolovers-avaliacoes-cards {
        gap: 0;
    }

    .sondolovers-avaliacao-card img {
        width: 200px;
    }

    .sondolovers-avaliacao-card {
        padding: 1.5rem;
    }

    .legado-section-content {
        position: relative;
    }

    .legado-section-image {
        position: absolute;
        right: 0;
        height: 100%;
    }

    .legado-section-text {
        padding: var(--spacing-md);
        width: 50%;
    }

    .legado-section-text .section-title {
        padding-bottom: 0 !important;
    }

    #nosso-legado .container {
        padding: 0;
    }


    .instituicoes-swiper {
        width: 100%;
        padding: 20px 40px;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .instituicao-item {
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .instituicao-logo {
        max-width: 180px;
        max-height: 80px;
        object-fit: contain;
    }

    .section-content {
        flex-direction: column;
    }

    .section-content button {
        width: 100% !important;
    }

    #legado-section .container {
        position: relative;
        z-index: 2;
        padding: 20px !important;
    }

    #legado-section .image-gallery {
        opacity: 0.3;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .esg-card .content-column {
        width: 90vw;
        display: flex;
        flex-direction: column;
    }


    .sondotecnica-descartavel-zero-img {
        width: 100% !important;
    }


    .section-diversidade {
        background-position: right !important;
    }

    .governanca-esg-botoes {
        justify-items: center !important;
        justify-content: center;
    }

    .mobile-grid-autofit {
        grid-template-columns: repeat(auto-fit, 150px) !important;
        width: 100%;
        justify-content: center;
    }

    #legado-section .container,
    #projetos-sociais .container {
        position: relative;
        z-index: 2;
        padding: 20px !important;
    }

    #legado-section .image-gallery,
    #projetos-sociais .image-gallery {
        opacity: 0.3;
    }

    .linha-do-tempo-page .hero-content .hero-toptitle {
        font-size: 2rem;
    }

    .linha-do-tempo-page .hero-content h4 {
        font-size: 1rem;
    }

    .timeline-line {
        left: 50%;
        background: rgba(0, 0, 0, 0.15);
    }

    .timeline-dot {
        margin-top: -25px;
        position: absolute;
        left: 50%;
    }


    .timeline-year-right,
    .timeline-year-right-back {
        left: 65%;
    }

    .timeline-year-left,
    .timeline-year-left-back {
        left: 35%;
    }

    .timeline-year-right-back,
    .timeline-year-left-back {
        margin-top: -65px;
    }

    .timeline-content {
        margin-left: 0 !important;
        background-color: #fff;
        width: 40%;
        margin-top: 10px;
    }

    .page-techlab .hero-content {
        width: 100%;
        margin-bottom: 150px !important;
    }

    .page-techlab .hero-content img {
        width: 90% !important;
    }

    .page-techlab .hero-content h4 {
        font-size: 18px !important;
    }

    .page-techlab .content-column {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .page-techlab h2 {
        font-size: 1.5rem;
        text-align: center;
        padding-bottom: 0 !important;
    }

    .m-i-t .content-column {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mit-content {
        width: 100%;
    }

    .mit-content h2 {
        text-align: left;
    }

    .mit-content .techlab-valor-item {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .mit-content .grid-item {
        padding: 20px;
    }

    .partnership {
        width: 100%;
    }

    .partnership__logos img {
        width: 50%;
    }

    .fade-overlay-top video {
        min-height: 100%;
    }


    .missao-valores-techlab {
        flex-direction: column !important;
    }


    .missao-valores-techlab h2 {
        text-align: left;
    }

    .missao-valores-techlab>div {
        width: 100%;
    }

    .swiper-slide {
        align-items: start;
    }

    .nossos-escritorios .content-column {
        flex-direction: row;
        justify-content: center !important;
    }

    .nossos-escritorios h4 {
        text-align: center;
    }

    .nossos-escritorios .content-column>div img {
        margin-right: 0 !important;
    }

    .premios-reconhecimentos .container>div {
        display: grid;
        grid-template-columns: repeat(auto-fit, 150px);
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .premios-reconhecimentos .container>div img {
        width: 150px !important;
    }

    .agende-visita-techlab .content-column>div {
        display: contents;
    }

    .agende-visita-techlab .content-column {
        flex-direction: column;
    }

    .hero-about-orion {
        margin-left: auto;
    }

    .orion-description .case-info-grid-4 {
        grid-template-columns: repeat(auto-fit, 150px);
        width: 100%;
        justify-content: space-evenly !important;
        gap: 0 !important;
    }

    .diferenciais-orion-img {
        width: 130%;
    }

    .orion-button {
        font-size: 16px !important;
        top: 20px;
        bottom: auto;
    }

    .orion-info-img {
        width: 100% !important;
    }

    .premi-card .premi-content p {
        margin-bottom: 0 !important;
    }

    .premi-card .premi-content {
        box-shadow: none;
    }
}

/* Tablets Grandes */
@media (min-width: 1024px) and (max-width: 1200px) {

    html,
    body {
        overflow-x: hidden;
    }

    main {
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
    }

    .nav {
        padding: 2rem 0;
        transition: padding 0.3s ease;
    }

    .header.scrolled nav {
        padding: 1rem 0;
    }

    .nav-list {
        padding: 0 2rem;
    }

    .nav-link {
        font-size: .6875rem;
        text-transform: uppercase;
        font-weight: 600;
    }

    .nav-list li {
        width: auto;
        flex: 0 1 auto;
        text-align: center;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo-img {
        width: auto;
    }

    .social-links-header {
        display: none;
    }

    .mobile-menu-btn span {
        width: 40px;
        height: 4px;
    }

    .header.scrolled .mobile-menu-btn span {
        background-color: var(--primary-blue);
    }

    .mobile-menu-btn.active span {
        background-color: var(--primary-blue);
        z-index: 999;
    }

    .mobile-menu-btn.closing span {
        background-color: var(--white);
        transition: background-color 0.4s ease-out;
    }


    .atuamos-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
        justify-items: center;
    }

    /* 2 itens - Linha 1 */
    .atuamos-grid> :nth-child(1) {
        grid-column: 2 / 4;
    }

    .atuamos-grid> :nth-child(2) {
        grid-column: 4 / 6;
    }

    /* 3 itens - Linha 2 */
    .atuamos-grid> :nth-child(3) {
        grid-column: 1 / 3;
    }

    .atuamos-grid> :nth-child(4) {
        grid-column: 3 / 5;
    }

    .atuamos-grid> :nth-child(5) {
        grid-column: 5 / 7;
    }

    /* 3 itens - Linha 3 */
    .atuamos-grid> :nth-child(6) {
        grid-column: 1 / 3;
    }

    .atuamos-grid> :nth-child(7) {
        grid-column: 3 / 5;
    }

    .atuamos-grid> :nth-child(8) {
        grid-column: 5 / 7;
    }

    /* 2 itens - Linha 4 */
    .atuamos-grid> :nth-child(9) {
        grid-column: 2 / 4;
    }

    .atuamos-grid> :nth-child(10) {
        grid-column: 4 / 6;
    }

    .news-grid {
        width: auto;
        overflow-x: auto;
        grid-template-columns: repeat(4, 280px);
        justify-content: space-evenly;
    }

    .news-grid::-webkit-scrollbar {
        display: none;
    }

    .news-grid-second {
        width: auto;
        overflow-x: auto;
        grid-template-columns: repeat(auto-fit, 280px);
        justify-content: space-evenly;
    }

    .news-grid-second::-webkit-scrollbar {
        display: none;
    }

    /* .search-btn {
        color: var(--black);
    } */

    .language-selected img {
        height: 30px;
        width: auto;
    }

    .search-btn svg {
        height: 30px !important;
        width: auto !important;
    }



    /* Cards - Carrossel horizontal no mobile */
    .cards-container {
        flex-direction: row;
        height: 380px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        margin: 20px 10px;
        padding: 0;
        scrollbar-width: none;
        /* largura total: N cards + 1 card-expanded-content — os filhos flex-shrink:0 criam o overflow naturalmente */
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .cards-container .acordeao-box {
        flex-shrink: 0;
        max-width: 150px;
        height: 100%;
        scroll-snap-align: start;
    }

    .cards-container .acordeao-box.acordeao-ativo {
        /* 150px (card) + 280px (expanded) */
        max-width: 430px;
        height: 100%;
    }

    .cards-container .card-expanded-content {
        width: 280px;
        min-width: 280px;
        padding: 16px;
        font-size: 0.8rem;
    }

    .cases-grid {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 350px;
        gap: 16px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
        /* Firefox */
    }

    .cases-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .cases-grid>* {
        scroll-snap-align: start;
    }

    .case-card {
        width: 350px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .footer-content>div:nth-child(3) {
        grid-column: 1/-1;
    }

    .footer-bottom-content {
        justify-content: center;
    }

    .techlab-cta {
        height: 60vh;
    }

    .techlab-cta>img {
        height: 100%;
        width: auto;
    }

    .techlab-cta-molduras {
        flex-direction: column;
    }

    .techlab-cta-moldura {
        width: 100% !important;
    }

    .instituicoes-swiper {
        width: 100%;
        padding: 20px 40px;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .instituicao-item {
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .instituicao-logo {
        max-width: 180px;
        max-height: 80px;
        object-fit: contain;
    }

    #junte-se .container {
        padding: 0;
    }

    .section-content {
        gap: 0;
    }

    .section-content img {
        width: 50%;
        object-fit: contain;
        height: auto !important;
    }

    .sondolovers-avaliacoes-cards {
        gap: 0;
    }

    #legado-section .container {
        padding: 0 var(--spacing-md) !important;
    }

    .section-diversidade {
        background-position: left !important;
    }

    .timeline-content {
        margin-left: 0 !important;
        background-color: #fff;
        width: 40%;
        margin-top: 10px;
    }

    .page-techlab .hero-content {
        width: 100%;
        margin-bottom: 150px !important;
    }

    .page-techlab .hero-content img {
        width: 90% !important;
    }

    .page-techlab .hero-content h4 {
        font-size: 18px !important;
    }

    .page-techlab .content-column {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .page-techlab h2 {
        font-size: 1.5rem;
        text-align: center;
        padding-bottom: 0 !important;
    }

    .m-i-t .content-column {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mit-content {
        width: 100%;
    }

    .mit-content h2 {
        text-align: left;
    }

    .mit-content .techlab-valor-item {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .mit-content .grid-item {
        padding: 20px;
    }

    .partnership {
        width: 100%;
    }

    .partnership__logos img {
        width: 50%;
    }

    .fade-overlay-top video {
        min-height: 100%;
    }

    .missao-valores-techlab {
        flex-direction: column !important;
    }

    .missao-valores-techlab h2 {
        text-align: left;
    }

    .missao-valores-techlab>div {
        width: 100%;
    }

    .swiper-slide {
        align-items: start;
    }

    .nossos-escritorios .content-column {
        flex-direction: row;
        justify-content: center !important;
    }

    .nossos-escritorios h4 {
        text-align: center;
    }

    .nossos-escritorios .content-column>div img {
        margin-right: 0 !important;
    }

    .premios-reconhecimentos .container>div {
        display: grid;
        grid-template-columns: repeat(auto-fit, 200px);
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .premios-reconhecimentos .container>div img {
        width: 200px !important;
    }

    .agende-visita-techlab .content-column>div {
        display: contents;
    }

    .agende-visita-techlab .content-column {
        flex-direction: column;
    }

    .orion-description .case-info-grid-4 {
        grid-template-columns: repeat(auto-fit, 150px);
        width: 100%;
    }

    .diferenciais-orion-img {
        width: 130%;
    }

    .orion-button {
        font-size: 16px !important;
        top: 20px;
        bottom: auto;
    }

    .orion-info-img {
        width: 100% !important;
    }

}

@media (orientation: landscape) and (max-width: 1023px) {

    @keyframes slideInLeft {
        from {
            left: 100%;
            opacity: 0;
        }

        to {
            left: 50%;
            opacity: 1;
        }
    }

    @keyframes slideOutLeft {
        from {
            left: 50%;
            opacity: 1;
        }

        to {
            left: 100%;
            opacity: 0;
        }
    }

    .social-links-header {
        display: none;
    }

    .nav-menu.active {
        padding-top: 20vh;
        width: 50%;
        align-items: start;
    }

    .nav-menu.active .nav-list {
        margin: 20px 0 !important;
    }

    .nav-actions.active {
        width: 100%;
        animation: slideInLeft 0.4s ease-in-out forwards;
        background-color: var(--gray-900);
    }

    .nav-actions.closing {
        animation: slideOutLeft 0.3s ease-in-out forwards;
    }

    .nav-menu-footer {
        position: relative;
        margin-top: 40px;
        align-self: start;
    }

    .nav-actions.active {
        z-index: 999;
    }

    .nav-menu-btn {
        z-index: 1000;
    }

    .hero-about-orion {
        margin-left: auto;
    }

    .orion-description .case-info-grid-4 {
        grid-template-columns: repeat(auto-fit, 150px);
        width: 100%;
    }

    .diferenciais-orion-img {
        width: 130%;
    }

    .orion-button {
        font-size: 16px !important;
        top: 20px;
        bottom: auto;
    }

    .orion-info-img {
        width: 100% !important;
    }
}