/* Custom Variables */
:root {
    --primary-color: #ff4a00;
    --secondary-color: #FF8E61;
    --dark-bg: #242424;
    --text-dark: #242424;
    --text-soft: #6c6c6c;
    --text-light: #c3c3c3;
    --bg-light: #f6f6f6;
    --bg-white: #fafafa;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    max-width: 1920px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}

/* Header Styles */
/* Header base (estado inicial NORMAL) */
.header {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 999;
    transition: 
        padding 0.3s ease-in-out, 
        background-color 0.3s ease-in-out, 
        box-shadow 0.3s ease-in-out;
}

header .btn-primary-custom{
    background-color: var(--secondary-color);
}

/* Estado fixo */
.header.header-fixed {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}


.hero-section {
    background-color: #141414 !important;
}

.top-bar a,
.top-bar i {
    font-size: 11px !important;
}

.top-bar {
    background: var(--primary-color);
    font-size: 11px;
    padding: 4px 0;
    position: absolute;
    bottom: -25px;
    width: auto;
    /* left: 0; */
    padding: 5px;
    right: 0;
    z-index: 10;
    border-radius: 0 0 16px 16px;
}

.top-bar .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 108px;
}

@media (max-width: 1440px) {
    .top-bar .container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        padding: 0 16px;
    }

    .top-bar .d-flex {
        flex-wrap: wrap;
        gap: 12px !important;
        justify-content: center;
    }

    .top-bar {
        position: static;
        width: 100%;
        border-radius: 0;
    }

    nav .navbar-collapse {
        padding-top: 25px !important;
    }

    nav .btn-primary-custom {
        width: 100%;
        margin-top: 10px;
    }

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

    /* Submenu mobile - não absolute, abre por clique */
    .navbar-nav .has-dropdown {
        position: static !important;
    }

    .navbar-nav .sub-menu,
    .navbar-nav .dropdown-menu {
        position: static !important;
        display: none !important;
        min-width: auto;
        max-height: 300px;
        overflow-y: auto;
        width: 100%;
        background-color: var(--primary-color) !important;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
        z-index: auto;
    }

    /* Desabilita completamente o hover no mobile */
    .navbar-nav .has-dropdown:hover .sub-menu,
    .navbar-nav .has-dropdown:hover .dropdown-menu,
    .navbar-nav .sub-menu:hover,
    .navbar-nav .dropdown-menu:hover {
        display: none !important;
    }

    /* Apenas abre por classe menu-open (controlada por JavaScript) */
    .navbar-nav .has-dropdown.menu-open .sub-menu,
    .navbar-nav .has-dropdown.menu-open .dropdown-menu {
        display: block !important;
    }

    .navbar-nav .sub-menu .nav-link,
    .navbar-nav .dropdown-menu .nav-link {
        padding: 10px 20px 10px 40px !important;
        text-align: left;
    }

    /* Previne delay de 300ms em dispositivos touch */
    .navbar-nav .has-dropdown > .nav-link {
        touch-action: manipulation;
    }

    /* Ícone de chevron no mobile */
    .navbar-nav .has-dropdown > .nav-link .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .navbar-nav .has-dropdown.menu-open > .nav-link .fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Previne qualquer interação hover no mobile */
    .navbar-nav .has-dropdown:hover {
        pointer-events: auto;
    }
    
    .navbar-nav .has-dropdown .sub-menu,
    .navbar-nav .has-dropdown .dropdown-menu {
        pointer-events: auto;
    }

}

.top-bar .d-flex {
    gap: 24px;
}

.top-bar .d-flex>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar i {
    font-size: 16px;
    color: #fafafa;
}

.top-bar span {
    color: #fafafa;
    font-family: 'Inter', sans-serif;
    font-weight: 350;
    font-size: 12px;
    white-space: nowrap;
}

.bg-dark-custom {
    background-color: var(--primary-color) !important;

}


header .navbar-brand{
    max-width: 220px;
}
.logo-header{
    width: 100%;
}

