/*
Theme Name: IPPER 2025
Description: Tema WordPress exclusivo para o IPPER. 
Author: INGAGE Digital
Version: 1.0.0
*/

/* ========================================
   IMPORTAÇÃO DAS FONTES
======================================== */
@import url('https://use.typekit.net/kwq2gkq.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ========================================
   RESET E BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f9f9f9;
    background-color: #0B0E23 !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ========================================
   CONFIGURAÇÃO DAS FONTES
======================================== */
h1, h2, h3 {
    font-family: 'Vinila', sans-serif !important;
    color: #f9f9f9;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    color: #f9f9f9;
    margin-bottom: 0.5rem;
}

p, span, div, a, li, td, th, input, textarea, button, label {
    font-family: 'Inter', sans-serif !important;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #f9f9f9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #0B0E23;
    animation: fadeInDown 0.6s ease-out;
}

.header-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(249, 249, 249, 0.24);
}

.header-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    width: 88%;
    max-width: 1280px;
    margin: auto;
    position: relative;
}

/* Logo Styles */
.site-branding {
    background-size: 219.79% 100%;
    background-position: 0.04% 0%;
    background-repeat: no-repeat;
    height: 40px;
    width: 169px;
    flex-shrink: 0;
}

.site-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.site-logo img {
    width: 120px;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

/* Menu Styles */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.menu-items {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.menu-item {
    position: relative;
    flex-shrink: 0;
}

.menu-item a {
    text-decoration: none;
    display: block;
}

.menu-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: center;
    white-space: nowrap;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.menu-item a:hover p {
    color: #f5693c;
}

.cta-button p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: center;
    white-space: nowrap;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.cta-button:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
}

.cta-button:hover p {
    color: #0B0E23;
}

.cta-button:hover .cta-border {
    border-color: #f9f9f9;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
    position: relative;
}

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

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(11, 14, 35, 0.98);
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9999;
    }
    
    .main-navigation.active {
        transform: translateX(0);
    }
    
    .menu-wrapper {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .menu-items {
        flex-direction: column;
        gap: 24px;
    }
    
    .menu-item p {
        font-size: 24px;
        line-height: 32px;
    }
    
    .cta-button {
        margin-top: 16px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    
    .site-branding {
        width: 140px;
    }
    
    .menu-item p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .cta-button {
        padding: 14px 24px;
    }
    
    .cta-button p {
        font-size: 16px;
        line-height: 22px;
    }
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estados de foco para acessibilidade */

/* Scroll behavior para links do menu */
html {
    scroll-behavior: smooth;
}

/* Fix para logo quando usar custom logo do WordPress */
.custom-logo {
    width: 160px;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.custom-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    background: url('assets/images/hero-background.jpg') no-repeat bottom center;
    background-size: 100% 150.05%;
    background-position: 0% 100.08%;
    display: flex;
    flex-direction: column;
    gap: 43px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

.hero-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 0;
    position: relative;
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid #303c97;
    pointer-events: none;
}

/* Lado Esquerdo */
.hero-left {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    width: 66%;
    position: relative;
    flex-shrink: 0;
}

.hero-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    font-size: 72px;
    width: 100%;
    max-width: 100%;
}

.hero-title-gradient {
    background: linear-gradient(to bottom, #f5693c 0%, #c2370a 88.75%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.hero-title-gradient h1 {
    font-size: 64px;
    line-height: 70px;
    margin: 0 0 0 0;
    color: transparent;
}

.hero-title-light {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 100;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    width: 100%;
}

.hero-title-light h1 {
    font-size: 64px;
    line-height: 70px;
    margin: 0;
    color: #f9f9f9;
    font-weight: 100;
}

.hero-description {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    font-size: 0px;
    width: 437px;
    max-width: 100%;
}

.hero-description p {
    font-size: 24px;
    line-height: 34px;
    margin: 0;
    color: #f9f9f9;
}

.hero-description strong {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-style: normal;
}

/* Lado Direito - Slider */
.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 360px;
    min-height: 360px;
    position: relative;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* Navegação com barras de progresso */
.slider-nav {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    flex-shrink: 0;
    width: 100%;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: #f9f9f9;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.progress-bar.active {
    opacity: 1;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #f5693c;
    border-radius: 100px;
    transition: width 5s linear;
}

.progress-bar.active .progress-fill {
    width: 100%;
}

/* Slides */
.slider-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #34388E;
    border-radius: 13px;
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.16);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.slide-content-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    box-sizing: border-box;
}

.slide-text {
    backdrop-filter: blur(2px);
    background-color: rgba(23, 29, 73, 0.8);
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: auto;
}

.slide-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
}

.slide-title {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 700;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    font-size: 24px;
    width: 100%;
}

.slide-title h3 {
    font-size: 24px;
    line-height: 24px;
    margin: 0;
    color: #f9f9f9;
}

.slide-location {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 400;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    font-size: 16px;
    width: 100%;
}

.slide-location p {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    color: #f9f9f9;
}

.slide-tag {
    padding: 6px 12px;
    font-size: 14px;
    background-color: #0B0E23;
    font-family: vinila;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .hero-section {
    background: url('assets/images/hero-background.jpg') no-repeat bottom center;
    background-size: 100% 150.05%;
    background-position: 0% 100.08%;
    display: flex;
    flex-direction: column;
    gap: 43px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

.hero-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 24px;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hero-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid #303c97;
    pointer-events: none;
}

/* Lado Esquerdo */


.hero-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    font-size: 72px;
    width: 100%;
}

