/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust based on your header height */
}

/* Header styles */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo styles */
.logo {
    display: block;
    height: 56px;
}

.logo img {
    height: 100%;
    object-fit: contain;
    object-position: left;
}

/* Desktop navigation */
.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    /* color: #b39a64; */
    color: #8e7a4d;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    /* color: #8e7a4d; */
    color: #b39a64;
}

.nav-link.active,
.nav-link:target,
.mobile-nav-link:target {
    color: #8e7a4d;
    font-weight: 500;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b39a64;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-icon {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #b39a64;
    transition: transform 0.3s ease;
}

.mobile-menu-btn.open .menu-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.open .menu-icon:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open .menu-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile navigation */
.mobile-nav-link {
    color: #8e7a4d;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #b39a64;
}

.nav-mobile {
    display: none;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
}

.nav-mobile.open {
    display: block;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    color: #b39a64;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #8e7a4d;
}

/* Hero Section */
.hero {
    /* background-color: #f0f0f0; */
    background-color: rgb(237, 241, 239);
    /* padding: 60px 0; */
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 40px; */
}

.hero-text {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-block;
    background-color: #5c5c5c;
    color: white;
    padding: 8px 16px;
    /* border-radius: 20px; */
    border-radius: 0.3rem;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #333;
    font-weight: 600;
}

.highlight {
    color: #333;
    font-weight: 700;
}

.area {
    color: #333;
}

.hero-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-botao {
    display: inline-block;
    /* background-color: #b39a64; */
    background-color: #D2996C;
    /* color: white; */
    color: #212529;;
    text-decoration: none;
    padding: 14px 32px;
    /* border-radius: 30px; */
    border-radius: 0.4rem;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.cta-botao:hover {
    background-color: #8e7a4d;
}

.hero-image-container {
    width: 100%;
    max-width: 600px;
}

.hero-image-card {
    position: relative;
    width: 105%;
    /*height: 0;*/
    padding-bottom: 100%;
    border-radius: 16px; 
    /* overflow: hidden;*/
    background-color: #e8e8e8;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 107%;
    height: 108%; 
    /* height: 539px; */
    object-fit: cover; 
}

.logo-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
}

.jr-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Seção Destaques */
.destaques {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.destaques-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.destaques-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.destaques-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.destaques-image-container {
    width: 45%;
    height: 500px; /* Altura do retângulo */
    background-color: #e0e0e0; /* Cor de fundo do retângulo */
    border-radius: 20px;
    position: relative;
    /* A imagem será posicionada absolutamente dentro deste container */
}

.destaques-grid {
    width: 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.destaque-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.destaque-item.dark {
    background-color: #333;
    color: #fff;
}

.destaque-item.dark h3,
.destaque-item.dark p {
    color: #fff;
}

.destaque-item i {
    font-size: 24px;
    margin-bottom: 15px;
}

.destaque-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.destaque-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Sobre Mim Section */
.about-me {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-image-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #D2996C;
}

.about-intro {
    font-size: 20px;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.about-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.about-cta p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

/* Responsividade */
@media (min-width: 992px) {
    .about-content {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .about-image-container {
        flex: 0 0 40%;
        max-width: 40%;
        margin-right: 5%;
    }
    
    .about-text {
        flex: 0 0 55%;
        text-align: left;
        margin: 0;
    }
    
    .about-title::after {
        left: 0;
        transform: none;
    }
}

/* Simplify Section */
.simplify {
    /* background-color: #f5f5f5; */
    background-color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.simplify-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    color: #333;
    MARGIN: auto;
    max-width: 800px;
}

.light-text {
    font-weight: 300;
    font-style: italic;
}

.simplify-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}
/* NEW ADD SERVICES  */
/* Serviços Principais Section */
.servicos-principais {
    /* padding: 80px 0; */
    padding: 80px 0;
    /* background-color: #f9f9f9; */
    background-color: #f0f0f0;
    
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    /* font-size: 16px; */
    font-size: 34px;
    color: #666;
    max-width: 550px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.servico-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid #e8e8e8;
}

.servico-icon i {
    font-size: 32px;
    color: #333;
}

.servico-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.servico-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}
/* FIM SERVICES NEW */


.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background-color: #2c2c2c;
    border-radius: 8px;
    padding: 30px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-blue {
    background-color: #1e2a47;
}

.service-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #b39a64;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.service-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    color: #e0e0e0;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('wave-divider.svg');
    background-size: cover;
    background-position: center top;
}

.features-grid-container {
    margin-top: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    position: relative; /* Necessário para o posicionamento absoluto do ícone */
    background-color: #f8f9fa; /* Cor de fundo suave */
    /*padding: 54px 30px 30px;  Aumenta o padding superior para dar espaço ao ícone */
    padding: 39px 30px 20px;
    border-radius: 16px;
    text-align: center; /* Centraliza o texto abaixo do ícone */
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.feature-icon {
    position: absolute; /* Posicionamento absoluto em relação ao pai */
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza na borda superior */
    width: 48px;
    height: 48px;
    background-color: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

.features-image-column {
    order: -1; /* Move a imagem para cima em telas pequenas */
}

.features-image-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.features-image-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    z-index: 1;
}

.features-image {
    position: relative;
    max-width: 100%;
    z-index: 2; /* Garante que a imagem fique na frente do fundo */
    padding-bottom: 48px;
    padding-right: 31px;
}

/* Services Section */
.services {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.services-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    color: #333;
    font-weight: 600;
}

.services-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.services-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #e0e0e0;
}

.services-card-icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.services-card-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #333;
}

.services-card-description {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    color: #555;
    padding: 0px 10px;
}

.services-cta {
    display: flex;
    justify-content: center;
}

.services-button {
    display: inline-block;
    background-color: #b39a64;
    color: white;
    text-decoration: none;
    padding: 14px 60px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 0.4rem;
}

.services-button:hover {
    background-color: #8e7a4d;
}

/* Process Section */
.process {
    background-color: #f5f5f5;
    padding: 80px 0;
}



.process-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #333;
    font-weight: 600;
}


