:root {
    --bg-body: #ffffff;
    --bg-surface: #f4f6f8;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --border-color: #e9ecef;
    --orange: #FF6B35;
    --orange-hover: #e85d2a;
    --bg-orange-light: rgba(255, 107, 53, 0.1);
    --shadow-sm: 0 4px 12px rgba(243, 25, 145, 0.05);
    --shadow-lg: 0 20px 40px rgba(176, 9, 210, 0.08);
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --input-bg: #ffffff;
    --input-border: #dfe6e9;
}


/* ============================
   Reset & Tipografia
   ============================ */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
.display-3,
.display-6 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
}

#sobre_titulo {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
}

#banner-3 {
    font-size: 40px;
}

.text-orange {
    color: var(--orange) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-orange-subtle {
    background-color: var(--bg-orange-light) !important;
}

/* ============================
   Banner Tecnológico
   ============================ */
.tech-banner {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-fixed-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-fixed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-minimalist-content {
    padding-left: 18px; 
    padding-top: 60px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-keywords-minimal .hero-word {
    font-family: "Bebas Neue", sans-cursive;
    color: var(--orange); 
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.0;
    margin: 0;
    text-align: left;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Garante que o banner ocupe a tela inteira corretamente */
.tech-banner {
    height: 100vh;
    min-height: 600px;
}

@media (max-width: 991px) {
    .hero-minimalist-content {
        padding-left: 0;
        align-items: center; 
        text-align: center;
    }
    .hero-keywords-minimal .hero-word {
        text-align: center;
    }
}

@keyframes tech-slide {

    0%,
    25% {
        opacity: 0;
    }

    30%,
    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* sombra transição sections */

.tech-banner {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: transparent; 
}

.hero-fixed-image {
    display: block; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.hero-fixed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.tech-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1); 
    z-index: 2;
    pointer-events: none;
}


.tech-banner-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #293241 0%, rgba(41, 50, 65, 0) 100%);
    z-index: 4;
    pointer-events: none;
}


.tech-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.tech-slogan {
    font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.tech-slogan div {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up 0.8s ease forwards;
}

.tech-slogan div:nth-child(1) {
    animation-delay: 0.5s;
}

.tech-slogan div:nth-child(2) {
    animation-delay: 1s;
    color: var(--orange);
}

.tech-slogan div:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-counter {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fade-in 1s ease 2s forwards;
}

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

.counter-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.5rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.tech-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fade-in 1s ease 3s forwards;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: var(--orange);
    transform: translateY(5px);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: var(--orange);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

#tech-banner{
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}


@keyframes scroll-down {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

.tech-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: move-glow 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes move-glow {

    0%,
    100% {
        transform: translate(-100px, -100px);
    }

    50% {
        transform: translate(100px, 100px);
    }
}
/* ============================
   Navbar Split (Estilo de Blocos)
   ============================ */

.navbar-split {
    background-color: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
}

.nav-box {
    background-color: #00AEEF; /* Azul vibrante conforme a imagem */
    border-radius: 2px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-box-links {
    max-width: fit-content;
}

.nav-box .nav-link {
    color: white !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 15px !important;
    border-radius: 8px;
}

.nav-box .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: none;
}

/* Quando der scroll, as caixas podem ficar menores ou mudar de cor */
.navbar.scrolled .nav-box {
    background-color: rgba(0, 174, 239, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Responsividade Mobile */
@media (max-width: 991px) {
    .nav-box-links {
        width: auto;
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding-bottom: 10px;
    }
    
    .nav-box .navbar-nav {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px;
    }
}

/* ==========================================================================
   NAVBAR GLASSMORPHISM (EFEITO VIDRO)
   ========================================================================== */

.navbar-minimalist {
    background: transparent !important;
    padding-top: 20px;
    transition: all 0.4s ease;
}

.nav-brand-wrapper, 
.nav-links-wrapper {
    background: rgba(255, 255, 255, 0.05) !important;
    
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    
    border-radius: 1px;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
}

.nav-brand-wrapper:hover, 
.nav-links-wrapper:hover {
    background: rgba(255, 255, 255, 0.1) !important; 
   
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px); /* Flutua levemente */
}



/* Ajuste fino para a imagem da logo dentro do vidro */
.nav-brand-wrapper img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.brand-text span:first-child {
    font-family: "Bebas Neue", sans-serif; /* Consistência com o banner */
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* Estilo dos Links */
.navbar-minimalist .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

/* Efeito de sublinhado animado (Minimalista) */
.navbar-minimalist .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--orange); /* */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-minimalist .nav-link:hover::after {
    width: 20px; /* Linha curta e elegante */
}

.navbar-minimalist .nav-link:hover {
    color: var(--orange) !important;
    background: transparent !important; /* Remove o fundo cinza do hover anterior */
}

/* Efeito ao fazer Scroll */
.navbar.scrolled .nav-brand-wrapper,
.navbar.scrolled .nav-links-wrapper {
    background: #b4b4b4;
    border-color: rgba(255, 107, 53, 0.2); /* Tom leve de laranja */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Ajuste Mobile */
@media (max-width: 991px) {
    .nav-links-wrapper {
        width: auto;
    }
    .navbar-collapse {
        background: #b4b4b4;
        margin-top: 15px;
        padding: 15px;
        border-radius: 12px;
    }
}

/* ============================
            Home
   ============================ */

.home-prototype {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    
}

.home-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px; 
    
    background: linear-gradient(to bottom, #293241 15%, rgba(41, 50, 65, 0) 100%);
    
    z-index: 15; 
    pointer-events: none; 
}

.home-bottom-gradient {
    position: absolute;
    bottom: 0;       /* Fixa no rodapé da seção */
    left: 0;
    width: 100%;
    height: 200px;   /* Mesma altura do topo */
    
    /* Inverte a direção: Começa solido embaixo e fica transparente subindo */
    background: linear-gradient(to top, #293241 15%, rgba(41, 50, 65, 0) 100%);
    
    z-index: 15;      /* Mantém a consistência de camadas */
    pointer-events: none; 
}

/* Overlay Diagonal conforme o protótipo */
.home-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(41, 50, 65, 0.8) 50%, rgba(41, 50, 65, 0.9) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* Marcas de Canto Laranja Translúcido */
.corner-mark {
    position: absolute;
    width: 1080px;
    height: 1080px;
    background: var(--orange); /* #FF6B35 */
    z-index: 2;
    animation: cornerPulse 5s infinite ease-in-out;
    pointer-events: none; 
}

.mark-top-left {
    width: 700px;  
    height: 500px;

    top: -200px;
    left: -200px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Reduzimos especificamente a marca inferior */
.mark-bottom-right {
    /* Equilíbrio entre a força da superior e a sutileza da anterior */
    width: 500px;  
    height: 500px;
    
    /* Reposicionamento para a nova escala */
    bottom: -100px; 
    right: -100px;
    
    /* Mantém a identidade geométrica e animação base */
    position: absolute;
    background: var(--orange);
    opacity: 0.2;
    z-index: 2;
    filter: blur(60px);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    animation: cornerPulse 5s infinite ease-in-out;
    pointer-events: none;
}

/* ==========================================================================
   ANIMAÇÃO DE ABERTURA DIAGONAL (HOME REVEAL)
   ========================================================================== */
.corner-mark {
    position: absolute;
    background: var(--orange); /* #FF6B35 */
    /* opacity: 0.6;  */
    /* filter: blur(10px); */
    z-index: 10;
    pointer-events: none;
    will-change: width, height, top, left, bottom, right, opacity, clip-path;
    
    /* Estado Inicial: Gigantes cobrindo o centro */
    width: 130vw;
    height: 130vh;
    transition: all 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Marca Superior Esquerda (Agora maior: 700px) */
.mark-top-left {
    top: -15%;
    left: -15%;
    /* Geometria fixa do início ao fim para evitar pulos */
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Marca Inferior Direita (Ajustada para não inverter) */
.mark-bottom-right {
    bottom: -15%;
    right: -15%;
    /* Mesma ordem de pontos da sua configuração aprovada */
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

/* --- ESTADO REVELADO (Posições Finais) --- */

.home-prototype.revealed .mark-top-left {
    width: 1300px; 
    height: 1300px;
    /* opacity: 0.25; Aumentado levemente para destacar a cor predominante */
    /* filter: blur(60px); Blur maior para suavizar a transição no texto */
    top: -250px; /* Recuo ajustado para a nova escala */
    left: -250px;
}

.home-prototype.revealed .mark-bottom-right {
    width: 500px;
    height: 500px;
    /* opacity: 0.2; */
    /* filter: blur(60px); */
    bottom: -100px; /* Sua configuração aprovada */
    right: -100px;
    /* Mantém o clip-path idêntico ao inicial para evitar inversão */
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
}
/* Texto surge após a abertura */
.home-prototype.revealed .home-description-text {
    animation: fadeInUp 5s ease forwards 1.6s;
}


/* Ajuste na animação para ser mais lenta e imersiva */
@keyframes cornerPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.15; 
    }
    50% { 
        transform: scale(1.15) rotate(2deg); 
        opacity: 0.3; 
    }
}

/* Ajuste Responsivo para Marcas Grandes */
@media (max-width: 768px) {
    .corner-mark {
        width: 350px;
        height: 350px;
        top: -100px;
        left: -100px;
    }
}

/* Texto de Descrição (Impactante e Moderno) */
.home-description-text {
    font-family: "Bebas Neue", sans-serif; /* Consistência com a marca */
    color: white;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    text-align: left;
    letter-spacing: 1px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

/* ============================
   Botões
   ============================ */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-orange {
    background-color: var(--orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary-orange:hover {
    background-color: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline-custom {
    border: 1px solid var(--border-color);
    color: var(--text-main);
    background: transparent;
}

.btn-outline-custom:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

/* ============================
   Layout & Espaçamento
   ============================ */
#home {
    padding-top: 120px;
}

#sobre,
#servicos,
#contato,
#faq {

    /* margin-top: 100px; */
    /* margin-bottom: 100px; */
    padding-top: 100px;
    padding-bottom: 100px;

}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* ============================
   Animações
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.shadow-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
}

.shadow-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

@keyframes pulse-subtle {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.btn-primary-orange:hover {
    animation: pulse-subtle 0.6s ease;
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-ripple:focus:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--orange);
    border-radius: 4px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s ease 0.3s;
}

.timeline-item.visible::before {
    transform: scaleY(1);
}

.carousel-item {
    transition: transform 1.2s ease-in-out;
}

.carousel-fade .carousel-item {
    transition-duration: 1.5s;
}

/* ==========================================================================
   SEÇÃO SOBRE - TEMA CLARO E PADRONIZADO
   ========================================================================== */

.tech-about-light {
    background-color: var(--bg-body); /* #ffffff */
    position: relative;
    overflow: hidden;
}

/* Título padronizado com a seção de Serviços */
.tech-about-light h2.display-6 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    color: var(--text-main);
}

/* Ajuste das Métricas para Fundo Claro */
.tech-metrics-light {
    background: var(--bg-surface); /* #f4f6f8 */
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.metric-divider-dark {
    width: 1px;
    height: 40px;
    background: var(--border-color);
    align-self: center;
}

/* Timeline Minimalista */
.tech-timeline-light {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--border-color);
}

.timeline-node {
    position: relative;
    padding-bottom: 25px;
}

.node-dot-orange {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--bg-body);
    border: 2px solid var(--orange);
    border-radius: 50%;
    z-index: 2;
}

/* ============================
   GRADIENTES SEÇÃO SOBRE (TRANSITIONS)
   ============================ */

.sobre-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to bottom, #293241 0%, rgba(41, 50, 65, 0) 100%);
    z-index: 4;
    pointer-events: none;
}

.sobre-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #293241 0%, rgba(41, 50, 65, 0) 100%);
    z-index: 4;
    pointer-events: none;
}



#container-sobre {
    margin-top: 75px;
    margin-bottom: 200px;
}

/* Cards Informativos (Estilo Home) */
.about-card-tech-light {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.about-card-tech-light:hover {
    background: #ffffff;
    border-color: var(--orange);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.about-card-tech-light h5 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-top: 10px;
}

.about-card-tech-light p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Utilitário para o vídeo */
.video-container-tech {
    position: relative;
    padding: 5px;
}


/* ==========================================================================
   CARDS DE SERVIÇO
   ========================================================================== */

/* Container principal com perspectiva 3D */
.service-card-flip {
    background-color: transparent;
    height: 480px; 
    perspective: 1000px;
    cursor: pointer;
    margin-bottom: 30px;
}

/* O container interno que executa o giro */
.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Estado Virado (Acionado via classe .flipped) */
.service-card-flip.flipped .service-card-inner {
    transform: rotateY(180deg);
}

/* Configuração das Faces */
.service-card-front, 
.service-card-back-v2 {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

/* --- FACE FRONTAL (image_bc0aeb.png) --- */

.service-card-front {
    background-color: #293241;
    display: flex;
    flex-direction: column;
}

/* Imagem predominante */
.service-img-wrapper {
    position: relative;
    height: calc(100% - 120px); /* Ocupa tudo exceto o rodapé cinza */
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Rodapé Cinza com Logo */
.service-card-footer-gray {
    height: 120px;
    background-color: #b4b4b4; /* Cinza da referência */
    display: flex;
    align-items: center;
    padding: 0 25px;
    gap: 15px;
}

.footer-icon {
    width: 50px;
    height: auto;
}

.footer-text {
    font-family: "Bebas Neue", sans-serif;
    color: white !important;
    font-size: 1.4rem;
    line-height: 1.1;
    margin: 0;
    text-align: left;
    letter-spacing: 1px;
}

/* Garante que o container pai tenha altura definida */
.service-card-flip {
    height: 480px; /* Altura obrigatória */
}

/* Garante que a frente ocupe 100% dessa altura */
.service-card-front {
    height: 100%; 
    background-color: #293241; /* Fundo azul escuro caso a img falhe */
}

/* Garante que o wrapper da imagem ocupe o espaço restante */
.service-img-wrapper {
    height: calc(100% - 120px); /* Importante */
    width: 100%;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha sem distorcer */
}

/* --- FACE TRASEIRA (image_bba897.png) --- */

.service-card-back-v2 {
    background-color: #f4f6f8;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--orange);
}

.back-header-gray {
    padding: 30px 20px;
    background-color: #d1d1d1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-orange-header {
    color: var(--orange); /* #FF6B35 */
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.text-muted-small {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Faixa Preta Central */
.back-black-bar {
    background-color: #1a1a1a;
    padding: 12px 0;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.back-footer-dark {
    background-color: #293241;
    padding: 20px;
}

/* --- BLOQUEIO DE ANIMAÇÕES EM ESTADO FLIPPED --- */

/* Só aplica zoom se o card NÃO estiver virado */
.service-card-flip:not(.flipped):hover .service-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Só executa a revelação da "cortina" se não estiver virado */
.service-card-flip:not(.flipped) .service-card-dark.revealed .service-img-wrapper::after {
    transform: translateX(101%);
}

/* ==========================================================================
   SEÇÃO EXPERTISE / SERVIÇOS - TEMA ESCURO
   ========================================================================== */

.tech-services-dark {
    background-color: #293241;
    position: relative;
    overflow: hidden;
}

.tech-lines.opacity-10 {
    opacity: 0.1 !important;
}

.service-card-dark:hover {

    /* transform: translateY(-12px); */

    background: rgba(255, 255, 255, 0.07);

    border-color: var(--orange);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 107, 53, 0.2);

}
.service-card-dark h4 {
    letter-spacing: 0.5px;
}

.service-card-dark a {
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-card-dark a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px var(--orange);
} */
    .tech-slogan {
        font-size: 3rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .tech-counter {
        gap: 2rem;
    }


@media (max-width: 768px) {
    .tech-banner {
        min-height: 600px;
        height: 90vh;
    }
    
    .tech-slogan {
        font-size: 2.5rem;
    }
    
    .tech-logo {
        width: 150px;
    }
    
    .tech-counter {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .counter-item {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    #home { 
        padding-top: 100px; 
    }
    
    #sobre, #servicos, #contato, #faq { 
        padding-top: 80px; 
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .tech-slogan {
        font-size: 2rem;
    }
    
    .tech-content {
        padding: 1rem;
    }
    
    .tech-counter {
        gap: 1rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}

/* ============================
   Utilitários
   ============================ */
@keyframes fade-in {
    to {
        opacity: 1;
    }
}

*/ .circle-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    z-index: 1;
}

/* ============================
   Seção: Marca / Logo Interativa
   ============================ */
/* Animação logo interatica */


.logo-feature {
    --logo-zoom: 1.3;
    --rot-esq: 12deg;
    --rot-dir: -12deg;
   
    
    background: #293241;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* .logo-feature{
    background-image: url(/Website/assets/Domo/section-marca-tec.jpeg);
    background-size: cover;
    background-position-x: left -90px;
} */

#container-logo{
    justify-content: space-between;
}

.logo-feature .feature-title {
    color: #fff;
}

.logo-feature .feature-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
}

.logo-feature .interactive-logo {
    width: min(480px, 100%);
    margin-left: 15%;
    margin-right: 15%;
}

/* container da marca (as duas partes) */
.logo-feature .domo-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Use um gap negativo para "encaixar" as peças inclinadas */
    gap: -30px; 
    transform: scale(1.5);
    width: 100%;
}

/* cada parte vira um “botão” HTML (hover garantido) */
.logo-feature .domo-piece {
    flex: auto;
    width: min(230px, 48%);
    transition: transform 0.35s cubic-bezier(.25, .8, .25, 1);
    transform-origin: 5% 20%;
    will-change: transform;
    cursor: pointer;
    gap: var(--logo-gap);
}

.logo-feature .domo-piece svg {
    gap: var(--logo-gap);
    width: 100%;
    height: auto;
    display: block;

}

/* cor do preenchimento */
.logo-feature .poligono-esq {
    fill: #FF4B00;
}
.logo-feature .poligono-dir {
    fill: #FF4B00;
}

.poligono-esq{
    margin-left: 15%;
    margin-bottom: 10%;
}

.poligono-dir{
    margin-right: 15%;
    margin-top: 10%;
    margin-left: -15%;
}


/* hover: rotação + zoom + titulo */

/* LADO ESQUERDO: Cresce da Superior Esquerda para Inferior Direita */
.logo-feature .domo-piece--left {
    margin-right: -20%; /* Puxa para o centro */
    margin-bottom: 20%; /* Ajuste vertical para o "encaixe" visual */
    transform-origin: top left; 
    transition: transform 0.4s ease;
}

/* LADO DIREITO: Cresce da Inferior Direita para Superior Esquerda */
.logo-feature .domo-piece--right {
    margin-left: -20%; 
    margin-top: 20%;    
    transform-origin: bottom right; 
    transition: transform 0.4s ease;
}

/* Lado esquerdo */


.logo-feature:has(.poligono-esq:hover) .domo-piece--left {
    transform: scale(var(--logo-zoom));
    z-index: 10;
}

/* Zoom-out/Fade na peça oposta (Direita) para não desconfigurar */
.logo-feature:has(.poligono-esq:hover) .domo-piece--right {
    transform: scale(0.9);
    opacity: 0.4;
}


.logo-feature:has(.poligono-esq:hover) #titulo_logo_esq::after {
    width: 100%; 
}


/* Estado Inicial do Título */
#titulo_logo_esq {
    
    margin-bottom: 10% !important;
    position: relative;
    display: inline-block; 
    text-align: left;
    color: white; 
    letter-spacing: normal;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: right center; 
}

#texto_logo_esq{
    text-align: left;
}

.logo-feature:has(.poligono-esq:hover) #texto-logo-esq {
    opacity: 1;
    transform: translateX(-5px);
    color: #efefd0;
}

/* Configuração da Linha (Sublinhado) */
#titulo_logo_esq::after {
    content: '';
    position: absolute;
    bottom: -8px; 
    right: 0;
    width: 0; 
    height: 3px;
    background-color: #FF6B35; 
    transition: width 0.4s ease-out;
    box-shadow: 0 0 10px #efefd0; 
}


/*  Efeito de Hover (Acionado pela Logo) */
.logo-feature:has(.poligono-esq:hover) #titulo_logo_esq {
    color: #FF6B35; 
    transform: scale(1.25) translateX(-10px); 
    text-shadow: 0 0 15px #efefd0; 
    letter-spacing: 6px; 
}

/* Acionando a Linha no Hover */
.logo-feature:has(.poligono-esq:hover) #titulo_logo_esq::after {
    width: 100%; 
}



/* Lado direito */


.logo-feature:has(.poligono-dir:hover) .domo-piece--right {
    transform: scale(var(--logo-zoom));
    z-index: 10;
}

/* Zoom-out/Fade na peça oposta (Esquerda) */
.logo-feature:has(.poligono-dir:hover) .domo-piece--left {
    transform: scale(0.9);
    opacity: 0.4;
}

/* Estado Inicial do Título  */
#titulo_logo_dir {
    align-items: center;
    letter-spacing: 4px; 
    margin-top: 10% !important;
    position: relative;
    display: inline-block; 
    color: white; 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center right; 
}

#texto-logo-dir{
    text-align: right;
}
/* Configuração da Linha (Sublinhado) */
#titulo_logo_dir::after {
    content: '';
    position: absolute;
    top: -8px; 
    left: 0;
    width: 0; 
    height: 3px;
    background-color: #FF6B35; 
    transition: width 0.4s ease-in;
    box-shadow: 0 0 10px #efefd0; 
}