.hero-title-gradient {
    background: linear-gradient(to bottom, #f5693c 0%, #c2370a 88.75%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.hero-title-gradient h1 {
    font-size: 56px;
    line-height: 60px;
    margin: 0 0 0 0;
    color: transparent;
}

.hero-title-light {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 100;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    width: 100%;
}

.hero-title-light h1 {
    font-size: 56px;
    line-height: 60px;
    margin: 0;
    color: #f9f9f9;
    font-weight: 100;
}

.hero-description {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    font-size: 0px;
    width: 100%;
    max-width: 100%;
}

.hero-description p {
    font-size: 24px;
    line-height: 34px;
    margin: 0;
    color: #f9f9f9;
}

.hero-description strong {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-style: normal;
}

/* Navegação com barras de progresso */
.slider-nav {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    flex-shrink: 0;
    width: 100%;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: #f9f9f9;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.progress-bar.active {
    opacity: 1;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #f5693c;
    border-radius: 100px;
    transition: width 5s linear;
}

.progress-bar.active .progress-fill {
    width: 100%;
}

/* Slides */
.slider-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #34388E;
    border-radius: 13px;
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.16);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.slide-content-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    box-sizing: border-box;
}

.slide-text {
    backdrop-filter: blur(2px);
    background-color: rgba(23, 29, 73, 0.8);
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: auto;
}

.slide-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
}

.slide-title {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 700;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    font-size: 24px;
    width: 100%;
}

.slide-title h3 {
    font-size: 24px;
    line-height: 24px;
    margin: 0;
    color: #f9f9f9;
}

.slide-location {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 400;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    font-size: 16px;
    width: 100%;
}

.slide-location p {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    color: #f9f9f9;
}

.slide-tag {
    background-color: #0b0e23;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    position: relative;
    border-radius: 4px;
    flex-shrink: 0;
}

.slide-tag span {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 300;
    position: relative;
    flex-shrink: 0;
    color: #f9f9f9;
    font-size: 12px;
    text-align: left;
    white-space: pre;
    line-height: 16px;
}
}

/* ========================================
   atuacao PRODUTIVA SECTION
======================================== */
.atuacao-section {
    background-color: #0b0e23;
    position: relative;
    width: 100%;
}

.atuacao-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.atuacao-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    width: 88%;
    max-width: 1280px;
    margin: auto;
}

/* Header da Seção */
.atuacao-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.atuacao-title-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: auto;
}