.navbar-nav .nav-link {
    color: #fafafa !important;
    padding: 12px 16px !important;
    border-radius: 32px;
    transition: all 0.3s;
    font-weight: 400;
}

.navbar-nav .nav-link.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sub-menu Styles */
.navbar-nav .has-dropdown {
    position: relative;
}

.navbar-nav .sub-menu,
.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    max-height: 300px;
    overflow-y: auto;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 8px 0;
    font-size: 12px;
    box-shadow: 0 4px 6px var(--primary-color);
    z-index: 1000;
}

.navbar-nav .has-dropdown:hover .sub-menu,
.navbar-nav .has-dropdown:hover .dropdown-menu,
.navbar-nav .sub-menu:hover,
.navbar-nav .dropdown-menu:hover {
    display: block;
}

.navbar-nav .sub-menu .nav-link,
.navbar-nav .dropdown-menu .nav-link {
    color: #fafafa !important;
    padding: 10px 20px !important;
    border-radius: 0;
    display: block;
    white-space: nowrap;
    transition: all 0.3s;
}

.navbar-nav .sub-menu .nav-link:hover,
.navbar-nav .dropdown-menu .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.navbar-nav .sub-menu .nav-link.active,
.navbar-nav .dropdown-menu .nav-link.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 32px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline-primary-custom {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 32px;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 104px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
}

.hero-text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-light);
}

.hero-images {
    height: 528px;
}

.hero-img-wrapper {
    height: 100%;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.hero-img-wrapper:first-child {
    padding-bottom: 0;
}

.hero-img-wrapper.hero-img-offset {
    padding-top: 32px;
}

/* Hero Section Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section {

        min-height: auto;
    }

    .hero-image {
        object-fit: none;

    }

    #top-bar-container {
        display: none;
    }

    .hero-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .btn-primary-custom {
        padding: 8px 18px;
    }


    .hero-section .col-lg-6:last-child {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 32px;
    }

    .hero-section .hero-buttons {
        flex-direction: column;
        gap: 16px !important;
        width: 100%;
    }

    .hero-section .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .hero-section .btn-outline-light {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: #fafafa;
    }

    .hero-section .btn-outline-light:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.7);
        color: #fafafa;
    }

    .hero-images {
        height: auto;
        /* flex-direction: column; */
        gap: 16px !important;
    }

    .hero-img-wrapper {
        height: 322px;
        margin-top: 0 !important;
        padding: 0 !important;
    }

    .hero-img-wrapper.hero-img-offset {
        padding-top: 0 !important;
        margin-top: 28px !important;
    }

    .hero-img-wrapper img {
        height: 322px;
        object-fit: cover;
    }

    .navbar-brand img {
        width: 100%;
    }
}

/* Badge Custom */
.badge-custom {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgb(var(--primary-color) / 10%);
}

.badge-custom i {
    font-size: 14px;
    color: var(--primary-color);
}

.badge-custom.badge-light {
    background-color: rgb(var(--primary-color) / 10%);
    color: #fff;
}

.badge-custom.badge-light i {
    color: #fff;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 104px 0;
    background-color: var(--bg-light);
}

.about-card {
    background-color: #eee;
    padding: 32px;
    border-radius: 24px;
}

.about-card h3 {
    font-size: 22px;
    color: #4a4848;
    margin-bottom: 24px;
}

.about-card p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-soft);
}

.about-section .about-img {
    border-radius: 24px;
    height: 502px;
    object-fit: cover;
    width: 100%;
}

.feature-icon img {
    width: 70%;
}

/* Services Section */
.service-card h3 {
    font-size: 16px;
}

.service-card .btn-primary-custom
 {
    background-color: var(--primary-color);
    border: 0;
    color: #ffffff;
    border-radius: 32px;
    width: 32px;
    padding: 5px;
    font-weight: 500;
    font-size: 16px;
}

.services-section {
    padding: 104px 0;
}

.services-carousel {
    padding-bottom: 10px;
}

.services-carousel .owl-stage-outer {
    padding: 10px 0;
    overflow: hidden;
}