/*  Efeito de Hover (Acionado pela Logo) */
.logo-feature:has(.domo-piece--right:hover) #titulo_logo_dir {
    color: #FF6B35; 
    transform: scale(1.1) translateX(10px); 
    text-shadow: 0 0 15px #efefd0; 
    letter-spacing: 5px; 
}

/* Acionando a Linha no Hover */
.logo-feature:has(.poligono-dir:hover) #titulo_logo_dir::after {
    width: 100%; 
}

/* Garante que o link ocupe toda a área da peça e mantenha o estilo */
.logo-feature .domo-piece {
    display: block;
    text-decoration: none;
}

/* Mantém o cursor de clique que já definimos */
.logo-feature .domo-piece:hover {
    text-decoration: none;
}


/* ==========================================================================
   DÚVIDAS (FAQ) - TRANSIÇÃO SUAVE E ESTÁVEL
   ========================================================================== */

.custom-accordion-light .collapsing {
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.custom-accordion-light .accordion-collapse {
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-accordion-light .accordion-body {
    padding: 1.5rem;
    padding-top: 0;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.4s ease 0.1s; 
}

.custom-accordion-light .accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

.custom-accordion-light .accordion-button {
    font-size: 1.1rem;
    padding: 1.25rem;
    border: none;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-accordion-light .accordion-button:not(.collapsed) {
    color: var(--orange); /* */
    background-color: var(--bg-orange-light); 
    box-shadow: none !important;
}

.faq-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to bottom, #293241 0%, rgba(41, 50, 65, 0) 100%);
    z-index: 4;
    pointer-events: none;
}

.faq-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #293241 0%, rgba(41, 50, 65, 0) 100%);
    z-index: 4;
    pointer-events: none;
}


/* ==========================================================================
   RODAPÉ TECNOLÓGICO (TECH FOOTER)
   ========================================================================== */

.tech-footer {
    background-color: #293241; 
    padding: 0 0 40px 0;
    position: relative;
    overflow: hidden;
}

/* Divisor inclinado que remete à logo */
.footer-divider {
    width: 100%;
    height: 100px;

    margin-bottom: 60px;
}

.footer-logo img {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--orange); /* #FF6B35 */
    transform: translateX(8px);
}