.atuacao-title {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #f5693c;
    text-align: left;
    white-space: nowrap;
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

/* CTA Button */
.atuacao-cta {
    background-color: #f5693c;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    position: relative;
    border-radius: 3600px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.atuacao-cta:hover {
    background-color: #e55a33;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 105, 60, 0.3);
}

.atuacao-cta-button {
    text-decoration: none;
    display: block;
}

.atuacao-cta-button p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: center;
    white-space: nowrap;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* Slider Wrapper */
.atuacao-slider-wrapper {
    position: relative;
    width: calc(100% + 320px);
    margin-right: -320px;
    overflow: hidden;
}

/* Slider Container */
.atuacao-slider {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.atuacao-slider::-webkit-scrollbar {
    display: none;
}

.atuacao-slider.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Cards */
.atuacao-card {
    background-color: #171d49;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 260px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px;
    position: relative;
    border-radius: 16px;
    flex-shrink: 0;
    width: 302px;
    border: 1px solid #34388E;
    transition: all 0.3s ease;
    overflow: hidden;
}

.atuacao-card:hover {
    background-color: #34388E;
    border-color: #34388E;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.atuacao-card:hover .atuacao-card-border {
    border-color: #34388E;
}

/* Card Icon */
.atuacao-card-icon {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.atuacao-card-icon svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

/* Card Text */
.atuacao-card-text {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.atuacao-card-text p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    color: #f9f9f9;
    text-align: left;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

/* ========================================
   atuacao PRODUTIVA RESPONSIVE
======================================== */

@media (max-width: 768px) {
    
    .atuacao-header {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
    
    .atuacao-title {
        font-size: 32px;
        line-height: 40px;
        white-space: normal;
    }
    
    .atuacao-slider-wrapper {
        width: calc(100% + 20px);
        margin-right: -20px;
    }
    
    .atuacao-card {
        width: 280px;
        height: 240px;
        padding: 24px;
    }
    
    .atuacao-card-text p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    
    .atuacao-title {
        font-size: 28px;
        line-height: 36px;
        width: 100%;
    }
    
    .atuacao-cta {
        padding: 12px 24px;
        align-self: stretch;
    }
    
    .atuacao-cta-button p {
        font-size: 16px;
        line-height: 22px;
    }
    
    .atuacao-slider-wrapper {
        width: calc(100% + 15px);
        margin-right: -15px;
    }
    
    .atuacao-card {
        width: 260px;
        height: 220px;
        padding: 20px;
    }
    
    .atuacao-card-text p {
        font-size: 18px;
        line-height: 24px;
    }
}

/* ========================================
   EFICIÊNCIA ENERGÉTICA SECTION
======================================== */
.eficiencia-section {
    position: relative;
    width: 100%;
}

.eficiencia-background {
    background-image: url('assets/images/DOBRA_03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eficiencia-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Lado Esquerdo */
.eficiencia-left {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    min-height: 1px;
    min-width: 1px;
    height: 100%;
    
}

.eficiencia-image {
    flex: 1;
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(249, 249, 249, 0.24);
    height: auto;
}

.eficiencia-img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 85.04%;
    display: block;
}

.eficiencia-title {
    position: relative;
    width: 100%;
}

.eficiencia-title h2 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #f5693c;
    text-align: left;
    margin: 0;
    position: relative;
}

.eficiencia-description {
    position: relative;
    width: 100%;
}

.eficiencia-description p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f9f9f9;
    text-align: left;
    margin: 0;
    position: relative;
}

/* Lado Direito */
.eficiencia-right {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    min-height: 1px;
    min-width: 1px;
}

/* Boxes */
.eficiencia-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
}

.eficiencia-bar {
    background-color: #f5693c;
    height: 100%;
    min-height: 80px;
    border-radius: 160px;
    width: 8px;
    flex-shrink: 0;
    align-self: stretch;
}

.eficiencia-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    min-height: 1px;
    min-width: 1px;
}

.eficiencia-text p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #f9f9f9;
    text-align: left;
    margin: 0;
    position: relative;
}

.eficiencia-text p strong {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-style: normal;
}

/* ========================================
   EFICIÊNCIA ENERGÉTICA RESPONSIVE
======================================== */

@media (max-width: 768px) {
    
    .eficiencia-title h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .eficiencia-description p,
    .eficiencia-text p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .eficiencia-right {
        gap: 32px;
    }
    
    .eficiencia-bar {
        min-height: 60px;
        width: 6px;
    }
}

@media (max-width: 480px) {
    
    .eficiencia-title h2 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .eficiencia-description p,
    .eficiencia-text p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .eficiencia-right {
        gap: 24px;
    }
    
    .eficiencia-box {
        gap: 16px;
    }
    
    .eficiencia-bar {
        min-height: 50px;
        width: 4px;
    }
}

/* ========================================
   DOBRA 04 - SOLUÇÕES E RESULTADOS SECTION
======================================== */
.dobra04-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.dobra04-background {
    background-image: url('../assets/images/dobra04-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dobra04-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

/* ========================================
   BENEFÍCIOS DAS SOLUÇÕES
======================================== */
.beneficios-solucoes {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

.beneficios-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
}

.beneficios-icon {
    position: relative;
    width: 48px;
    height: 48px;
    overflow: hidden;
    flex-shrink: 0;
}

.beneficios-header h2 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 100;
    font-size: 40px;
    line-height: 48px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
    white-space: nowrap;
}

.beneficios-slider {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

/* Slides das imagens */
.beneficio-slide {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    flex: 1;
    height: 360px;
    min-height: 1px;
    min-width: 1px;
    position: relative;
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid #34388E;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.slide-hibridas {
    background: linear-gradient(180deg, rgba(23, 29, 73, 0.00) 0%, #171D49 100%), url('assets/images/slide-hibridas.jpg') lightgray 50% / cover no-repeat;
}

.slide-impacto {
    background: linear-gradient(180deg, rgba(23, 29, 73, 0.00) 0%, #171D49 100%), url('assets/images/slide-impacto.jpg') lightgray 50% / cover no-repeat;
}

.slide-engenharia {
    background: linear-gradient(180deg, rgba(23, 29, 73, 0.00) 0%, #171D49 100%), url('assets/images/slide-engenharia.jpg') lightgray 50% / cover no-repeat;
}

.slide-instalacao {
    background: linear-gradient(180deg, rgba(23, 29, 73, 0.00) 0%, #171D49 100%), url('assets/images/slide-instalacao.jpg') lightgray 50% / cover no-repeat;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 32px;
}

.slide-content h3 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #f9f9f9;
    text-align: left;
    margin: 0;
    position: relative;
}

/* Slide ativo expandido */
.beneficio-ativo {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    min-height: 1px;
    min-width: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.beneficio-ativo.active {
    opacity: 1;
    transform: translateY(0);
}

.beneficio-ativo h3 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f5693c;
    text-align: left;
    margin: 0;
    position: relative;
    width: 100%;
}

.beneficio-ativo p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: left;
    margin: 0;
    position: relative;
    width: 100%;
}

/* ========================================
   BIG NUMBERS - RESULTADOS
======================================== */
.big-numbers {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

.big-numbers-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
}

.big-numbers-icon {
    position: relative;
    width: 48px;
    height: 48px;
    overflow: hidden;
    flex-shrink: 0;
}

.big-numbers-header h2 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 100;
    font-size: 40px;
    line-height: 48px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
    white-space: nowrap;
}

.big-numbers-boxes {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

.big-number-box {
    flex: 1;
    height: 320px;
    min-height: 1px;
    min-width: 1px;
    position: relative;
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid #34388E;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px;
    box-sizing: border-box;
}

.box-orange {
    background-color: #f5693c;
}

.box-blue {
    background-color: #171d49;
}

.box-icon {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    flex-shrink: 0;
}

.box-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}

.box-orange .box-content h3 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #171d49;
    text-align: left;
    margin: 0;
    position: relative;
}

.box-blue .box-content h3 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #f9f9f9;
    text-align: left;
    margin: 0;
    position: relative;
}

.box-orange .box-content p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #171d49;
    text-align: left;
    margin: 0;
    position: relative;
}

.box-blue .box-content p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f9f9f9;
    text-align: left;
    margin: 0;
    position: relative;
}

/* ========================================
   CTA FINAL
======================================== */
.cta-final {
    background-color: #171d49;
    position: relative;
    border-radius: 16px;
    width: 100%;
    flex-shrink: 0;
    border: 1px solid #34388E;
}

.cta-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
    border-radius: 16px;
}

.cta-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    width: 727px;
    box-sizing: border-box;
    background: url('assets/images/equipe-ipper.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    min-width: 1px;
    justify-content: space-between;
    position: relative;
    width: 100%;

    box-sizing: border-box;
    padding: 40px 56px;
    gap: 32px;
}

.cta-logo {
    height: 40px;
    width: 169px;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    background-size: 219.79% 100%;
    background-position: 0.04% 0%;
    background-repeat: no-repeat;
    object-fit: cover;
    object-position: 0.04% 0%;
}

.cta-right h2 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    position: relative;
    width: 100%;
}

.cta-button-container {
    position: relative;
    flex-shrink: 0;
}