.services-carousel .owl-item {
    padding-right: 0;
}

.services-carousel .owl-item .item {
    width: 100%;
    height: 100%;
}

.services-carousel .owl-item .service-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-card {
    /* min-width: 300px; */
    width: 100%;
    height: 486px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    background-color: var(--bg-light);
}

.service-card-content h4 {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0;
}

/* Why Us Section */
.why-us-section {
    padding: 104px 0;
    background-color: var(--dark-bg);
}

.why-us-section .section-title {
    color: #fff;
}

.why-us-section .row {
    align-items: flex-start;
}

.feature-card {
    background-color: var(--secondary-color);
    height: 100%;
    min-height: 303px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
    border-radius: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Estilização moderna da scrollbar para WebKit (Chrome, Safari, Edge) */
.feature-card::-webkit-scrollbar {
    width: 8px;
}

.feature-card::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.feature-card::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.feature-card::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.feature-card-destaque {
    background-color: var(--primary-color) !important;
}

.feature-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 24px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.4;
}

.feature-icon {
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0;
}

.feature-icon i {
    font-size: 24px;
}

.diferencial-img-offset {
    margin-top: 24px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 104px 0;
    background-color: var(--bg-light);
}

.testimonials-carousel {
    padding-bottom: 10px;
}

.testimonials-carousel .owl-stage-outer {
    padding: 10px 0;
}

.testimonials-carousel .owl-item {
    padding-right: 24px;
}

.testimonial-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 24px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(152, 157, 209, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.bg-primary-custom {
    background-color: var(--primary-color) !important;
    border-color: rgba(152, 157, 209, 0.05);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-soft);
}

.testimonial-card.bg-primary-custom p {
    color: #fafafa !important;
}
.testimonial-card.bg-primary-custom h6 {
    color: #fafafa !important;
}
.testimonial-card.bg-primary-custom h3 {
    color: #fafafa !important;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    background-color: #ccc;
    border-radius: 50%;
}

.testimonial-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 5px;
    font-size: 12px;
    margin-bottom: 20px;
}

/* Scrollbar moderna para testimonial-content */
.testimonial-content::-webkit-scrollbar {
    width: 8px;
}

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

.testimonial-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8f8f8f 0%, #2b2b2b 100%);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.testimonial-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8f8f8f 0%, #2b2b2b 100%);

}

/* Para Firefox */
.testimonial-content {
    scrollbar-width: thin;
    scrollbar-color: #d5d5d5 #f1f1f1;
}

/* Client Logos Carousel */
.testimonials-logos-carousel {
    margin-top: 40px;
    padding: 32px 0;
    position: relative;
}

.testimonials-logos-carousel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 358px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-light), rgba(246, 246, 246, 0));
    z-index: 2;
    pointer-events: none;
}

.testimonials-logos-carousel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 358px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-light), rgba(246, 246, 246, 0));
    z-index: 2;
    pointer-events: none;
}

.testimonials-logos-carousel .owl-stage-outer {
    padding: 0 16px;
}

.testimonials-logos-carousel .owl-item {
    padding-right: 41px;
}

.client-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-height: 80px;
    width: auto;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Blog Section */
.blog-section {
    padding: 104px 0;
}

.blog-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.blog-card h3{
    font-size: 16px;
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: -20px;
    z-index: 1;
}

.blog-card-img img {
    width: 100%;
    height: 434px;
    object-fit: cover;
    display: block;
}

.blog-date-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.blog-card-content {
    background-color: #fff;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(152, 157, 209, 0.05);
    position: relative;
    z-index: 2;
    margin-top: 0;
}


.blog-card-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Rubik', sans-serif;
}

.blog-card-content p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
}

.blog-card-content {
    background-color: #fff;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(152, 157, 209, 0.05);
    position: relative;
    z-index: 2;
    width: 95%;
    top: -109px;
    margin-top: 0;
    margin: 0 auto;
}