/* Ícones Sociais (Laranja vibrante) */
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--orange);
    color: white;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
}

/* Títulos das Colunas */
.tech-footer h5 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
}






/* ==========================================================================
   CORREÇÃO RESPONSIVA - SEÇÃO MARCA (< 992px)
   ========================================================================== */

@media (max-width: 991.98px) {
    /* 1. Remove a altura fixa para dar respiro vertical */
    .logo-feature {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* 2. Reseta a escala e o gap negativo que causa a sobreposição */
    .logo-feature .domo-mark {
        transform: scale(1.1); /* Reduzido de 1.5 para caber na tela */
        gap: 15px; /* Espaço positivo entre as peças */
        margin: 40px 0;
    }

    /* 3. Remove as margens negativas que empurram as peças para fora da div */
    .logo-feature .domo-piece--left,
    .logo-feature .domo-piece--right {
        margin: 0 !important; 
        width: 140px; /* Tamanho fixo menor para mobile */
    }

    /* 4. Ajusta os textos para centralizar no mobile */
    #logo-int-1, #logo-int-3 {
        text-align: center !important;
        padding: 0 20px;
    }

    #titulo_logo_esq, #titulo_logo_dir {
        margin: 20px 0 !important;
        transform: none !important; /* Evita que o título flutue para longe */
    }
    
    #texto_logo_esq, #texto-logo-dir {
        text-align: center !important;
    }
}