.process-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-image-container {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    /* border: 1px solid #e0e0e0; */
}

.process-image {
    width: 100%;
    height: auto;
    display: block;
}

.process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    align-items: center;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, rgba(224, 224, 224, 0), #e0e0e0, rgba(224, 224, 224, 0));
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.step-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 8px #fff, 0 0 12px #b39a64;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.step-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.testimonials-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #333;
    font-weight: 600;
}

.testimonials-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

.testimonial-content {
    color: #333;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 50px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    margin: 0 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 10px 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100%;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.carousel-arrow:hover {
    background: #b39a64;
    color: white;
    border-color: #b39a64;
}

.carousel-arrow.prev {
    left: -10px;
}

.carousel-arrow.next {
    right: -10px;
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
    color: #999;
    border-color: #e0e0e0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: #b39a64;
    transform: scale(1.2);
}

/* Fade effect for carousel edges */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 5;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
}

/* Blog Section */
/* Estilos para a página de Conteúdos */
.blog-container {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.blog-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.blog-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: #f0f7ff;
    color: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #7f8c8d;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.blog-read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.blog-read-more:hover {
    text-decoration: underline;
}

.blog-read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(5px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.blog-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a:hover,
.pagination-active {
    background: #3498db;
    color: white !important;
}

.newsletter-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #1a252f;
}

/* CONTENT PREVIEW CONTEUDOS INDEX.HTML */
/* Seção de Preview de Conteúdos */
/* Mini Seção de Conteúdos */
.mini-content-preview {
    padding: 40px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mini-content-preview .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mini-content-preview .section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
}

.mini-content-preview .view-all {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.mini-content-preview .view-all i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mini-content-preview .view-all:hover {
    text-decoration: underline;
}

.mini-content-preview .view-all:hover i {
    transform: translateX(3px);
}

.mini-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.mini-content-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.mini-content-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e0;
}

.mini-content-icon {
    width: 40px;
    height: 40px;
    background: #f0f7ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mini-content-text h3 {
    font-size: 1rem;
    margin: 0 0 4px 0;
    color: #2c3e50;
}

.mini-content-text p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}
/* SECTION */
/* About Section - Modern & Elegant */
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: #f9f7f3;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text Content */
.about-text {
    padding: 0 20px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #8e7a4d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 20px;
    color: #5c5c5c;
    margin-bottom: 25px;
    font-weight: 500;
    font-style: italic;
}

.about-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-description p {
    margin-bottom: 15px;
}

/* Photo Section */
.about-photo {
    position: relative;
    padding: 20px;
}

.photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(142, 122, 77, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.profile-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.photo-frame:hover .profile-photo {
    transform: scale(1.05);
}

/* Social Icons */
.social-links {
    position: absolute;
    bottom: -25px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #8e7a4d;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #8e7a4d;
    color: #fff;
    transform: translateY(-5px);
}

/* Button */
.cta-button {
    display: inline-block;
    background: #8e7a4d;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #8e7a4d;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: transparent;
    color: #8e7a4d;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    background: rgba(142, 122, 77, 0.1);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    background: rgba(142, 122, 77, 0.05);
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-arrow.prev {
        left: -5px;
    }
    
    .carousel-arrow.next {
        right: -5px;
    }

    /* BLOG RESPONSIVIDADE */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 4px;
        margin: 5px 0;
    }
    /* CONTENT PREVIEW CONTEUDO INDEX.HTML */
    .mini-content-preview {
        padding: 30px 0;
    }
    
    .mini-content-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-content-preview .section-title {
        font-size: 1.3rem;
    }
}