/* Blog Section Responsive */
@media (max-width: 992px) {
    .blog-section .row.mb-5 {
        margin-bottom: 40px !important;
    }

    .blog-section .col-lg-6:last-child {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .blog-card-img img {
        height: 300px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-content h4 {
        font-size: 16px;
    }

    .blog-card-content p {
        font-size: 14px;
    }
}

/* CTA Section */

.btn-primary-custom{
    background-color: var(--secondary-color) !important;
}

.cta-section {
    padding: 104px 0;
    background-color: var(--dark-bg);
}

.cta-section .section-title {
    color: #fff;
}

.cta-section .btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Project Gallery Section */
.project-gallery-section {
    padding: 104px 0;
    background-color: var(--bg-light);
}

.project-gallery {
    padding-bottom: 10px;
}

.project-gallery .owl-stage-outer {
    padding: 10px 0;
}

.project-gallery .owl-item {
    padding-right: 24px;
}

.project-card {
    /* min-width: 392px; */
    height: 362px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* Project Gallery Navigation */
.project-gallery .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.project-gallery .owl-nav button {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(232, 129, 88, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.project-gallery .owl-nav button:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.project-gallery .owl-nav button.owl-prev {
    left: 0;
}

.project-gallery .owl-nav button.owl-next {
    right: 0;
}

/* Featured Services Section */
.featured-services-section {
    padding: 104px 0;
    background-color: var(--bg-light);
}

.featured-services-carousel {
    padding-bottom: 10px;
}

.featured-services-carousel .owl-stage-outer {
    padding: 10px 0;
}

.featured-services-carousel .owl-item {
    padding-right: 24px;
}

.featured-service-card {
    min-width: 225.6px;
    height: 180px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-service-card:hover {
    transform: translateY(-5px);
}

.featured-service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.featured-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-service-card-content {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
}

.featured-service-card-content h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-soft);
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 120px 0 16px;
}

.footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer p,
.footer li {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-item {
    display: flex;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

@media (max-width: 1300px) {
    .top-bar {
        width: auto !important;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .service-card {
        min-width: 0;
        width: 100%;
    }

}

@media (max-width: 992px) {
    .services-carousel .owl-item {
        padding-right: 0;
    }

    .service-card {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .services-carousel .owl-item {
        padding-right: 0;
    }

    .service-card {
        min-width: 0;
        width: 100%;
    }

    .testimonials-carousel .owl-item {
        padding-right: 16px;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .testimonials-logos-carousel::before,
    .testimonials-logos-carousel::after {
        display: none;
    }

    .diferencial-img-offset {
        margin-top: 0;
    }

    .about-section .img-about {
        height: 100%;
        /* margin-top: 24px; */
    }

    .featured-service-card {
        min-width: 100%;
    }

    .project-gallery .owl-item {
        padding-right: 16px;
    }

    .project-card {
        min-width: 100%;
        height: 250px;
    }

    .project-gallery .owl-nav {
        padding: 0 10px;
    }

    .project-gallery .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.text-primary-custom {
    color: var(--primary-color) !important;
}


/* Empresa Page Styles */

.empresa-section {
    padding: 104px 0;
    background-color: var(--bg-white);
}

.empresa-history-card {
    background-color: #eee;
    padding: 32px;
    border-radius: 24px;
}

.empresa-card-title {
    font-size: 22px;
    font-weight: 500;
    color: #4a4848;
    line-height: 1.2;
}

.empresa-card-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-soft);
}

.empresa-main-image {
    height: 922px;
    border-radius: 32px;
    overflow: hidden;
}

.empresa-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mvv-card {
    background-color: var(--dark-bg);
    padding: 24px;
    border-radius: 24px;
}

.mvv-icon-wrapper {
    width: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 16px;
}

.mvv-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mvv-title {
    font-size: 22px;
    font-weight: 500;
    color: #FFF;
    line-height: 1.2;
}
.mvv-card i{
    color: #FFF;
}

.mvv-text {
    font-size: 14px;
    line-height: 1.5;
    color: #FFF;
}

/* Responsive adjustments for empresa page */
@media (max-width: 992px) {
    .empresa-main-image {
        height: 400px;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .empresa-main-image {
        height: 300px;
    }

    .mvv-card {
        margin-bottom: 16px;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: var(--bg-light);
    padding: 40px 0 32px;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 32px 0 24px;
    }

    .breadcrumb-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-title {
        font-size: 24px;
    }
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item.active {
    color: var(--text-soft);
    font-weight: 600;
    font-size: 14px;
}

/* Desabilitar separadores automáticos do Bootstrap */
.breadcrumb-item+.breadcrumb-item::before {
    display: none !important;
    content: none !important;
}

/* Estilizar o separador manual no HTML */
.breadcrumb-item span {
    color: var(--text-soft);
    padding: 0 8px;
    font-weight: 400;
}

.page-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
    font-family: 'Rubik', sans-serif;
}

.title-underline {
    height: 3px;
    width: 50px;
    background-color: var(--primary-color);
    margin-top: 16px;
    border-radius: 2px;
}

/* Services Grid Section */
.services-grid-section {
    padding: 104px 0;
}

.service-card-grid {
    position: relative;
    height: 486px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}

.service-card-img-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content-grid {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 16px;
}

.service-card-content-grid h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.2;
}

.btn-service-arrow {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.25;
    transition: opacity 0.3s;
}

.btn-service-arrow:hover {
    opacity: 1;
    background-color: var(--primary-color);
    color: #fff;
}

.btn-service-arrow i {
    font-size: 14px;
}

/* Service Content Page Styles */
.servico-conteudo-section {
    padding: 104px 0;
    background-color: var(--bg-white);
}

.servico-main-image {
    height: 744px;
    border-radius: 24px;
    overflow: hidden;
}

.servico-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servico-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
    font-family: 'Rubik', sans-serif;
}

.servico-description {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-soft);
    font-weight: 350;
}

.servico-description p {
    margin-bottom: 0;
}

.servico-cta {
    margin-bottom: 56px;
}

/* Accordion Fields */
.servico-accordion-fields {
    margin-top: 0;
}

.accordion-field {
    margin-bottom: 0;
}

.accordion-field-btn {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 16px;
    font-weight: 350;
    color: var(--text-soft);
    transition: all 0.3s;
    cursor: pointer;
}

.accordion-field-btn:hover {
    background-color: #f9f9f9;
    border-color: #ddd;
}

.accordion-field-btn:focus {
    box-shadow: none;
    outline: none;
}

.accordion-field-btn i {
    font-size: 16px;
    transition: transform 0.3s;
    color: var(--text-dark);
}

.accordion-field-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-field-content {
    padding: 16px 24px;
    background-color: var(--bg-white);
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 24px 24px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-soft);
}

.accordion-field-content p {
    margin-bottom: 0;
}

/* Responsive adjustments for service content page */
@media (max-width: 992px) {
    .servico-main-image {
        height: 500px;
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .servico-main-image {
        height: 400px;
    }

    .servico-title {
        font-size: 24px;
    }

    .servico-description {
        font-size: 16px;
    }
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.portfolio-grid {
    padding: 64px 0;
}

.portfolio-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    min-width: 100%;
}

.portfolio-row:last-child {
    margin-bottom: 0;
}

.portfolio-card {
    flex: 1 0 0;
    min-width: 0;
    height: 350px;
    border: 1px solid rgba(152, 157, 209, 0.05);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-color: var(--primary-color);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}

.portfolio-card:hover::before {
    opacity: 0.1;
}

/* Responsive adjustments for portfolio page */
@media (max-width: 1200px) {
    .portfolio-card {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .portfolio-section {
        padding: 80px 0;
    }

    .portfolio-grid {
        padding: 40px 0;
    }

    .portfolio-row {
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: thin;
        flex-wrap: nowrap;
    }

    .portfolio-row::-webkit-scrollbar {
        height: 6px;
    }

    .portfolio-row::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);
        border-radius: 3px;
    }

    .portfolio-card {
        min-width: 288px;
        flex-shrink: 0;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 64px 0;
    }

    .portfolio-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .portfolio-grid {
        padding: 32px 0;
    }

    .portfolio-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .portfolio-card {
        min-width: 100%;
        width: 100%;
        height: 250px;
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .portfolio-section {
        padding: 48px 0;
    }

    .portfolio-grid {
        padding: 24px 0;
    }

    .portfolio-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .portfolio-card {
        height: 200px;
    }
}

/* Blog List Page Styles */
.blog-list-section {
    padding: 104px 0;
    background-color: var(--bg-white);
}

.blog-search-wrapper {
    display: flex;
    justify-content: flex-end;
}

.blog-search-field {
    position: relative;
    max-width: 350px;
    width: 100%;
}

.blog-search-field .form-control {
    border: 1.5px solid #e9e9e9;
    border-radius: 16px;
    padding: 12px 48px 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    background-color: #fff;
    transition: all 0.3s;
}

.blog-search-field .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 129, 88, 0.1);
    outline: none;
}

.blog-search-field .form-control::placeholder {
    color: var(--text-light);
}

.blog-search-field .blog-search-submit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
    transition: color 0.3s;
}

.blog-search-field .blog-search-submit:hover {
    color: var(--primary-color);
}

.blog-search-field .blog-search-submit i {
    pointer-events: none;
}

/* Blog search AJAX loading */
.blog-results-container .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

.blog-results-container {
    min-height: 200px;
}

.blog-card-list {
    height: 500px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-list-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-card-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.blog-date-badge {
 
    top: 12px;
    left: 12px;
    z-index: 2;
    background-color: var(--primary-color);
    padding: 16px;
    border-radius: 24px;
}

.blog-date-badge span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.blog-card-list-content {
    position: relative;
    z-index: 2;
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 16px;
    margin-top: auto;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-soft);
    line-height: 1.2;
    margin-bottom: 4px;
    font-family: 'Rubik', sans-serif;
}

.blog-card-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.btn-pagination-prev,
.btn-pagination-next {
    border: 1.5px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s;
}

.btn-pagination-prev:hover,
.btn-pagination-next:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-pagination-prev i,
.btn-pagination-next i {
    font-size: 16px;
}

/* Responsive adjustments for blog page */
@media (max-width: 992px) {
    .blog-search-wrapper {
        justify-content: flex-start;
        margin-top: 24px;
    }

    .blog-search-field {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-card-list {
        height: 400px;
        margin-bottom: 24px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-subtitle {
        font-size: 12px;
    }

    .blog-pagination {
        justify-content: center;
    }
}

/* Contact Page Styles */
.contato-section {
    padding: 104px 0;
    background-color: var(--bg-white);
}

.contato-subtitle {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-soft);
    font-weight: 350;
    max-width: 800px;
    margin: 0 auto;
}

.contato-form-card {
    background-color: var(--bg-light);
    padding: 56px;
    border-radius: 24px;
}

.contato-form .form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.contato-form .form-label .text-danger {
    color: var(--primary-color);
}

.contato-input {
    background-color: var(--bg-white);
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s;
}

.contato-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 129, 88, 0.1);
    outline: none;
    background-color: var(--bg-white);
}

.contato-input::placeholder {
    color: var(--text-light);
    font-weight: 500;
}

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

.contato-info-card {
    background-color: var(--primary-color);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0px 4px 8px -2px rgba(27, 27, 27, 0.15), 0px 12px 20px -4px rgba(27, 27, 27, 0.15);
}

.contato-info-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 32px;
}

.contato-info-item {
    background-color: rgba(186, 189, 224, 0.08);
    padding: 16px;
    border-radius: 16px;
}

.contato-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-info-icon i {
    font-size: 20px;
    color: #fff;
}

.contato-info-text {
    flex: 1;
}

.contato-info-text a {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    font-weight: 350;
    transition: opacity 0.3s;
}

.contato-info-text a:hover {
    opacity: 0.8;
    color: #fff;
}

.contato-map {
    height: 192px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.contato-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive adjustments for contact page */
@media (max-width: 992px) {
    .contato-form-card {
        padding: 40px;
        margin-bottom: 32px;
    }

    .contato-info-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .contato-section {
        padding: 64px 0;
    }

    .contato-form-card {
        padding: 32px 24px;
    }

    .contato-subtitle {
        font-size: 16px;
    }

    .contato-info-title {
        font-size: 20px;
    }

    .contato-map {
        height: 250px;
    }

    .navbar-nav .nav-link.active{
        background-color: transparent !important;
        color: var(--secondary-color) !important;
    }
}

/* Blog Post Content Section */
.blog-post-content-section {
    padding: 104px 0;
}

.blog-post-content {
    padding-right: 24px;
}

.blog-post-content .blog-date-badge {
    border-radius: 24px;
    padding: 16px;
    display: inline-block;
    margin-bottom: 24px;
}

.blog-post-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
    font-family: 'Rubik', sans-serif;
}

.blog-post-text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-soft);
    font-weight: 350;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