.cta-primary {
    color: #fff;
    background-color: #e55a33;
    font-size: 18px;
    font-weight: 700;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    position: relative;
    border-radius: 3600px;
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    color: #e55a33;
    background-color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    position: relative;
    border-radius: 3600px;
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary {
    border: 1px #fff solid;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    position: relative;
    border-radius: 3600px;
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border: 1px #fff solid;
    background-color: #fff;
}

.cta-button:hover {
    background-color: #e55a33;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 105, 60, 0.3);
}

.cta-button span {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ========================================
   DOBRA 04 RESPONSIVE
======================================== */


@media (max-width: 768px) {
    
    .beneficios-header h2,
    .big-numbers-header h2 {
        font-size: 28px;
        line-height: 36px;
        white-space: normal;
        text-align: center;
    }
    
    .slide-content h3 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .beneficio-ativo h3 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .beneficio-ativo p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .big-number-box {
        height: 240px;
        padding: 24px;
    }
    
    .box-content h3 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .box-content p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .cta-container {
        flex-direction: column;
    }
    

    .cta-right h2 {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 480px) {
    
    .beneficios-header h2,
    .big-numbers-header h2 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .slide-content h3 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .beneficio-ativo h3 {
        font-size: 18px;
        line-height: 24px;
    }
    
    .beneficio-ativo p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .big-number-box {
        height: 200px;
        padding: 20px;
    }
    
    .box-content h3 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .box-content p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .cta-right h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

/* ========================================
   SOLUÇÕES SECTION
======================================== */
.solucoes-section {
    background-color: #171d49;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucoes-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 88%;
}

.solucoes-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.solucoes-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucoes-header h2 {
    font-family: 'Vinila', sans-serif !important;
    font-size: 40px;
    font-weight: 100;
    line-height: 48px;
    color: #f9f9f9;
    margin: 0;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.solucoes-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.solucao-card {
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #34388E;
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
}

.solucao-card:hover {
    transform: translateY(-4px);
}

.solucao-card.orange {
    background-color: #f5693c;
}

.solucao-card.orange h3,
.solucao-card.orange p {
    color: #171d49;
}

.solucao-card.dark {
    background-color: #0b0e23;
}

.solucao-card.blue {
    background-color: #171D49;
}

.solucao-card.dark.tall {
    background-color: #0b0e23;
}

.solucao-card.dark h3,
.solucao-card.dark p {
    color: #f9f9f9;
}

.solucao-card h3 {
    font-family: 'Vinila', sans-serif !important;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    margin: 0 0 24px 0;
}

.solucao-card p {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.solucao-card .big-text {
    font-size: 20px;
}

.solucao-card.cta-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cta-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 14, 35, 0) 0%, rgba(11, 14, 35, 0.8) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.cta-card-content {
    position: relative;
    z-index: 2;
}

.cta-button {
    background-color: #f5693c;
    border: none;
    border-radius: 8px;
    padding: 24px;
    width: 100%;
    font-family: 'Inter', sans-serif !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    color: #171d49;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.cta-button-02 {
    background-color: #f5693c;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    width: 100%;
    font-family: 'Inter', sans-serif !important;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    color: #171d49;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.cta-button:hover {
    background-color: #e55a33;
}

/* Responsive */

@media (max-width: 768px) {
    .solucoes-section {
        padding: 60px 0;
    }
    
    .solucoes-header h2 {
        font-size: 32px;
        line-height: 38px;
    }
    
    .solucao-card h3 {
        font-size: 28px;
        line-height: 34px;
        margin: 0 0 20px 0;
    }
    
    .solucao-card p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .cta-button {
        font-size: 16px;
        line-height: 22px;
        padding: 20px;
    }
}

/* ========================================
   PARCERIAS ESTRATÉGICAS SECTION
======================================== */
.parcerias-section {
    background-color: #171d49;
    position: relative;
    width: 100%;
    padding-bottom: 80px;
}

.parcerias-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

.parcerias-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
}

.parcerias-icon {
    position: relative;
    width: 48px;
    height: 48px;
    overflow: hidden;
    flex-shrink: 0;
}

.parcerias-header h2 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 100;
    font-size: 40px;
    line-height: 48px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
}

.parcerias-header p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
}

.parcerias-content {
    background-color: #0b0e23;
    border-radius: 16px;
    padding: 64px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    justify-content: flex-start;
}

.parcerias-tabs {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.parceria-tab {
    background-color: #f9f9f9;
    border: 1px solid #f9f9f9;
    border-radius: 8px;
    padding: 24px;
    position: relative;
    width: 100%;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.parceria-tab.active {
    opacity: 1;
    background-color: #f9f9f9;
    border-color: #f9f9f9;
}

.parceria-tab:hover {
    opacity: 1;
}

.parcerias-content-area {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    min-height: 1px;
    min-width: 1px;
}

.parceria-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.parceria-content.active {
    opacity: 1;
    transform: translateY(0);
}

.parceria-logo {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.parceria-content p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: left;
    margin: 0 0 16px 0;
    position: relative;
    width: 100%;
}

.parceria-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   PARCERIAS ESTRATÉGICAS RESPONSIVE
======================================== */

@media (max-width: 768px) {
    
    .parcerias-header h2 {
        font-size: 32px;
        line-height: 38px;
    }
    
    .parcerias-header p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .parcerias-tabs {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .parceria-tab {
        min-width: auto;
        padding: 16px;
    }
}

@media (max-width: 480px) {

    
    .parcerias-header h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .parcerias-header p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .parceria-tab {
        padding: 12px;
    }
}

/* ========================================
   NOSSOS DIFERENCIAIS SECTION
======================================== */
.diferenciais-section {
    background-color: #0b0e23;
    position: relative;
    width: 100%;
    padding: 80px 0;
}

.diferenciais-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;

}

.diferenciais-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header da Seção */
.diferenciais-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
}

.diferenciais-header h2 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
}

.title-orange {
    background: linear-gradient(to bottom, #f5693c 0%, #c2370a 88.75%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
}


.diferenciais-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.diferenciais-card {
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #34388E;
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
}

.diferencial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.diferencial-card.card-dark {
    background-color: #171d49;
    border-color: #34388E;
}

.diferencial-card.card-orange {
    background-color: #f5693c;
    border-color: #34388E;
}

.diferencial-card p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.diferencial-card.card-dark p {
    color: #f9f9f9;
}

.diferencial-card.card-orange p {
    color: #171d49;
}

/* Card especial com mapa */
.diferencial-card.card-mapa {
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.mapa {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapa svg {
    display: block;
    width: auto;
    height: 100%;
}




/* ========================================
   DIFERENCIAIS RESPONSIVE
======================================== */

@media (max-width: 768px) {
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .diferenciais-column {
        gap: 16px;
        min-height: auto;
    }
    
    .diferencial-card {
        padding: 20px;
        gap: 8px;
        min-height: 120px;
    }
    
    .diferencial-card p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .mapa-brasil {
        height: 200px;
    }
    
    .diferencial-card.card-mapa {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .diferenciais-section {
        padding: 60px 0;
    }
    
    .diferenciais-header h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .diferencial-card {
        padding: 16px;
        gap: 6px;
        min-height: 100px;
    }
    
    .diferencial-card p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .mapa-brasil {
        height: 160px;
    }
}

/* ========================================
   NOSSOS DIFERENCIAIS SECTION
======================================== */
.diferenciais-section {
    background-color: #0b0e23;
    position: relative;
    width: 100%;
}

.diferenciais-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Header da Seção */
.diferenciais-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 1280px;
    max-width: 100%;
}

.diferenciais-left {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    min-height: 1px;
    min-width: 1px;
}

.diferenciais-left h2 {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #f5693c;
    text-align: left;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.diferenciais-left p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #f9f9f9;
    text-align: left;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.diferenciais-right {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    min-height: 1px;
    min-width: 1px;
}

.diferenciais-right p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f9f9f9;
    text-align: right;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

/* Grid de Cards */
.diferenciais-grid {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 1280px;
    max-width: 100%;
}

.diferenciais-column {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 410.66px;
    max-width: 100%;
    
}



/* Cards */
.diferencial-card {
    background-color: #171d49;
    border: 1px solid #34388E;
    border-radius: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 32px;
    position: relative;
    width: 100%;
    height: 160px;
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.diferencial-card.card-dark {
    background-color: #171d49;
    border-color: #34388E;
}

.diferencial-card.card-orange {
    background-color: #f5693c;
    border-color: #34388E;
}

.diferencial-card p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.diferencial-card.card-dark p {
    color: #f9f9f9;
}

.diferencial-card.card-orange p {
    color: #171d49;
}

/* Card especial com mapa */
.card-mapa {
    gap: 24px;
    justify-content: space-between;
    height: 528px;
}

.mapa-brasil {
    position: relative;
    width: 100%;
    height: 350px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapa-brasil svg {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 350px;
}

/* Card grande na terceira coluna */
.card-grande {
    height: 344px;
}

/* ========================================
   NOSSOS DIFERENCIAIS RESPONSIVE
======================================== */

@media (max-width: 768px) {
    
    .diferenciais-header {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .diferenciais-left h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .diferenciais-left p {
        font-size: 24px;
        line-height: 32px;
    }
    
    .diferenciais-right p {
        font-size: 20px;
        line-height: 28px;
        text-align: left;
    }
    
    .diferencial-card {
        padding: 24px;
        gap: 8px;
        height: 140px;
    }
    
    .diferencial-card p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .card-mapa {
        gap: 20px;
        height: 388px;
    }
    
    .mapa-brasil {
        height: 220px;
    }
    
    .card-grande {
        height: 248px;
    }
}

@media (max-width: 480px) {
    
    .diferenciais-header {
        gap: 20px;
    }
    
    .diferenciais-left h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .diferenciais-left p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .diferenciais-right p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .diferencial-card {
        padding: 20px;
        gap: 8px;
        height: 100%;
    }
    
    .diferencial-card p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .card-mapa {
        gap: 16px;
        height: 304px;
    }
    
    .mapa-brasil {
        height: 180px;
    }
    
    .card-grande {
        height: 184px;
    }
}

/* ========================================
   DOBRA 07 - EMPRESAS QUE CONFIAM NO IPPER
======================================== */
.empresas-section {
    background-color: #171d49;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.empresas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.empresas-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    width: 88%;
    max-width: 1280px;
}

/* Seção de Marcas */
.marcas-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
}

/* Título */
.empresas-title {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #f5693c;
    text-align: center;
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

/* Container de Logos */
.logos-container {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Item do Logo */
.logo-item {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Background para logo que usa imagem */
.logo-background {
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* Call to Action */
.empresas-cta {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.cta-text {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
}

.cta-button {
    background-color: #f5693c;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    position: relative;
    border-radius: 3600px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e55a33;
    transform: scale(1.05);
    box-shadow: 0px 8px 24px rgba(245, 105, 60, 0.3);
}

.cta-link {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #f9f9f9;
    text-decoration: none;
}

/* ========================================
   DOBRA 07 RESPONSIVE
======================================== */

@media (max-width: 768px) {
    
    .empresas-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .cta-text {
        font-size: 18px;
        line-height: 26px;
        white-space: normal;
        text-align: center;
    }
    
    .logos-container {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-item {
        min-width: 80px;
        min-height: 32px;
    }
    
    .cta-button {
        padding: 12px 24px;
        align-self: stretch;
    }
    
    .cta-link {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    
    .empresas-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .cta-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .logos-container {
        gap: 16px;
    }
    
    .logo-item {
        min-width: 70px;
        min-height: 28px;
    }
    
    .cta-button {
        padding: 10px 20px;
    }
    
    .cta-link {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ========================================
   PROJETOS SECTION
======================================== */
.projetos-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

/* Header */
.projetos-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
}

.projetos-icon {
    opacity: 0.9;
    overflow: hidden;
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.projetos-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.projetos-title {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 100;
    font-size: 40px;
    line-height: 48px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.projetos-description {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    width: 80%;
}

/* Tabs */
.proj-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.proj-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
}

/* Tabs Navigation */
.proj-tabs-nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.proj-tab-btn {
    background: transparent;
    border: 1px solid #f9f9f9;
    border-radius: 800px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #f9f9f9;
    white-space: nowrap;
    line-height: 24px;
    position: relative;
}

.proj-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 249, 249, 0.2);
}

.proj-tab-btn.active {
    background-color: #f9f9f9;
    border-color: #f9f9f9;
    color: #0e2134;
    font-weight: 700;
}

.proj-tab-btn:focus {
    outline: 2px solid #f9f9f9;
    outline-offset: 2px;
}

/* Content Area */
.proj-content {
    width: 100%;
    position: relative;
}

.proj-tab-content {
    display: none;
    width: 100%;
    animation: projFadeIn 0.5s ease-in-out;
}

.proj-tab-content.active {
    display: block;
}

@keyframes projFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Projects Grid */
.proj-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Project Cards */
.proj-card {
    width: 312px;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    position: relative;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.proj-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(249, 249, 249, 0.5);
    border-radius: 12px;
    pointer-events: none;
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.16);
}

.proj-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.proj-card-info {
    backdrop-filter: blur(2px);
    background-color: #171d49;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.proj-card-details {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.proj-card-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.proj-card-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #f9f9f9;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proj-card-location {
    font-family: 'Vinila', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #f9f9f9;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proj-card-tag {
    background-color: #0b0e23;
    border-radius: 4px;
    padding: 4px 8px;
    flex-shrink: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proj-card-tag span {
    font-family: 'Vinila', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: #f9f9f9;
    white-space: nowrap;
    text-align: center;
}

/* Demo cards for tabs without real images */
.proj-demo-card {
    background: linear-gradient(135deg, #1a1d3a 0%, #2a2d5a 100%);
    border: 1px solid rgba(249, 249, 249, 0.2);
}

.proj-demo-card::before {
    background: rgba(249, 249, 249, 0.1);
}

/* Modal Styles */
.proj-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.proj-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.proj-modal {
    width: 88%;
    margin: auto;
    max-width: 1280px;
    max-height: 90vh;
    background-color: #0b0e23;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.proj-modal-overlay.active .proj-modal {
    transform: scale(1) translateY(0);
}

.proj-modal-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
    justify-content: center;
    padding: 32px;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.proj-modal-image {
    width: 400px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    align-self: stretch;
}

.proj-demo-modal-image {
    background: linear-gradient(135deg, #1a1d3a 0%, #2a2d5a 100%);
    border: 1px solid rgba(249, 249, 249, 0.2);
}

.proj-modal-text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    max-width: 80%;
    min-width: 0;
}

.proj-modal-text p {
    margin: 0;
    text-align: left;
}

.proj-modal-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    background-color: #171d49;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.proj-modal-close:hover {
    background-color: #1f2555;
    transform: scale(1.1);
}

.proj-modal-close:focus {
    outline: 2px solid #f9f9f9;
    outline-offset: 2px;
}

.proj-modal-close span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: center;
}

/* Responsive Design */

@media (max-width: 768px) {
    
    .proj-section {
        gap: 48px;
    }
    
    .proj-tab-btn {
        font-size: 16px;
        padding: 12px 20px;
        flex-shrink: 0;
    }
    
    .proj-grid {
        gap: 16px;
    }
    
    .proj-card {
        width: 100%;
        max-width: 320px;
        height: 220px;
    }
    
    .proj-card-name {
        font-size: 16px;
        line-height: 22px;
    }
    
    .proj-card-location {
        font-size: 14px;
        line-height: 18px;
    }
    
    .proj-card-tag {
        width: 75px;
        padding: 3px 6px;
    }
    
    .proj-card-tag span {
        font-size: 11px;
        line-height: 14px;
    }

    /* Modal Responsive */
    .proj-modal-overlay {
        padding: 16px;
    }

    .proj-modal {
        max-width: 100%;
        max-height: 85vh;
    }

    .proj-modal-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        min-height: auto;
    }

    .proj-modal-image {
        width: 100%;
        height: 200px;
        flex-shrink: 0;
    }

    .proj-modal-text {
        font-size: 14px;
        line-height: 22px;
        gap: 12px;
    }

    .proj-modal-close {
        top: 20px;
        right: 20px;
        width: 28px;
        height: 28px;
    }

    .proj-modal-close span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    
    .proj-tab-btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .proj-card {
        height: 200px;
    }
    
    .proj-card-info {
        padding: 12px;
    }
    
    .proj-card-details {
        gap: 12px;
    }
    
    .proj-card-left {
        gap: 6px;
    }

    .proj-modal-overlay {
        padding: 12px;
    }

    .proj-modal-content {
        padding: 16px;
        gap: 16px;
    }

    .proj-modal-image {
        height: 180px;
    }

    .proj-modal-text {
        font-size: 13px;
        line-height: 20px;
        gap: 10px;
    }

    .proj-modal-close {
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
    }

    .proj-modal-close span {
        font-size: 12px;
    }
}

/* Loading Animation */
.proj-tab-content.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Accessibility */
.proj-tab-btn:focus-visible {
    outline: 2px solid #f9f9f9;
    outline-offset: 2px;
}

.proj-card:focus-visible {
    outline: 2px solid #f9f9f9;
    outline-offset: 2px;
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .proj-card-info {
        background-color: rgba(23, 29, 73, 0.9);
    }
    
    .proj-card-tag {
        background-color: rgba(11, 14, 35, 0.9);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .proj-tab-btn {
        border-width: 2px;
    }
    
    .proj-tab-btn.active {
        border-width: 2px;
        border-color: #000;
    }
    
    .proj-card::before {
        border-width: 2px;
    }

    .proj-modal {
        border: 2px solid #f9f9f9;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .proj-tab-btn,
    .proj-card,
    .proj-modal-overlay,
    .proj-modal {
        transition: none;
    }
    
    @keyframes projFadeIn {
        from, to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Scroll behavior for modal content */
.proj-modal-text {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(249, 249, 249, 0.3) transparent;
}

.proj-modal-text::-webkit-scrollbar {
    width: 6px;
}

.proj-modal-text::-webkit-scrollbar-track {
    background: transparent;
}

.proj-modal-text::-webkit-scrollbar-thumb {
    background-color: rgba(249, 249, 249, 0.3);
    border-radius: 3px;
}

.proj-modal-text::-webkit-scrollbar-thumb:hover {
    background-color: rgba(249, 249, 249, 0.5);
}

/* Focus trap for modal */
.proj-modal-overlay:not(.active) {
    pointer-events: none;
}

.proj-modal-overlay.active {
    pointer-events: auto;
}

/* Animation performance optimization */
.proj-modal-overlay,
.proj-modal {
    will-change: transform, opacity;
}

.proj-modal-overlay.active .proj-modal {
    will-change: auto;
}
/* ========================================
   PROJETOS RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .projetos-section {
        gap: 40px;
    }
    
    .projetos-title {
        font-size: 28px;
        line-height: 36px;
        white-space: normal;
        text-align: center;
    }
    
    .projetos-description {
        font-size: 18px;
        line-height: 26px;
        white-space: normal;
        text-align: center;
    }
    
    .projetos-tabs {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .projeto-tab {
        padding: 10px 16px;
    }
    
    .projeto-tab p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .projetos-content {
        gap: 16px;
        justify-content: center;
    }
    
    .projeto-card {
        width: 260px;
        height: 220px;
        padding: 10px;
    }
    
    .projeto-texto > div {
        padding: 12px;
    }
    
    .projeto-empresa {
        font-size: 16px;
        line-height: 22px;
    }
    
    .projeto-local {
        font-size: 14px;
        line-height: 18px;
    }
    
    .projeto-tag {
        width: 75px;
        padding: 3px 6px;
    }
    
    .projeto-tag span {
        font-size: 10px;
        line-height: 14px;
    }
}

@media (max-width: 480px) {
    .projetos-section {
        gap: 32px;
    }
    
    .projetos-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .projetos-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .projetos-tabs {
        gap: 6px;
    }
    
    .projeto-tab {
        padding: 8px 12px;
    }
    
    .projeto-tab p {
        font-size: 12px;
        line-height: 18px;
    }
    
    .projetos-content {
        gap: 12px;
    }
    
    .projeto-card {
        width: 240px;
        height: 200px;
        padding: 8px;
    }
    
    .projeto-texto > div {
        padding: 10px;
    }
    
    .projeto-empresa {
        font-size: 14px;
        line-height: 20px;
    }
    
    .projeto-local {
        font-size: 12px;
        line-height: 16px;
    }
    
    .projeto-tag {
        width: 70px;
        padding: 2px 4px;
    }
    
    .projeto-tag span {
        font-size: 9px;
        line-height: 12px;
    }
}

/* ========================================
   PROJETO MODAL RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        max-height: 90vh;
    }
    
    .modal-container {
        padding: 20px;
        gap: 20px;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .modal-text p {
        margin-bottom: 14px;
    }
    
    .modal-close {
        top: 20px;
        right: 20px;
        width: 28px;
        height: 28px;
    }
    
    .modal-close span {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95vw;
        max-height: 90vh;
    }
    
    .modal-container {
        padding: 16px;
        gap: 16px;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .modal-text p {
        margin-bottom: 12px;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
    }
    
    .modal-close span {
        font-size: 12px;
        line-height: 18px;
    }
}

/* Animações para transições */
.projetos-content.fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.15s ease-out;
}

.projetos-content.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in;
}

.projeto-card.animate-in {
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FOOTER STYLES
======================================== */
.footer-section {
    background-color: #0b0e23;
    position: relative;
    width: 100%;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.footer-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    width: 88%;
    max-width: 1280px;
    margin: auto;
}

/* Redes Sociais Section */
.footer-redes {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.footer-title {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #f5693c;
    text-align: center;
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

.footer-description {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #f9f9f9;
    text-align: center;
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

/* Social Icons */
.footer-social-icons {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.social-icon {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Linha Divisória */
.footer-divider {
    background-color: #f9f9f9;
    height: 1px;
    mix-blend-mode: overlay;
    flex-shrink: 0;
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

/* Footer Logo */
.footer-logo {
    background-size: 219.79% 100%;
    background-position: 0.04% 0%;
    background-repeat: no-repeat;
    height: 40px;
    flex-shrink: 0;
    width: 169px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    font-size: 32px;
    color: #f5693c;
    text-align: center;
}

/* Footer Copyright */
.footer-copyright {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f9f9f9;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.footer-copyright p {
    margin: 0;
    color: #f9f9f9;
}

/* Footer Responsive */

@media (max-width: 768px) {
    .footer-container {
        padding: 60px 20px;
        gap: 32px;
    }
    
    .footer-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .footer-copyright {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 40px 15px;
        gap: 24px;
    }
    
    .footer-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .footer-copyright {
        font-size: 18px;
        line-height: 24px;
    }
}

.rd-container {
    background-color: #171D49;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 80px;
}

.rd-section {
    background-color: #0b0e23;
    border-radius: 16px;
    width: 88%;
    max-width: 1280px;
    margin: auto;
}

.rd-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 64px;
    gap: 64px;
    width: 100%;
    min-height: 400px;
}

/* Screen Reader Only */
.rd-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Lado Esquerdo */
.rd-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.rd-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.rd-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.rd-title {
    font-family: 'Vinila', sans-serif;
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    color: #f9f9f9;
    margin: 0;
    width: 100%;
    text-align: left;
}

.rd-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #f9f9f9;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* Lado Direito */
.rd-right {
    width: 544px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.rd-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Campos do Formulário */
.form-field {
    width: 100%;
    position: relative;
}

.form-field input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #F9F9F9;
    border-radius: 8px;
    padding: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #F9F9F9;
    outline: none;
    transition: all 0.3s ease;
}

.form-field input::placeholder {
    color: #f9f9f9;
    opacity: 0.7;
}

.form-field input:focus {
    border-color: #F9F9F9;
    box-shadow: 0 0 0 2px rgba(249, 249, 249, 0.2);
}

.form-field input:valid {
    border-color: #F9F9F9;
}

/* Texto LGPD */
.form-lgpd {
    width: 100%;
    text-align: center;
}

.form-lgpd p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #F9F9F9;
    margin: 0;
}

/* Botão Submit */
.form-submit {
    background-color: #F9F9F9;
    border: none;
    border-radius: 3600px;
    padding: 16px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 249, 249, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-submit span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #E15303;
    text-align: center;
    white-space: nowrap;
}

/* Estados de carregamento */
.form-submit.loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #E15303;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mensagens de feedback */
.form-message {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin-top: 16px;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.rd-textarea {
    width: 100%;
    border: 1px solid #f9f9f9;
    border-radius: 8px;
    background-color: transparent;
    color: #f9f9f9;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    padding: 16px 20px;
    outline: none;
    transition: all 0.3s ease;
}

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

.rd-input::placeholder,
.rd-textarea::placeholder {
    color: #f9f9f9;
    opacity: 0.7;
}

.rd-textarea:hover {
    border-color: rgba(249, 249, 249, 0.8);
}

.rd-textarea.rd-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.rd-textarea.rd-success {
    border-color: #16a34a;
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
}

/* Responsive Design */


@media (max-width: 768px) {

    .rd-content {
        flex-direction: column;
        gap: 40px;
        padding: 32px;
        text-align: center;
    }

    .rd-left {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .rd-title {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }

    .rd-subtitle {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }

    .rd-input,
    .rd-textarea {
        font-size: 20px;
        line-height: 30px;
        padding: 14px 18px;
    }

    .rd-input {
        height: 60px;
    }

    .rd-textarea {
        min-height: 100px;
    }

    .rd-button {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .rd-content {
        padding: 24px;
        gap: 32px;
    }

    .rd-title {
        font-size: 28px;
        line-height: 36px;
    }

    .rd-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .rd-input,
    .rd-textarea {
        font-size: 18px;
        line-height: 28px;
        padding: 12px 16px;
    }

    .rd-input {
        height: 56px;
    }

    .rd-textarea {
        min-height: 90px;
    }

    .rd-button {
        font-size: 16px;
        padding: 12px 24px;
    }

    .rd-icon {
        width: 40px;
        height: 40px;
    }

    .rd-consent-label {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Accessibility */
.rd-input:focus-visible,
.rd-textarea:focus-visible,
.rd-button:focus-visible,
.rd-checkbox:focus-visible {
    outline: 2px solid #f9f9f9;
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .rd-input,
    .rd-textarea {
        border-width: 2px;
    }

    .rd-button {
        border: 2px solid #f5693c;
    }

    .rd-checkbox {
        border: 2px solid #f9f9f9;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .rd-input,
    .rd-textarea,
    .rd-button,
    .rd-button-text {
        transition: none;
    }

    .rd-spinner {
        animation: none;
    }
}

/* Print styles */
@media print {
    .rd-button {
        background-color: transparent;
        border: 2px solid #000;
        color: #000;
    }

    .rd-input,
    .rd-textarea {
        border-color: #000;
        color: #000;
    }

    .rd-success-message,
    .rd-error-general {
        border-color: #000;
        color: #000;
    }
}

/* Dark theme adjustments */
@media (prefers-color-scheme: dark) {
    .rd-input,
    .rd-textarea {
        background-color: rgba(249, 249, 249, 0.05);
    }
}

/* Loading overlay para form inteiro */
.rd-form.submitting {
    position: relative;
    pointer-events: none;
}

.rd-form.submitting::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 14, 35, 0.7);
    z-index: 10;
    border-radius: 8px;
}

/* Validação visual em tempo real */
.rd-field.validating .rd-input,
.rd-field.validating .rd-textarea {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

/* Animação de entrada */
.rd-form {
    animation: rd-fadeIn 0.5s ease-out;
}

@keyframes rd-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo para links de política */
.rd-policy-links {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    line-height: 18px;
    color: rgba(249, 249, 249, 0.7);
}

.rd-policy-links a {
    color: #f5693c;
    text-decoration: none;
    margin: 0 8px;
}

.rd-policy-links a:hover {
    text-decoration: underline;
}

.tabs-system {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    width: 100%;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 200px;
}

.tab-button {
    background-color: #f9f9f9;
    border: 1px solid #f9f9f9;
    border-radius: 8px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    opacity: 0.7;
}

.tab-button:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 249, 249, 0.2);
}

.tab-button.active {
    opacity: 1;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(249, 249, 249, 0.3);
}

.tab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.content-panel-tabs {
    flex: 1;
    position: relative;
}

.tab-content img {
    max-width: 200px;
}

.content-section-tabs {
    display: none;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.content-section-tabs.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-tabs-logo {
    margin-bottom: 16px;
}

.large-weg-logo {
    width: 120px;
    height: 85px;
}

.large-teltonika-logo {
    width: 245px;
    height: 48px;
}

.large-abgd-logo {
    width: 141px;
    height: 48px;
}

.content-text {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    width: 100%;
}

.content-tabs-text p {
    margin-bottom: 16px;
    font-weight: 400;
}

.content-tabs-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {

.hero-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 0;
    position: relative;
    width: 88%;
    margin: 0 auto;
}

.hero-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid #303c97;
    pointer-events: none;
}

.header-container {
    padding: 20px 0;
}

.hero-left {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.hero-right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 360px;
    min-height: 360px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
}

.atuacao-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
    padding: 32px 0;
    position: relative;
    width: 88%;
    margin: auto;
}

.eficiencia-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    position: relative;
    width: 88%;
    margin: 0 auto;
}

.dobra04-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    position: relative;
    width: 88%;
    margin: 0 auto;
}

.beneficios-slider {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

.beneficio-slide {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    flex: 1;
    height: 400px;
    width: 100%;
    position: relative;
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid #34388E;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    height: 160px;
    box-sizing: border-box;
    padding: 20px;
}

.big-numbers-boxes {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

.big-number-box {
    flex: 1;
    height: 320px;
    width: 100%;
    position: relative;
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid #34388E;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    box-sizing: border-box;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    min-width: 1px;
    justify-content: space-between;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 24px;
    gap: 32px;
}

.cta-left {
    width: 100%;
    height: 200px;
    background-size: cover;
}

.solucoes-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.solucao-card {
    height: auto;
    padding: 32px;
}

.solucoes-header {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.parcerias-content {
    background-color: #0b0e23;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    justify-content: flex-start;
}

.tabs-system {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 100%;
}

.diferenciais-section {
    padding: 40px 0;
}

.diferenciais-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

.empresas-wrapper {
    padding: 40px 0;
}

.rd-right {
    width: 100%;
}

}

.thank-you-page {
    padding: 160px;
    text-align: center!important;
    border-bottom: 1px solid #f5693c;
}

.hero-title-gradient {
    background: linear-gradient(to bottom, #f5693c 0%, #c2370a 88.75%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Vinila', sans-serif !important;
    font-weight: 800;
    position: relative;
    width: 100%;
    font-size: 64px;
    line-height: 70px;
    margin: 0 0 0 0;
    color: transparent;
}