/* Ensure Font Awesome icons are properly sized */
.carousel-arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.contact-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #333;
    font-weight: 600;
}

.contact-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.required {
    color: #b39a64;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    display: inline-block;
    background-color: #b39a64;
    color: white;
    text-decoration: none;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #8e7a4d;
}

.contact-map-container {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.google-map {
    width: 100%;
    height: 100%;
}

/* Seção Atendimentos */
.atendimentos {
    background-color: #ffffff; /* Fundo branco */
    padding: 80px 0;
    text-align: center;
    margin-bottom: 10px;
}

.atendimentos .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

.atendimentos-header .section-subtitle {
    /* color: #007bff;  Cor azul, similar ao highlight do site */
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.atendimentos-header .section-title {
    color: #333; /* Cor de texto principal */
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}

.atendimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.atendimento-item {
    text-align: left;
}

.atendimento-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 60px; /* Espaço para o switch */
}

.toggle-switch {
    width: 50px;
    height: 25px;
    background-color: #e0e0e0; /* Cor do switch desligado */
    /* border-radius: 15px; */
    border-radius: 15px 5px 5px 15px;
    position: relative;
    cursor: pointer;
    float: left;
    margin-right: -50px; /* Puxa o texto para perto */
}

.toggle-circle {
    width: 21px;
    height: 21px;
    background-color: #007bff; /* Cor do círculo do switch */
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

/* Simula o estado 'ligado' para fins visuais */
.atendimento-item .toggle-switch {
    background-color: #cce5ff; /* Fundo do switch 'ligado' */
}

.atendimentos-footer .atendimentos-note {
    color: #555;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
}

.atendimentos-footer .cta-button {
    /* background-color: #28a745;  Cor verde para o botão do WhatsApp */
    background-color: #b39a64;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.atendimentos-footer .cta-button:hover {
    background-color: #218838; /* Cor mais escura no hover */
}

.atendimentos-footer .cta-button .fa-whatsapp {
    font-size: 1.2rem;
}

/* Estilos do Carrossel de Segmentos */
.segmentos-carousel-container {
    position: relative;
    margin-bottom: 40px;
}

.segmentos-carousel .segmento-item {
    text-align: center;
    padding: 20px 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.segmentos-carousel .segmento-item:hover {
    transform: translateY(-5px);
}

.segmento-icon-wrapper {
    background-color: #f0f0f0; /* Fundo cinza claro para o ícone */
    border-radius: 10px;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.segmento-item:hover .segmento-icon-wrapper {
    /* background-color: #007bff;  Azul no hover */
    /*background-color: #5c5c5c;  Azul no hover */
    background-color: #b39a64;
}

.segmento-item:hover .segmento-icon-wrapper i {
    color: #fff;
}

.segmento-icon-wrapper i {
    font-size: 36px;
    /* color: #007bff;  Cor do ícone */
    color: #333;
    transition: color 0.3s ease;
}

.segmento-item p {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Estilos das setas do Slick */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background-color: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 10;
}

.slick-prev:before, .slick-next:before {
    font-family: 'Font Awesome 5 Free' !important; 
    font-weight: 900;
    color: #007bff !important;
    /* color: #5c5c5c !important; */
    font-size: 20px;
}

.slick-prev:before {
    content: "\f053" !important; /* Ícone de seta para a esquerda */
}

.slick-next:before {
    content: "\f054" !important; /* Ícone de seta para a direita */
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

/* Footer Styles */
.footer {
    background-color: #f0f0f0;
    color: #333;
}

.footer-main {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    /* margin-bottom: 20px; */
    max-width: 180px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #b39a64;
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #8e7a4d;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-column {
    flex: 1;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.footer-menu,
.footer-contact {
    list-style: none;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-menu a,
.footer-contact a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-contact a:hover {
    color: #b39a64;
}

.address {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #f0f0f0;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #777;
}

.copyright p {
    margin-bottom: 5px;
}

.copyright a {
    color: #b39a64;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #8e7a4d;
}

/* Media queries for responsive design */
@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .simplify-title {
        font-size: 42px;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 42px;
    }

    .atendimentos-header .section-title {
        font-size: 42px;
    }


    .process-title {
        font-size: 42px;
    }
    
    .process-steps::before {
        left: 14px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-title {
        font-size: 42px;
    }
    
    .contact-title {
        font-size: 42px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1.1fr 1fr; /* Coluna central um pouco maior */
        gap: 20px;
    }

    .features-image-column {
        order: 0; /* Ordem normal em telas maiores */
    }
    .footer-content {
        flex-direction: row;
    }
    .footer-brand {
        margin-right: 60px;
    }
    .footer-links {
        flex-direction: row;
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image-container {
        flex: 1;
    }

    .hero-title {
        /* font-size: 48px; */
        font-size: 45px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .simplify-title {
        font-size: 48px;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-title {
        font-size: 48px;
    }
    
    .atendimentos-header .section-title {
        font-size: 48px;
    }


    .process-title {
        font-size: 48px;
    }

    
    
    .process-content {
        flex-direction: row;
        align-items: center;
    }
    
    .process-steps {
        padding-left: 20px;
    }
    
    .process-steps::before {
        left: 32px;
    }
    
    .step-marker {
        margin-right: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-title {
        font-size: 48px;
    }
    
    .contact-title {
        font-size: 48px;
    }
    
    .contact-content {
        flex-direction: row;
    }

    

}

/* Banner CTA Section */
.banner-cta {
    /* padding: 80px 0; */
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.banner-cta-container {
    background-color: #191009;
    position: relative;
    width: 100%;
    /* padding: 60px 0;
    background: linear-gradient(to bottom, transparent 50%, #191009 50%); */
    padding-bottom: 120px;
    background: linear-gradient(to bottom, transparent 40%, #191009 40%);
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: #f8f9fa;
    z-index: -1;
}

.banner-cta-card {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    overflow: hidden;
    min-height: 300px;
    width: 100%;
}

.banner-cta-content {
    /* flex: 2 1 70%; */
    flex: 1 1 57%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #191009;
    box-sizing: border-box;
    
}

.banner-cta-title {
    /* font-size: 32px; */
    font-size: 45px;
    /* color: #333; */
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.banner-cta-text {
    /* color: #555; */
    color: white;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
}

.banner-cta-image {
    --card-inner-border-radius: inherit;
    --card-bg: inherit;
    --card-img-size-h: 33.33333333%;
    --card-img-ratio-align: 44%;
    --card-img-aspect-ratio: 20%;
    min-width: min(18rem, 100%);
    flex: 1 0 30%; /* Reduz a largura da área da imagem */
    position: relative;
    min-height: 300px;
    background: var(--card-bg, #f5f5f5);
    order: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: var(--card-inner-border-radius, 0);
}

.banner-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    position: relative;
    display: block;
    aspect-ratio: var(--card-img-aspect-ratio, auto);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D2996C;
    color: #212529;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    max-width: 300px;
}

.cta-button i {
    margin-left: 10px;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #8e7a4d;
}
/* Artigos */
/* Estilos para a página de artigo */
.article-container {
    padding: 60px 0;
    background-color: #fff;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-category {
    display: inline-block;
    background: #f0f7ff;
    color: #3498db;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.article-title {
    font-size: 2.5rem;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    color: #7f8c8d;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.article-meta i {
    margin-right: 5px;
}

.article-image {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.article-body h2 {
    color: #2c3e50;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.article-body h3 {
    color: #2c3e50;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
    position: relative;
}

.article-tip, .article-warning {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
    display: flex;
    gap: 15px;
}

.article-warning {
    border-left-color: #e74c3c;
}

.article-tip i {
    color: #3498db;
    font-size: 1.5rem;
    margin-top: 3px;
}

.article-warning i {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-top: 3px;
}

.article-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: center;
}

.article-cta h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 50px 0;
    align-items: center;
}

.article-tags a {
    background: #f0f7ff;
    color: #3498db;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tags a:hover {
    background: #3498db;
    color: white;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 40px 0;
}

.social-share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.social-share:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
}

.related-articles {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-article {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-article:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 20px;
}

.related-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Tablet and Mobile Styles */
@media (max-width: 992px) {
    .banner-cta {
        padding: 40px 0;
    }
    
    .banner-cta-container {
        padding: 0 20px;
    }
    
    .banner-cta-card {
        flex-direction: column;
        border-radius: 8px;
    }
    
    .banner-cta-content {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        padding: 30px 20px;
        text-align: center;
        align-items: center;
        margin-top: -20px;
    }
    
    .banner-cta-image {
        order: 1;
        flex: 0 0 auto;
        min-height: 250px;
        width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
    }
    
    .banner-cta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        display: block;
    }
    
    .banner-cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .banner-cta-text {
        font-size: 15px;
        margin-bottom: 25px;
        max-width: 90%;
    }
    
    .cta-button {
        margin: 0 auto;
        max-width: 280px;
        width: 100%;
    }    
    .cta-button {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-cta {
        padding: 40px 0;
    }
    
    .banner-cta-title {
        font-size: 26px;
    }
    
    .banner-cta-content {
        padding: 30px 20px;
    }
    
    .cta-button {
        max-width: 100%;
    }
    /* artigos RESPONSIVIDADE */
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}