/* Related Articles Section */
.related-articles-section {
    padding: 104px 0;
}

.related-articles-carousel {
    position: relative;
}

.related-articles-carousel .item {
    padding: 0 12px;
}

.related-articles-nav .btn {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
}

.related-articles-nav .btn i {
    font-size: 16px;
}

.active>.page-link, .page-link.active.page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link{
    color: var(--primary-color);
}

.page-link:not(.active):hover{
    color: var(--text-dark);
}
/* Responsive adjustments for blog post content */
@media (max-width: 992px) {
    .blog-post-content-section {
        padding: 64px 0;
    }

    .blog-post-content {
        padding-right: 0;
        margin-bottom: 32px;
    }

    .blog-post-title {
        font-size: 28px;
    }

    .blog-post-text {
        font-size: 16px;
    }

    .related-articles-section {
        padding: 64px 0;
    }
}

@media (max-width: 768px) {
    .blog-post-content-section {
        padding: 48px 0;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .blog-post-text {
        font-size: 14px;
    }

    .related-articles-section {
        padding: 48px 0;
    }

    .related-articles-nav {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .related-articles-carousel .item {
        padding: 0 8px;
    }
}

/* 404 Error Page Styles */
.error-404-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 104px 0;
    background-color: var(--bg-white);
}

.error-404-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.error-404-code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    font-family: 'Rubik', sans-serif;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.16);
    animation: fadeInDown 0.6s ease-out;
}

