* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    min-height: 80px;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-main {
    font-size: 26px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 11px;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2px;
    align-self: center;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.nav-link:hover {
    color: #ADD8E6;
}

.nav-link.active {
    color: #ADD8E6;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-left: 10px;
}

.social-icon {
    color: #FFFFFF;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ADD8E6;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
}

/* Hero Section - Contact Page */
.hero.hero-contact {
    min-height: 70vh;
    padding-bottom: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('img/equipe2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.753);
    z-index: 1;
}

.city-skyline {
    display: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    width: 100%;
    padding: 0 60px 0 10rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .hero-content {
        padding-left: 60px;
    }
}

.hero-text {
    max-width: 1000px;
    width: 100%;
    text-align: left;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subheading {
    font-size: 18px;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-heading {
    font-size: 48px;
    font-weight: 100;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ADD8E6;
    color: #ADD8E6;
}

.btn-primary {
    border-color: #FFFFFF;
}

.btn-secondary {
    border-color: #FFFFFF;
}

/* Mission Statement */
.mission-statement {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 550px;
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.mission-statement p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.65;
    font-weight: 400;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    border-bottom: 2px solid #FFFFFF;
    display: inline-block;
    min-width: 600px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Specializations Section */
.specializations-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-color: #f5f5f5;
    padding: 80px 60px;
    overflow: hidden;
}

.specializations-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.specializations-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 40px;
    flex-wrap: wrap;
}

.specializations-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.specializations-label {
    font-size: 14px;
    color: #337ab7;
    font-weight: 300;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.specializations-title {
    font-size: 30px;
    color: #333333;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.specializations-word {
    color: #337ab7;
}

.specializations-description {
    font-size: 16px;
    color: #999999;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    align-self: flex-end;
    padding-top: 25px;
}

.specializations-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.specialization-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.specialization-card.animate {
    opacity: 1;
    transform: translateX(0);
}


.specialization-card:hover {
    border-color: #337ab7;
    box-shadow: 0 2px 8px rgba(51, 122, 183, 0.1);
}

.specialization-name {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.specialization-text {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.specializations-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.specializations-button {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.specializations-button:hover {
    border-color: #337ab7;
    color: #337ab7;
}

/* Partners Section */
.partners-section {
    position: relative;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    background-color: #1a2a4a;
}

.partners-container {
    display: flex;
    width: 100%;
    min-height: 280px;
    position: relative;
}

/* Left Side - Text */
.partners-text {
    flex: 0 0 65%;
    background-color: #337ab7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 80px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100%, 0 100%);
    text-align: left;
}

.partners-label {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 5px;
    opacity: 0.9;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.partners-title {
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    max-width: 500px;
    white-space: nowrap;
}

.partners-description {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

/* Right Side - Carousel */
.partners-carousel-wrapper {
    flex: 0 0 35%;
    background-color: #1a2a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.partners-carousel {
    width: calc(180px * 2); /* 2 bolas (180px cada) = 360px */
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    padding: 0;
    will-change: transform;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    min-width: 180px;
}

.partner-circle {
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Imagens dos parceiros - cada bolinha com uma imagem diferente */
.partner-circle-1 {
    background-image: url('img/alltak.png');
}

.partner-circle-2 {
    background-image: url('img/brauna-investmento-logo3.png');
}

.partner-circle-3 {
    background-image: url('img/colegiomellodante_logo.jpeg');
}

.partner-circle-4 {
    background-image: url('img/terra_agro_comercio_de_oxidos_cover.jpeg');
    background-size: cover;
}

.partner-circle-5 {
    background-image: url('img/ultrafarma-popular-1_1621271623.png');
}

.partner-circle-6 {
    background-image: url('img/selo-e-logo-fdo-branco.png');
}

.partner-circle-7 {
    background-image: url('img/logo_patria_300x200.jpg.webp');
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn:hover:not(:disabled) {
    color: #ADD8E6;
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Manter setas brancas em todas as telas */
@media (max-width: 1200px) {
    .partners-carousel-wrapper .carousel-btn {
        color: #FFFFFF !important;
    }
    
    .partners-carousel-wrapper .carousel-btn:hover:not(:disabled) {
        color: #ADD8E6 !important;
    }
}

/* Awards and Certifications Section */
.awards-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-color: #FFFFFF;
    padding: 80px 60px;
    overflow: hidden;
}

.awards-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.awards-title {
    font-size: 36px;
    color: #333333;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
    text-align: left;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1350px;
    margin: 0 auto;
    justify-items: center;
}

.award-card {
    background-color: transparent;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 350px;
}

.award-logo-placeholder {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    background-color: #000000;
    border-radius: 12px;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.award-logo-1 {
    background-image: url('img/analise-advocacia.jpg');
}

.award-logo-2 {
    background-image: url('img/analise-advocacia-regional.jpg');
}

.award-logo-3 {
    background-image: url('img/selo-empresa-sustentavel.jpg');
    background-size: contain;
    background-color: #FFFFFF;
    width: 130px;
    height: 130px;
    min-width: 130px;
    min-height: 130px;
}

/* Em telas pequenas, ajustar o grid */
@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .award-logo-placeholder {
        display: none;
    }
}

.award-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.award-name {
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.4;
}

.award-year {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.4;
}

.awards-carousel-btn {
    position: absolute;
    background: none;
    border: none;
    color: #333333;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    transition: color 0.3s ease;
}

.awards-carousel-btn:hover {
    color: #337ab7;
}

.awards-carousel-prev {
    left: -40px;
}

.awards-carousel-next {
    right: -40px;
}

.awards-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.awards-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awards-dot.active {
    background-color: #333333;
}

/* Satisfied Clients Section */
.satisfied-clients-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: #0a111d;
    padding: 60px 60px;
    overflow: hidden;
}

.satisfied-clients-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.satisfied-clients-skyline {
    display: none;
}

.satisfied-clients-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    min-height: 550px;
    align-items: start;
}

/* Title Section */
.satisfied-clients-title {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
}

/* Card 1 - Top Right (same row as title) */
.client-box-1 {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    min-height: fit-content;
    margin-left: 10px;
}

.clients-label {
    font-size: 16px;
    color: #ADD8E6;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.clients-main-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.title-white {
    color: #FFFFFF;
}

.title-cyan {
    color: #ADD8E6;
}

/* Content Boxes Grid */
.clients-boxes-grid {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 30px;
    margin-top: 0;
    align-items: stretch;
}

.client-box {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 250px;
    min-width: 400px;
}

.client-box:hover {
    border-color: rgba(173, 216, 230, 0.5);
    background-color: rgba(173, 216, 230, 0.05);
}

.client-box-2 {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
}

.client-box-3 {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
}

.client-box-icon {
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.client-box-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.client-box-title {
    font-size: 22px;
    color: #ADD8E6;
    font-weight: 400;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.client-box-text {
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Form Section */
.contact-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #12263f;
    padding: 60px 50px;
    overflow: hidden;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    min-height: 500px;
}

/* Left Side - Empty Space */
.contact-left {
    flex: 0 0 40%;
    background-color: #12263f;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image-placeholder {
    width: 65%;
    height: 100%;
    min-height: 500px;
    background-image: url('img/predio-fora.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin: 40px;
}

.contact-left-btn {
    position: absolute;
    background-color: #337ab7;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.contact-left-btn:hover {
    background-color: #2868a0;
}

.contact-left-btn i {
    font-size: 18px;
}

.contact-btn-top {
    bottom: 120px;
    left: 0px;
}

.contact-btn-bottom {
    bottom: 40px;
    left: 50%;
}

/* Right Side - Form */
.contact-right {
    flex: 0 0 60%;
    background-color: #12263f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 60px;
    position: relative;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 500px;
}

.contact-label-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-label-wrapper i {
    color: #ADD8E6;
    font-size: 14px;
}

.contact-label {
    font-size: 14px;
    color: #ADD8E6;
    font-weight: 400;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.contact-title {
    font-size: 48px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-section .form-label {
    font-size: 16px;
    color: #FFFFFF !important;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    color: #FFFFFF !important;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #FFFFFF !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: #ADD8E6;
    background-color: rgba(255, 255, 255, 0.05);
}

.form-submit-btn {
    padding: 15px 35px;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.form-submit-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ADD8E6;
    color: #ADD8E6;
}

/* Carousel Navigation */
.contact-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.contact-carousel-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-carousel-btn:hover {
    color: #FFFFFF;
}

.contact-pagination {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 20px 0;
        min-height: 80px;
    }
    
    .hero-heading {
        font-size: 42px;
    }
    
    .header-container {
        padding: 0 30px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .mission-statement {
        right: 30px;
        bottom: 40px;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
    
    .social-icons {
        gap: 15px;
    }
}

/* Ajuste específico para 644px */
@media (max-width: 644px) {
    .header {
        padding: 25px 0;
        min-height: 130px;
    }
    
    .header-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .hero {
        padding-top: 180px;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        gap: 12px;
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-icons {
        gap: 12px;
        margin-left: 0;
    }
    
    .social-icon {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 30px !important;
        margin-bottom: 40px;
    }
    
    .hero-text {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-heading {
        font-size: 32px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subheading {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 14px;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .mission-statement {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        transform: none;
        text-align: center;
        margin-top: 40px;
        padding: 0 30px;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .mission-statement p {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        display: block;
        text-align: center;
    }
    
    /* Specializations Section - Apenas em telas muito pequenas */
    @media (max-width: 768px) {
        .specializations-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        
        .specializations-title-wrapper {
            width: 100%;
        }
        
        .specializations-description {
            width: 100%;
            align-self: flex-start;
            padding-top: 0;
            margin-top: 10px;
        }
        
        .specializations-cards {
            grid-template-columns: 1fr;
        }
    }
    
    /* Partners Section - Apenas em telas muito pequenas */
    @media (max-width: 768px) {
        .partners-container {
            flex-direction: column;
        }
        
        .partners-text {
            flex: 1;
            padding: 30px 20px;
            clip-path: none;
        }
        
        .partners-label {
            font-size: 12px;
        }
        
        .partners-title {
            font-size: 22px;
            white-space: normal;
        }
        
        .partners-description {
            font-size: 13px;
        }
        
        .partners-carousel-wrapper {
            padding: 20px 15px;
        }
        
        .partners-carousel {
            width: calc(60px * 2); /* 2 bolas (60px cada) = 120px */
            max-width: 100%;
        }
        
        .partner-logo {
            width: 60px;
            min-width: 60px;
        }
        
        .partner-circle {
            width: 60px;
            height: 60px;
            min-width: 60px;
            min-height: 60px;
        }
        
        .partners-carousel-wrapper .carousel-btn {
            color: #FFFFFF !important;
        }
        
        .partners-carousel-wrapper .carousel-btn:hover:not(:disabled) {
            color: #ADD8E6 !important;
        }
    }
    
    /* Satisfied Clients Section */
    .satisfied-clients-section {
        padding: 40px 30px;
    }
    
    .satisfied-clients-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .satisfied-clients-title {
        grid-column: 1;
        grid-row: 1;
    }
    
    .client-box-1 {
        grid-column: 1;
        grid-row: 2;
        margin-left: 0;
    }
    
    .clients-boxes-grid {
        grid-column: 1;
        grid-row: 3;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }
    
    .client-box {
        min-width: 100%;
        padding: 20px;
        min-height: auto;
    }
    
    .client-box-2 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .client-box-3 {
        grid-column: 1;
        grid-row: 2;
    }
    
    /* Contact Section */
    .contact-left {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 25px 0;
        min-height: 170px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        padding-top: 200px;
    }
    
    .hero-content {
        padding: 0 20px !important;
    }
    
    .hero-text {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-heading {
        font-size: 28px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subheading {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .mission-statement {
        left: auto;
        transform: none;
        text-align: center;
    }
    
    .mission-statement p {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        display: block;
        text-align: center;
    }
    
    /* Contact Section */
    .contact-left {
        display: none;
    }
}

@media (max-width: 320px) {
    /* Header */
    .header {
        padding: 25px 0;
        min-height: 150px;
    }
    
    .header-container {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .nav-links {
        gap: 10px;
        font-size: 12px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .hero {
        padding-top: 200px;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 0 15px !important;
    }
    
    .hero-text {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-heading {
        font-size: 22px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .hero-subheading {
        font-size: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 12px;
        line-height: 1.5;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .mission-statement {
        padding: 0 15px;
        font-size: 12px;
        margin-top: 30px;
        left: auto;
        transform: none;
        text-align: center;
    }
    
    .mission-statement p {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        font-size: 12px;
        display: block;
        text-align: center;
    }
    
    /* Specializations Section */
    .specializations-container {
        padding: 40px 15px;
    }
    
    .specializations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .specializations-title-wrapper {
        width: 100%;
    }
    
    .specializations-description {
        width: 100%;
        margin-top: 10px;
    }
    
    .specializations-label {
        font-size: 12px;
    }
    
    .specializations-title {
        font-size: 24px;
    }
    
    .specializations-word {
        font-size: 24px;
    }
    
    .specializations-description {
        font-size: 13px;
    }
    
    .specializations-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specialization-card {
        padding: 20px;
    }
    
    .specialization-name {
        font-size: 18px;
    }
    
    .specialization-text {
        font-size: 13px;
    }
    
    .specializations-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Partners Section */
    .partners-container {
        flex-direction: column;
    }
    
    .partners-text {
        flex: 1;
        padding: 30px 20px;
        clip-path: none;
    }
    
    .partners-label {
        font-size: 12px;
    }
    
    .partners-title {
        font-size: 22px;
        white-space: normal;
    }
    
    .partners-description {
        font-size: 13px;
    }
    
    .partners-carousel-wrapper {
        padding: 20px 15px;
    }
    
    .partners-carousel {
        width: calc(60px * 2); /* 2 bolas (60px cada) = 120px */
        max-width: 100%;
    }
    
    .partner-logo {
        width: 60px;
        min-width: 60px;
    }
    
    .partner-circle {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
        color: #FFFFFF !important;
    }
    
    .carousel-btn:hover:not(:disabled) {
        color: #ADD8E6 !important;
    }
    
    /* Awards Section */
    .awards-container {
        padding: 40px 15px;
    }
    
    .awards-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .award-card {
        min-width: 200px;
        padding: 20px;
    }
    
    .award-logo-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .award-name {
        font-size: 14px;
    }
    
    .award-year {
        font-size: 12px;
    }
    
    .awards-carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Satisfied Clients Section */
    .satisfied-clients-section {
        padding: 40px 15px;
    }
    
    .satisfied-clients-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .satisfied-clients-title {
        grid-column: 1;
        grid-row: 1;
    }
    
    .client-box-1 {
        grid-column: 1;
        grid-row: 2;
        margin-left: 0;
    }
    
    .clients-boxes-grid {
        grid-column: 1;
        grid-row: 3;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .client-box {
        min-width: 100%;
        padding: 20px;
        min-height: auto;
    }
    
    .clients-label {
        font-size: 13px;
    }
    
    .clients-main-title {
        font-size: 24px;
    }
    
    .client-box-title {
        font-size: 16px;
    }
    
    .client-box-text {
        font-size: 13px;
    }
    
    .client-box-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Contact Section */
    .contact-container {
        flex-direction: column;
        padding: 30px 15px;
    }
    
    .contact-left {
        display: none;
    }
    
    .contact-right {
        width: 100%;
        padding: 20px 15px;
    }
    
    .contact-label {
        font-size: 12px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .form-input {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Contact Content Section */
.contact-content-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #f5f5f5;
    padding: 0;
    overflow: hidden;
}

.contact-content-container {
    max-width: 100%;
    margin: 0;
    width: 100%;
    display: flex;
    min-height: 600px;
}

/* Left Column - Contact Info & Map */
.contact-info-column {
    flex: 0 0 50%;
    background-color: #11253e;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-title {
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-item i {
    font-size: 20px;
    color: #ADD8E6;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-item span {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.6;
}

.contact-map-wrapper {
    flex: 1;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Right Column - Contact Form */
.contact-form-column {
    flex: 0 0 50%;
    background-color: #FFFFFF;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-size: 28px;
    color: #333333;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 30px 0;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #337ab7;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-submit {
    background-color: #337ab7;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 5px;
}

.contact-form-submit:hover {
    background-color: #2868a0;
}

/* Responsive - Contato abaixo de 540px */
@media (max-width: 540px) {
    .contact-content-container {
        flex-direction: column;
    }
    
    .contact-info-column {
        flex: 0 0 auto;
        order: 2;
        width: 100%;
    }
    
    .contact-form-column {
        flex: 0 0 auto;
        order: 1;
        width: 100%;
    }
}

/* About Content Section */
.about-content-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #FFFFFF;
    padding: 0;
    overflow: hidden;
}

.about-content-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    min-height: 600px;
    align-items: stretch;
    padding: 80px 60px;
    gap: 0;
}

/* Left Side - Photo Wrapper */
.about-photo-wrapper {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-left: 200px;
    z-index: 2;
    margin-top: 20px;
}

.about-photo-placeholder {
    width: 100%;
    background-color: #d9d9d9;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 4px;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 100% 100%, 0 100%);
}

/* Imagem na primeira seção (UM ESCRITÓRIO QUE BUSCA INOVAÇÃO) */
.about-content-section:not(.about-content-section-2) .about-photo-placeholder {
    background-image: url('img/eduardo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
}

/* Imagem na segunda seção (UMA HISTÓRIA DE VITÓRIA) */
.about-content-section-2 .about-photo-placeholder {
    background-image: url('img/dono.jpg');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    color: transparent;
}

/* Right Side - Text Wrapper */
.about-text-wrapper {
    flex: 1;
    min-width: 60%;
    background-color: #FFFFFF;
    padding: 120px 60px 120px 150px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    margin-left: -300px;
    padding-left: 250px;
}

.about-banner {
    background-color: #26588a;
    padding: 32px 60px 32px 120px;
    margin-bottom: 50px;
    margin-left: -320px;
    position: relative;
    z-index: 100;
    width: fit-content;
    min-width: 800px;
    max-width: 70%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.about-banner-line-1,
.about-banner-line-2 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 100;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-banner-line-2 {
    margin-top: 8px;
}

.highlight-word {
    color: #11253e;
    font-size: 200;
    padding: 4px 8px;
    display: inline-block;
}

.about-description {
    color: #333333;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    max-width: 60%;
    margin: 0;
    text-align: justify;
    word-spacing: normal;
    letter-spacing: normal;
}

/* Second Section - Text closer to photo */
.about-content-section-2 .about-content-container {
    min-height: 450px;
    padding: 60px 0;
}

.about-content-section-2 .about-text-wrapper {
    padding: 80px 60px 80px 150px;
}

/* Diferenciais Section */
.diferenciais-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #FFFFFF;
    padding: 80px 60px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.diferenciais-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
}

/* Left Side - Images */
.diferenciais-images-wrapper {
    flex: 0 0 60%;
    position: relative;
    overflow: visible;
}

/* Esconder imagens em telas menores que 875px */
@media (max-width: 875px) {
    .diferenciais-images-wrapper {
        display: none;
    }
    
    .diferenciais-content-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .diferenciais-container {
        justify-content: center;
    }
}

.diferenciais-main-image {
    width: 100%;
    min-height: 600px;
    background-color: #e0e0e0;
    border-radius: 0 20px 20px 0;
    position: relative;
    overflow: hidden;
}

.diferenciais-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-image: url('img/predio-fora.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}



.diferenciais-overlay-image {
    position: absolute;
    bottom: 40px;
    right: -125px;
    width: 250px;
    height: 150px;
    background-color: #d0d0d0;
    border-radius: 12px;
    border: 3px solid #FFFFFF;
    z-index: 2;
}

.diferenciais-overlay-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('img/predio-dentro.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}


/* Right Side - Content */
.diferenciais-content-wrapper {
    flex: 1;
    background-color: #FFFFFF;
    padding: 40px 0 40px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.diferenciais-title {
    font-size: 48px;
    font-weight: 700;
    color: #26588a;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 50px 0;
}

.diferenciais-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.diferenciais-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.diferenciais-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #26588a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diferenciais-icon i {
    color: #FFFFFF;
    font-size: 16px;
}

.diferenciais-text {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

/* Nossos Valores Section */
.valores-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: #FFFFFF;
    padding: 80px 60px;
}

.valores-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 0;
}

/* Left Side - Photo */
.valores-photo-wrapper {
    flex: 0 0 45%;
    position: relative;
    overflow: visible;
}

.valores-main-photo {
    width: 100%;
    min-height: 700px;
    background-color: #e0e0e0;
    border-radius: 20px;
    position: relative;
    overflow: visible;
}

.valores-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 700px;
    background-image: url('img/trabalhando.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.valores-text-box {
    position: absolute;
    background-color: #26588a;
    color: #FFFFFF;
    padding: 20px 30px;
    border-radius: 8px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.valores-text-box p {
    margin: 0;
}

.valores-box-1 {
    bottom: 40px;
    left: -50px;
    max-width: 350px;
}

.valores-box-2 {
    bottom: 120px;
    right: -50px;
    max-width: 330px;
}

/* Right Side - Values List */
.valores-content-wrapper {
    flex: 1;
    background-color: #FFFFFF;
    padding: 40px 0;
}

.valores-title {
    max-width: 1600px;
    margin: 0 auto 40px;
    padding: 0 10px;
    font-size: 48px;
    font-weight: 700;
    color: #26588a;
    font-family: 'Montserrat', sans-serif;
}

.valores-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.valor-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
    gap: 20px;
}

.valor-icon {
    width: 60px;
    height: 60px;
    background-color: #26588a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.valor-icon i {
    color: #FFFFFF;
    font-size: 28px;
}

.valor-name {
    font-size: 24px;
    font-weight: 700;
    color: #26588a;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    text-transform: uppercase;
    text-align: justify;
}

.valor-description {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Carousel Section */
.carousel-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #11253e;
    padding: 80px 60px;
    overflow-x: hidden;
    overflow-y: visible;
}

.setores-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 60px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.setores-title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.2;
}

.setores-title-word-1 {
    font-size: 48px;
    font-weight: 400;
    color: #d0d6e0;
    letter-spacing: 2px;
}

.setores-title-word-2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.setores-title-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background-color: #d0d6e0;
}

.carousel-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
}

.carousel-card {
    flex: 0 0 100%;
    background-color: #11253e;
    overflow: visible;
    display: flex;
    flex-direction: row;
    min-height: 500px;
    align-items: stretch;
    box-sizing: border-box;
    margin-left: 100px;
}

.carousel-card-tributario-protecao{
    margin-left: 0;
}

.carousel-card-main-image {
    flex: 0 0 15%;
    background-color: #e0e0e0;
    position: relative;
}

.carousel-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-image-trabalhista {
    background-image: url('img/eduardo.jpg');
    color: transparent;
}

.carousel-image-civel,
.carousel-image-criminal {
    background-image: url('img/dono2.jpg');
    color: transparent;
}

.carousel-image-tributario {
    background-image: url('img/homem.jpg');
    color: transparent;
}

.carousel-image-protecao {
    background-image: url('img/mulher-trabalhando.jpg');
    color: transparent;
}

.carousel-image-holding {
    background-image: url('img/mulher2.jpg');
    color: transparent;
}

.carousel-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: #11253e;
    min-height: 500px;
}

.carousel-card-content {
    width: 30%;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    margin-left: -60px;
    background-color: #26588a;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    min-height: auto;
}

/* Reset margin-left em telas menores que 768px */
@media (max-width: 768px) {
    .carousel-card-content {
        margin-left: auto !important;
    }
}

.carousel-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 20px 0;
}

.carousel-card-text {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    overflow: visible;
    text-overflow: clip;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.carousel-card-mini-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 30%;
    margin-left: -60px;
}

.carousel-mini-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.carousel-mini-image {
    width: 120px;
    height: 120px;
    background-color: #e0e0e0;
    border-radius: 8px;
    position: relative;
}

.carousel-mini-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.carousel-mini-placeholder i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 32px;
    color: #26588a;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.carousel-mini-title {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    text-align: center;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 20px;
}

.carousel-nav-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: #ADD8E6;
}

.carousel-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Nossos Membros Section */
.membros-section {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    padding: 80px 60px;
    padding-bottom: 100px;
}

.membros-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 60px 0;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.membros-title-line-1,
.membros-title-line-2 {
    display: block;
    line-height: 1.2;
}

.membros-carousel-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.membros-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 600px;
}

.membros-carousel-track {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
    align-content: flex-start;
    width: calc(((1600px - 90px) / 4 + 30px) * 12);
}

.membro-card {
    flex: 0 0 auto;
    width: calc((1600px - 90px) / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    position: relative;
    box-sizing: border-box;
}

.membro-card-highlighted {
    border: 3px solid #8B5CF6;
    border-radius: 4px;
    padding: 3px;
}

.membro-image {
    width: 90%;
    aspect-ratio: 3/4;
    background-color: #e0e0e0;
    position: relative;
    margin-bottom: 0;
}

.membro-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.membro-info {
    width: 90%;
    background-color: #000000;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.membro-name {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 8px 0;
}

.membro-role {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin: 4px 0;
    line-height: 1.4;
    display: block;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.membros-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #8B5CF6;
}

.membros-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #11253e;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.membros-nav-btn:hover:not(:disabled) {
    background-color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.membros-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.membros-prev {
    left: 20px;
}

.membros-next {
    right: 20px;
}

.servicos-section-header {
    width: 100%;
    padding: 40px 60px 20px;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
}

.servicos-main-title {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #11253e;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

/* Serviços Content Section */
.servicos-content-section {
    position: relative;
    width: 100%;
    padding: 40px 60px;
    overflow: visible;
    display: flex;
    background-color: #FFFFFF;
}

/* Todos os cards servicos-civel (1º e 3º) - totalmente à direita */
.servicos-content-section.servicos-civel {
    justify-content: flex-end;
}

.servicos-content-section.servicos-civel .servicos-content-container {
    margin-right: 0;
    margin-left: auto;
}

/* Todos os cards servicos-trabalhista (2º e 4º) - totalmente à esquerda */
.servicos-content-section.servicos-trabalhista {
    justify-content: flex-start;
}

.servicos-content-section.servicos-trabalhista .servicos-content-container {
    margin-left: 0;
    margin-right: auto;
}

.servicos-content-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 380px;
    padding: 50px;
    border-radius: 30px;
}

.servicos-civel .servicos-content-container {
    background-color: #4A90E2;
}

.servicos-trabalhista .servicos-content-container {
    background-color: #11253e;
}

.servicos-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #FFFFFF;
    max-width: 550px;
}

.servicos-civel .servicos-content-container {
    flex-direction: row;
}

.servicos-trabalhista .servicos-content-container {
    flex-direction: row-reverse;
}

.servicos-title {
    font-size: 42px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.servicos-civel .servicos-title {
    color: #11253e;
}

.servicos-trabalhista .servicos-title {
    color: #4A90E2;
}

.servicos-description {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.servicos-button {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border-radius: 5px;
}

.servicos-button:hover {
    background-color: #FFFFFF;
}

.servicos-civel .servicos-button:hover {
    color: #4A90E2;
}

.servicos-trabalhista .servicos-button:hover {
    color: #11253e;
}

.servicos-image-wrapper {
    flex: 0 0 380px;
    height: 320px;
    position: relative;
}

/* Esconder imagens em telas menores que 750px */
@media (max-width: 750px) {
    .servicos-image-wrapper {
        display: none;
    }
    
    .servicos-content-container {
        flex-direction: column !important;
    }
}

/* Reduzir fontes dos cards de setores e diferenciais em telas menores que 400px */
@media (max-width: 400px) {
    .servicos-title {
        font-size: 32px;
    }
    
    .servicos-description {
        font-size: 13px;
    }
    
    .servicos-button {
        font-size: 13px;
        padding: 10px 25px;
    }
    
    .diferenciais-title {
        font-size: 36px;
    }
    
    .diferenciais-text {
        font-size: 15px;
    }
}

.servicos-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.servicos-image-civel,
.servicos-image-criminal {
    background-image: url('img/dono2.jpg');
    color: transparent;
}

.servicos-image-trabalhista {
    background-image: url('img/eduardo.jpg');
    color: transparent;
}

.servicos-image-tributario {
    background-image: url('img/homem.jpg');
    color: transparent;
}

.servicos-image-holding {
    background-image: url('img/mulher2.jpg');
    color: transparent;
}

.servicos-image-protecao {
    background-image: url('img/mulher-trabalhando.jpg');
    color: transparent;
}

.about-content-section-2 .about-banner {
    margin-left: -520px;
    margin-top: -20px;
    min-width: 640px;
    z-index: 130;
}

/* Blog Section */
.blog-section {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    padding: 80px 60px;
}

.blog-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
}

.blog-main {
    flex: 0 0 auto;
    min-width: 0;
    max-width: 800px;
    width: 100%;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.blog-filters::-webkit-scrollbar {
    height: 6px;
}

.blog-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.blog-filters::-webkit-scrollbar-thumb {
    background: #26588a;
    border-radius: 10px;
}

.blog-filter-btn {
    background-color: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-filter-btn:hover {
    border-color: #26588a;
    color: #26588a;
}

.blog-filter-btn.active {
    background-color: #26588a;
    border-color: #26588a;
    color: #FFFFFF;
}

/* Blog Posts */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background-color: #d0d0d0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-image-1 {
    background-image: url('img/predio-fora.jpg');
    color: transparent;
}

.blog-image-2 {
    background-image: url('img/predio-dentro.jpg');
    color: transparent;
}

.blog-image-3 {
    background-image: url('img/predio-fora.jpg');
    color: transparent;
}

.blog-post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-post-title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.3;
}

.blog-post-date {
    font-size: 13px;
    color: #999999;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.blog-post-excerpt {
    font-size: 15px;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.blog-post-link {
    color: #26588a;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.blog-post-link:hover {
    color: #11253e;
    text-decoration: underline;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination-btn {
    background-color: #26588a;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-btn:hover {
    background-color: #11253e;
}

/* Blog Sidebar */
.blog-sidebar {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 20px 0;
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-category-btn {
    background-color: transparent;
    border: none;
    text-align: left;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-category-btn:last-child {
    border-bottom: none;
}

.sidebar-category-btn:hover {
    color: #26588a;
}

.sidebar-category-btn.active {
    color: #26588a;
    font-weight: 600;
}

/* Recent Posts List */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-title {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 13px;
    color: #999999;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* Sidebar Contact */
.sidebar-contact {
    background-color: #26588a;
    color: #FFFFFF;
}

.sidebar-contact .sidebar-title {
    color: #FFFFFF;
}

.sidebar-contact-text {
    font-size: 15px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.sidebar-contact-link {
    display: inline-block;
    background-color: #FFFFFF;
    color: #26588a;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-contact-link:hover {
    background-color: #11253e;
    color: #FFFFFF;
}

/* Sidebar Categories List */
.sidebar-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-category-link {
    font-size: 15px;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.sidebar-category-link:hover {
    color: #26588a;
}

/* Sidebar Info */
.sidebar-info-item {
    margin-bottom: 20px;
}

.sidebar-info-item:last-child {
    margin-bottom: 0;
}

.sidebar-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 5px 0;
}

.sidebar-info-value {
    font-size: 15px;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* Blog Post Individual Page */
.blog-post-section {
    padding: 80px 60px;
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-header {
    padding: 50px 50px 30px;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #26588a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.blog-back-link:hover {
    color: #11253e;
}

.blog-back-link i {
    font-size: 12px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-post-category {
    background-color: #26588a;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-date {
    color: #666666;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

.blog-post-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #11253e;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.blog-post-authors {
    color: #666666;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-style: italic;
}

.blog-post-image-full {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.blog-post-content-full {
    padding: 50px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #333333;
}

.blog-post-content-full p {
    margin-bottom: 20px;
    font-size: 16px;
}

.blog-post-content-full h2 {
    font-size: 24px;
    font-weight: 700;
    color: #11253e;
    margin: 40px 0 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.blog-post-content-full ul,
.blog-post-content-full ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content-full li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
}

.blog-post-content-full strong {
    font-weight: 600;
    color: #11253e;
}

/* Table Responsive Wrapper */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    /* Estilização da barra de rolagem */
    scrollbar-width: thick; /* Firefox */
    scrollbar-color: #26588a #f5f5f5; /* Firefox: thumb e track */
}

/* Estilização da barra de rolagem para Webkit (Chrome, Safari, Edge) */
.table-responsive-wrapper::-webkit-scrollbar {
    height: 12px;
}

.table-responsive-wrapper::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 6px;
}

.table-responsive-wrapper::-webkit-scrollbar-thumb {
    background: #26588a;
    border-radius: 6px;
    border: 2px solid #f5f5f5;
}

.table-responsive-wrapper::-webkit-scrollbar-thumb:hover {
    background: #1a3d5f;
}

.aliquotas-table {
    min-width: 600px;
    width: 100%;
}

/* Responsive Blog Post */
@media (max-width: 768px) {
    .blog-post-section {
        padding: 40px 20px;
    }
    
    .blog-post-header {
        padding: 30px 25px 20px;
    }
    
    .blog-post-main-title {
        font-size: 24px;
    }
    
    .blog-post-image-full {
        height: 250px;
    }
    
    .blog-post-content-full {
        padding: 30px 25px;
    }
    
    .blog-post-content-full h2 {
        font-size: 20px;
    }
    
    .blog-post-content-full p,
    .blog-post-content-full li {
        font-size: 15px;
    }
    
    .table-responsive-wrapper {
        margin: 20px -25px;
        padding: 0 25px;
    }
    
    .aliquotas-table {
        min-width: 600px;
    }
}

/* Responsive Blog */
@media (max-width: 1200px) {
    .blog-container {
        flex-direction: column;
    }
    
    .blog-sidebar {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 910px) {
    .blog-filters {
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow-x: visible;
        gap: 6px;
    }
    
    .blog-filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 30px;
    }
    
    .blog-filters {
        gap: 10px;
    }
    
    .blog-filter-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

/* Responsive Sobre Nós Page */
@media (max-width: 1600px) {
    /* Membros Section - 1 card por vez */
    .membros-carousel-wrapper {
        min-height: auto;
    }
    
    .membros-carousel-track {
        flex-wrap: nowrap;
        width: max-content;
    }
    
    .membro-card {
        width: calc((100% - 30px)) !important;
        min-width: 280px;
        max-width: 350px;
    }
}

@media (max-width: 1370px) {
    /* Carousel Section - Setores responsivo */
    .carousel-section {
        padding: 60px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-container {
        max-width: 900px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .carousel-wrapper {
        width: 900px;
        max-width: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }
    
    .carousel-track {
        display: flex;
        justify-content: flex-start;
        gap: 0;
    }
    
    .carousel-card {
        width: 900px;
        min-width: 900px;
        max-width: 900px;
        flex-direction: column;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .carousel-card-main-image {
        flex: 1;
        width: 80%;
        max-width: 100%;
        min-height: 250px;
    }
    
    .carousel-card-right {
        width: 100%;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-card-content {
        width: 80%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        margin: 0 auto 30px auto;
    }
    
    .carousel-card-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .carousel-card-mini-images {
        width: 80%;
        margin-left: 0;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    /* About Content Sections */
    .about-content-section {
        padding: 10px 60px;
        min-height: auto;
    }
    
    .about-content-section-2 {
        padding-top: 0;
        padding-bottom: 10px;
    }
    
    .about-content-container {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .about-photo-wrapper {
        display: none;
    }
    
    .about-text-wrapper {
        flex: 1;
        width: 100%;
        margin-left: 0;
        padding: 12px;
    }
    
    .about-content-section-2 .about-content-container {
        padding: 15px 20px;
    }
    
    .about-content-section-2 .about-text-wrapper {
        padding: 12px;
    }
    
    .about-banner {
        padding: 20px 25px;
        margin-bottom: 20px;
    }
    
    .about-banner {
        margin-left: 0 !important;
        min-width: auto;
        width: 100%;
        clip-path: none;
        padding: 25px 30px;
    }
    
    .about-content-section-2 .about-banner {
        margin-left: 0 !important;
        margin-top: 0;
        min-width: auto;
    }
    
    .about-description {
        text-align: left;
    }
    
    /* Valores Section */
    .valores-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .valores-title {
        text-align: center;
    }
    
    .valores-photo-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .valores-main-photo {
        min-height: 300px;
    }
    
    .valores-photo-placeholder {
        min-height: 300px;
    }
    
    .valores-text-box {
        display: none;
    }
    
    .valores-content-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .valores-list {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 600px;
    }
    
    .valor-item {
        text-align: center;
        align-items: center;
    }
    
    /* Membros Section */
    .membros-carousel-wrapper {
        min-height: auto;
    }
    
    .membro-card {
        width: calc((100% - 30px) / 2) !important;
        min-width: 200px;
    }
    
    /* Carousel Section */
    .carousel-card {
        flex-direction: column;
        margin-left: 0;
    }
    
    .carousel-card-main-image {
        flex: 1;
        width: 70%;
        min-height: 200px;
        margin: auto;
    }
    
    .carousel-card-right {
        width: 70%;
        margin: auto;
    }
    
    .carousel-card-content {
        margin: auto;
    }
    
    .carousel-card-mini-images {
        display: none;
    }
}

@media (max-width: 768px) {
    /* About Content Sections */
    .about-content-section {
        padding: 40px 20px;
    }
    
    .about-content-container {
        padding: 30px 20px;
    }
    
    .about-photo-placeholder {
        min-height: 300px;
    }
    
    .about-banner-line-1,
    .about-banner-line-2 {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    /* Valores Section */
    .valores-section {
        padding: 60px 30px;
    }
    
    .valores-title {
        font-size: 36px;
    }
    
    .valores-text-box {
        max-width: 90%;
        font-size: 14px;
        padding: 15px;
    }
    
    .valor-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .valor-name {
        font-size: 18px;
    }
    
    .valor-description {
        font-size: 14px;
    }
    
    /* Membros Section */
    .membros-section {
        padding: 60px 30px;
    }
    
    .membros-title-line-1,
    .membros-title-line-2 {
        font-size: 32px;
    }
    
    .membro-card {
        width: calc((100% - 20px) / 2) !important;
        min-width: 150px;
    }
    
    .membro-name {
        font-size: 14px;
    }
    
    .membro-role {
        font-size: 12px;
    }
    
    /* Carousel Section */
    .carousel-section {
        padding: 60px 30px;
    }
    
    .setores-title-word-1,
    .setores-title-word-2 {
        font-size: 28px;
    }
    
    .carousel-card-title {
        font-size: 24px;
    }
    
    .carousel-card-text {
        font-size: 14px;
    }

    .carousel-card-main-image {
        display: none;
    }
    
    .carousel-card-right {
        width: 50%;
        margin: 0 60% 0 15%;
    }
    
    .carousel-card-content {
        margin: auto;
    }
    
}

@media (max-width: 480px) {
    /* About Content Sections */
    .about-content-section {
        padding: 30px 15px;
    }
    
    .about-content-container {
        padding: 20px 15px;
    }
    
    .about-photo-placeholder {
        min-height: 250px;
    }
    
    .about-text-wrapper {
        padding: 20px;
    }
    
    .about-banner {
        padding: 20px;
    }
    
    .about-banner-line-1,
    .about-banner-line-2 {
        font-size: 22px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    /* Valores Section */
    .valores-section {
        padding: 40px 20px;
    }
    
    .valores-title {
        font-size: 28px;
    }
    
    .valores-text-box {
        font-size: 12px;
        padding: 12px;
    }
    
    .valor-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .valor-name {
        font-size: 16px;
    }
    
    .valor-description {
        font-size: 13px;
    }
    
    /* Membros Section */
    .membros-section {
        padding: 40px 20px;
    }
    
    .membros-title-line-1,
    .membros-title-line-2 {
        font-size: 24px;
    }
    
    .membro-card {
        width: 100% !important;
    }
    
    /* Carousel Section */
    .carousel-section {
        padding: 40px 20px;
    }
    
    .setores-title-word-1,
    .setores-title-word-2 {
        font-size: 22px;
    }
    
    .carousel-card-title {
        font-size: 20px;
    }
    
    .carousel-card-text {
        font-size: 13px;
    }
    
    .carousel-card-right {
        width: 50%;
        margin: 0 65% 0 7%;
    }
    
    .carousel-card-content {
        margin: auto;
    }
}

@media (max-width: 320px) {
    /* About Content Sections */
    .about-content-section {
        padding: 20px 10px;
    }
    
    .about-content-container {
        padding: 15px 10px;
    }
    
    .about-photo-placeholder {
        min-height: 200px;
    }
    
    .about-text-wrapper {
        padding: 15px;
    }
    
    .about-banner {
        padding: 15px;
    }
    
    .about-banner-line-1,
    .about-banner-line-2 {
        font-size: 18px;
    }
    
    .about-description {
        font-size: 13px;
    }
    
    /* Valores Section */
    .valores-section {
        padding: 30px 15px;
    }
    
    .valores-title {
        font-size: 24px;
    }
    
    .valores-text-box {
        font-size: 11px;
        padding: 10px;
    }
    
    .valor-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .valor-name {
        font-size: 14px;
    }
    
    .valor-description {
        font-size: 12px;
    }
    
    /* Membros Section */
    .membros-section {
        padding: 30px 15px;
    }
    
    .membros-title-line-1,
    .membros-title-line-2 {
        font-size: 20px;
    }
    
    .membro-name {
        font-size: 13px;
    }
    
    .membro-role {
        font-size: 11px;
    }
    
    /* Carousel Section */
    .carousel-section {
        padding: 30px 15px;
    }
    
    .setores-title-word-1,
    .setores-title-word-2 {
        font-size: 18px;
    }
    
    .carousel-card-title {
        font-size: 18px;
    }
    
    .carousel-card-text {
        font-size: 12px;
    }
    
    .carousel-card-content {
        padding: 15px;
    }
}

/* Footer */
.footer {
    color: #FFFFFF;
    padding: 0 0 20px 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 15px 0;
}

.footer-description {
    font-size: 14px;
    color: #d0d6e0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 20px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #d0d6e0;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ADD8E6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    font-size: 14px;
    color: #d0d6e0;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: #ADD8E6;
    font-size: 16px;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    color: #d0d6e0;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #ADD8E6;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #d0d6e0;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