/* Ajuste extra para telas muito pequenas (celulares) */
@media (max-width: 576px) {
    .logo-feature .domo-mark {
        transform: scale(0.9);
        gap: 10px;
    }
    
    .logo-feature .domo-piece--left,
    .logo-feature .domo-piece--right {
        width: 110px;
    }
}
/* ==========================================================================
   MENU MOBILE - MINIMALISTA (GLASSMORPHISM)
   ========================================================================== */

@media (max-width: 991px) {
    /* 1. Container: Mantém a logo imóvel e aplica o Glassmorphism */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        margin-top: 12px;
        padding: 15px;
        z-index: 1000;
        
        /* Transição suave do próprio container */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Exibe o container quando a classe .show é adicionada pelo Bootstrap */
    .navbar-collapse.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    /* 2. Itens do Menu: Estado inicial escondido */
    .navbar-collapse .nav-item {
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* 3. Efeito Cascata: Ativa quando o menu abre (incluindo os 6 itens) */
    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delays precisos para os 6 links, incluindo ARXX */
    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.10s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.20s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.30s; }
    .navbar-collapse.show .nav-item:nth-child(6) { transition-delay: 0.35s; }

    /* 4. Estilo dos Links */
    .navbar-minimalist .nav-link {
        text-align: center;
        color: white !important;
        padding: 12px !important;
        font-size: 0.95rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .navbar-minimalist .nav-link:hover {
        background: rgba(255, 107, 53, 0.15); /* */
        color: var(--orange) !important;
    }
}

/* ==========================================================================
   ESTADO ATIVO DOS LINKS (SCROLL SPY)
   ========================================================================== */

.navbar-minimalist .nav-link.active {
    color: var(--orange) !important;
}

.navbar-minimalist .nav-link.active::after {
    width: 20px;
    background-color: var(--orange);
}

/* ==========================================================================
   PRELOADER - TECH INTERFACE
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #293241; /* Cor da marca */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader-content {
    text-align: center;
}

.logo-pulse img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
    animation: tech-pulse 2s infinite ease-in-out;
}