.error-404-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.error-404-description {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-soft);
    font-weight: 350;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.error-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.error-404-actions .btn-primary,
.error-404-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.error-404-actions .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    
}

.error-404-actions .btn-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
 
    transform: translateY(-2px);
}

.error-404-actions .btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1.5px solid #e9e9e9;
}

.error-404-actions .btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.error-404-actions .btn-primary svg,
.error-404-actions .btn-secondary svg {
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments for 404 page */
@media (max-width: 768px) {
    .error-404-page {
        padding: 64px 0;
        min-height: calc(100vh - 150px);
    }

    .error-404-content {
        padding: 32px 16px;
    }

    .error-404-code {
        font-size: 80px;
        margin-bottom: 20px;
    }

    .error-404-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .error-404-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .error-404-actions {
        flex-direction: column;
        gap: 12px;
    }

    .error-404-actions .btn-primary,
    .error-404-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    header .navbar-brand{
        max-width: 145px;
    }
    .navbar-toggler i {
        color: #cfcfcf;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .error-404-code {
        font-size: 64px;
    }

    .error-404-title {
        font-size: 20px;
    }

    .error-404-description {
        font-size: 14px;
    }
}

/* ==========================================================================
   Seção de Regiões
   ========================================================================== */

.section-regioes {
  padding: 60px 0;
  background: #f5f5f5;
}

.section-regioes h2 {
  font-size: 28px;
  color: var(--brand-primary-dark, var(--primary-color, #242424));
  margin-bottom: 32px;
  font-weight: 600;
  text-align: center;
}

.regioes-mpi {
  max-width: 1400px;
  margin: 0 auto;
}

/* Grid de Estados */
.regioes__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  margin-bottom: 0px;
  background: transparent;
  overflow: hidden;
  border-radius: 4px;
}

.regioes__menu-item {
  background: #f8f8f8;
  border: none;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.regioes__menu-item:hover {
  background: #e8e8e8;
  color: var(--brand-primary-dark, var(--primary-color, #242424));
}

.regioes__menu-item.active {
  background: var(--brand-primary-dark, var(--primary-color, #242424));
  color: #ffffff;
  font-weight: 600;
}

/* Remove borda direita do último item de cada linha */
.regioes__menu-item:nth-child(12),
.regioes__menu-item:nth-child(24),
.regioes__menu-item:nth-child(26) {
  border-right: none;
}

/* Remove borda inferior da última linha */
.regioes__menu-item:nth-child(n+25) {
  border-bottom: none;
}

/* Conteúdo das Cidades */
.regioes__content {
    /* background: #ffffff; */
    border-radius: 4px;
    padding: 10px 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.regioes__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px 12px;
}

.regioes__content ul li {
  font-size: 14px;
  color: #555;
  padding: 8px 12px;
  background: #f9f9f9;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: center;
}

.regioes__content ul li:hover {
  background: var(--secondary-lighter);
  color: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.regioes__content ul li strong {
  font-weight: 500;
}

/* Responsivo para Tablets */
@media (max-width: 1200px) {
  .regioes__grid {
    grid-template-columns: repeat(8, 1fr);
  }
  
  .regioes__content ul {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .regioes__menu-item:nth-child(8),
  .regioes__menu-item:nth-child(16),
  .regioes__menu-item:nth-child(24) {
    border-right: none;
  }
  
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(26) {
    border-right: 1px solid #e0e0e0;
  }
}

@media (max-width: 991px) {
  .section-regioes h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .regioes__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .regioes__content {
    padding: 24px;
  }
  
  .regioes__content ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 8px;
  }
  
  .regioes__menu-item {
    padding: 14px 10px;
    font-size: 13px;
  }
  
  .regioes__menu-item:nth-child(6),
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(18),
  .regioes__menu-item:nth-child(24) {
    border-right: none;
  }
  
  .regioes__menu-item:nth-child(8),
  .regioes__menu-item:nth-child(16),
  .regioes__menu-item:nth-child(26) {
    border-right: 1px solid #e0e0e0;
  }
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
  .section-regioes {
    padding: 40px 0;
  }
  
  .section-regioes h2 {
    font-size: 20px;
    padding: 0 16px;
  }
  
  .regioes__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .regioes__content {
    padding: 20px 16px;
  }
  
  .regioes__content ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 8px;
  }
  
  .regioes__content ul li {
    font-size: 13px;
    padding: 6px 8px;
  }
  
  .regioes__menu-item {
    padding: 12px 8px;
    font-size: 12px;
  }
  
  .regioes__menu-item:nth-child(4n) {
    border-right: none;
  }
  
  .regioes__menu-item:nth-child(6),
  .regioes__menu-item:nth-child(8),
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(16),
  .regioes__menu-item:nth-child(18),
  .regioes__menu-item:nth-child(24),
  .regioes__menu-item:nth-child(26) {
    border-right: 1px solid #e0e0e0;
  }
}

@media (max-width: 480px) {
  .regioes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .regioes__content ul {
    grid-template-columns: 1fr;
  }
  
  .regioes__menu-item:nth-child(3n) {
    border-right: none;
  }
  
  .regioes__menu-item:nth-child(4n),
  .regioes__menu-item:nth-child(6),
  .regioes__menu-item:nth-child(8),
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(16),
  .regioes__menu-item:nth-child(18),
  .regioes__menu-item:nth-child(24),
  .regioes__menu-item:nth-child(26) {
    border-right: 1px solid #e0e0e0;
  }
}


