:root {
    --wolfi-dark: #121212;
    --wolfi-dark-rgb: 18, 18, 18;
    --wolfi-light-gray: #222;
    --wolfi-yellow: #ffc107; /* Amarelo Bootstrap como base */
    --wolfi-yellow-mercado: #ffdb15; /* Amarelo inspirado na referÃªncia */
    --text-muted: #adb5bd;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--wolfi-dark);
    color: #fff;
    /* EspaÃ§amento no topo para o cabeÃ§alho fixo. Ajuste se a altura mudar. */
    padding-top: 104px;
    background-image: url(https://miro.medium.com/v2/resize:fit:960/1*wac7tkozLGkEx7EFOYVNJw.gif);
}

h1, h2, h3, .navbar-brand { font-weight: 700; }

.section-padding { padding: 100px 0; }

.section-title {
    font-weight: 600;
    color: var(--wolfi-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    background-color: #ffdc1524;
    font-size: 18px;
    padding: 9px;
}

.content-wrapper {
    background-color: var(--wolfi-dark);
}

.site-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: var(--wolfi-yellow-mercado);
}
.top-bar {
    background-color: #000;
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- NavegaÃ§Ã£o Principal (Amarela) --- */
.navbar-main {
    background-image: url("../imgs/logo2.png");
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-repeat: no-repeat;
    background-position: 86% 22%;
    background-size: 14%;
}
.navbar-main .navbar-brand {
    color: #000;
    font-weight: 800;
    background-image: url(../imgs/logo.png);
    width: 156px;
    height: 60px;
    background-size: cover;
}
.navbar-main .navbar-brand i {
    color: #000;
}
.navbar-main .nav-link {
    color: rgba(0,0,0,0.7);
    font-weight: 600;
    transition: color 0.2s;
}
.navbar-main .nav-link:hover, 
.navbar-main .nav-link.active {
    color: #000 !important;
}
.navbar-main .navbar-toggler {
    border-color: rgba(0,0,0,0.2);
}
.navbar-main .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-main .btn-dark {
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.navbar-main .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0, 0.2);
}


/* --- Hero Wrapper e Carousel (PÃ¡gina Inicial) --- */
.hero-wrapper {
    padding: 2rem; /* EspaÃ§amento ao redor do carrossel */
    background-color: #ffdc15d1;
}
#hero-carousel {
    border-radius: 1.5rem;
    overflow: hidden; /* Garante que as imagens respeitem a borda arredondada */
    box-shadow: 0 40px 80px -10px black;
    min-height: 600px;
}
.carousel-item {
    height: 600px; /* Altura fixa para o carrossel */
    background-size: cover;
    background-position: center;
}
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(var(--wolfi-dark-rgb), 0) 0%, rgba(var(--wolfi-dark-rgb), 0.2) 50%, rgba(var(--wolfi-dark-rgb), 0.8) 100%);
}
.carousel-caption {
    bottom: 5%;
    left: 5%;
    right: 5%;
    text-align: left;
    width: auto;
}
.carousel-caption h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.carousel-caption .lead {
    max-width: 600px;
    margin: 1rem 0 2rem 0;
}
.carousel-indicators [data-bs-target] {
    background-color: var(--wolfi-yellow);
}

/* --- Demais Estilos (Cards, Footer, etc.) --- */
.card-custom {
    background-color: var(--wolfi-light-gray);
    border: 1px solid #333;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.card-icon { font-size: 3rem; color: var(--wolfi-yellow); }
.page-header {padding: 80px 0;text-align: center;background-color: #000000ba;}

/* --- Case Studies --- */
.case-card {
    overflow: hidden;
    border-radius: 15px;
    background-color: var(--bs-light-gray);
    border: 1px solid #333;
}
.case-card .card-img-top {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}
.case-card .badge {
    background-color: var(--bs-warning);
    color: var(--bs-dark);
}

/* --- Contato --- */
.form-control {
    background-color: var(--bs-light-gray);
    border: 1px solid #444;
    color: #fff;
    padding: 0.9rem;
}
.form-control:focus {
    background-color: var(--bs-light-gray);
    border-color: var(--bs-warning);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    color: #fff;
}
.contact-info i {
    font-size: 1.5rem;
    color: var(--bs-warning);
}

/* --- Footer --- */
.footer-dark {background-color: #000000c7;text-align: left !important;}
.footer-link { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--wolfi-yellow); }
.social-icon {color: #ffdc15;font-size: 1.5rem;margin: 0 0.75rem;transition: color 0.2s;}
.social-icon:hover { color: var(--wolfi-yellow); }

.carousel-caption {
    z-index: 9;
}

main {
    background-color: #151515f5;
}

.border-secondary {
    border-color: #ffdc15 !important;
}

footer h5.text-white {
    font-weight: 800;
    background-image: url(../imgs/logo2.png);
    width: 156px;
    height: 40px;
    background-size: 39px;
    background-repeat: no-repeat;
    padding-left: 52px;
}

#testimonialCarousel .carousel-item {
    height: 400px;
    padding: 10%;
    margin: auto 20%;
    max-width: 800px;
    border-radius: 100px !important;
}

section#logos {
    background-color: white;
}

section#logos h3 {
    color: black !important;
}

.section-missao {
    background-color: #ffffff;
}

.section-missao h4 {
    color: black !important;
    font-weight: 600;
}

.section-missao p {
    color: #0000007a !important;
}

section.section-sobre .row>.col-lg-6:nth-child(2) {
    max-height: 770px;
    overflow: hidden;
    border-radius: 50px;
}

div#testimonialCarousel img {
    height: 70px;
    width: 70px;
}

section.cta-section .btn {
    padding: 20px 50px !important;
    box-shadow: 0px 0px 0px 20px #00000014;
}

section.section-white {
    background-color: white;
}

section.section-white h3 {
    color: black !important;
}

section.section-white p {
    color: black;
}