/* Barra de progresso minimalista */
.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-bar .progress {
    width: 40%;
    height: 100%;
    background: var(--orange); /* #FF6B35 */
    position: absolute;
    animation: loader-slide 1.5s infinite ease-in-out;
}

/* Animações */
@keyframes tech-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.6)); }
}

@keyframes loader-slide {
    0% { left: -40%; }
    100% { left: 100%; }
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   REVEAL EFFECT - EXPERTISE IMAGES
   ========================================================================== */

.service-img-wrapper {
    position: relative;
    overflow: hidden;
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--orange); /* #FF6B35 */
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

.service-img-wrapper img {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.5s ease 0.4s, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}

#como-aplicamos1::after{
    background-image: url(/assets/ARXX/como-aplicamos1.JPG);
    background-size: cover;
    
}

#como-aplicamos2::after{
    background-image: url(/assets/ARXX/como-aplicamos2.JPG);
    background-size: cover;
}

#como-aplicamos3::after{
    background-image: url(/assets/Domo/mini-escavadeira.jpeg);
    background-size: cover;
}

.service-card-dark.revealed .service-img-wrapper::after {
    transform: translateX(101%);
}

.service-card-dark.revealed img {
    opacity: 1;
    transform: scale(1);
}


/* ==========================================================================
   SEÇÃO CTA PROJETOS
   ========================================================================== */

.projects-cta-section {
    position: relative;
    min-height: 700px;
 
    display: flex;
    align-items: center;
    overflow: hidden;
}

.projects-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(41, 50, 65, 0.65); 
    z-index: 1;
}

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

.cta-big-mark img {
    max-width: 400px;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.4));
}

.cta-main-text {
    font-family: "Bebas Neue", sans-serif;
    color: white;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 0.95;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

@media (max-width: 991px) {
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .cta-big-mark img {
        max-width: 140px;
        margin-bottom: 20px;
    }
    .cta-main-text {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   DIVISOR ESTRUTURAL
   ========================================================================== */



#sobre.section-padding {
    padding-bottom: 0 !important;
}

#servicos.section-padding {
    padding-top: 0 !important;
}

.structural-divider {
    position: relative;
    width: 100%;
    line-height: 0; 
    z-index: 10;
    background-color: var(--white); 
}

.structural-divider svg {
    display: block;
    width: 100%;
    height: auto; 
    min-height: 50px; 
}

.brick-fill-dark {
    fill: #293241; /* Azul escuro da Domo */
}

/* ==========================================================================
   CORREÇÃO DEFINITIVA DO DIVISOR (TEMA TIJOLOS)
   ========================================================================== */

#sobre.section-padding {
    padding-bottom: 0 !important;
}

#servicos.section-padding {
    padding-top: 0 !important;
}

/* 2. Container do Divisor */
.structural-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 10;
    background-color: var(--bg-body); 
    margin-top: -2px; 
}

/* 3. Configuração do SVG */
.structural-divider svg {
    display: block;
    width: 100%;
    height: 60px; 
}


.brick-fill-dark {
    fill: #293241; 
}

/* ==========================================================================
   DIVISOR ESTRUTURAL "RECORTE" (TRANSPARENTE)
   ========================================================================== */

#servicos.section-padding {
    position: relative; 
    padding-top: 60px !important; 
}

#sobre.section-padding {
    padding-bottom: unset !important; 
}

.structural-divider-overlap {
    position: absolute;
    top: -1px; 
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 20; 
    pointer-events: none; 
}

/* 3. Configuração do SVG */
.structural-divider-overlap svg {
    display: block;
    width: 100%;
    height: 60px; /* Altura fixa do padrão */
}


.brick-fill-white {
    fill: var(--bg-body); 
    
}

/* ==========================================================================
   DIVISOR INVERTIDO (RODAPÉ DA SEÇÃO)
   ========================================================================== */

.structural-divider-bottom {
    position: absolute;
    bottom: -1px; 
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 20;
    pointer-events: none;
    transform: rotate(180deg);
}

.structural-divider-bottom svg {
    display: block;
    width: 100%;
    height: 60px; 
}

#servicos.section-padding {
    padding-bottom: 60px !important; 
}

.brick-fill-gray {
    fill: #293241;
}