/* ========================================
   ESTILO COMPLETO
   VersÃ£o Final - Foco 
   ======================================== */

/* ============ VARIÃVEIS CSS ============ */
:root {
    /* Cores Principais */
    --primary-color: #001538;
    --primary-dark: #00b2f8;
    --primary-light: #003c74;

    /* Cores SecundÃ¡rias */
    --secondary-color: #F8F5E1;
    --accent-color: #00223d;

    /* Cores Neutras */
    --text-dark: #212121;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --border-color: #E0E0E0;

    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* EspaÃ§amentos */
    --section-padding: 100px 0;
    --container-padding: 0 15px;

    /* TransiÃ§Ãµes */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.7s ease;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ============ RESET E BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============ SECTIONS ============ */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-bg-light {
    background-color: var(--secondary-color);
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============ BUTTONS ============ */
.btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-light:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-whatsapp-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 158, 230, 0.3);
    border: 2px solid transparent;
}

.btn-whatsapp-header:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0a5d4f 100%);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-header i {
    font-size: 1.2rem;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {

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

    50% {
        transform: scale(1.1);
    }
}

/* BotÃ£o hamburguer mobile - ESCURO para contraste com bege */
.navbar-toggler {
    border-color: rgba(44, 44, 44, 0.3);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 44, 44, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* ============ HEADER / NAVBAR ============ */
.navbar {
    padding: 1rem 0;
    background: #F5F5DC;
    /* BEGE/CREME claro */
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: slideDown 0.5s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    background: #F5F5DC;
    /* BEGE ao scroll tambÃ©m */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    backdrop-filter: blur(15px);
}

/* Logo SEM fundo - transparente PERFEITO no bege */
.logo-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.logo-wrapper:hover {
    transform: scale(1.08);
}

.navbar.scrolled .logo-wrapper {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.navbar-brand .logo {
    height: 90px;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1.1);
    /* Menos filtro, fundo claro ajuda */
}

.navbar-brand .logo:hover {
    filter: brightness(1.1) contrast(1.15);
}

.navbar.scrolled .logo {
    height: 65px;
    filter: brightness(1) contrast(1.1);
}

/* Menu centralizado */
.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    gap: 0.25rem;
    margin: 0;
}

.navbar-cta {
    margin-left: auto;
}

/* Nav links - ESCUROS para contraste com bege */
.nav-link {
    color: #2c2c2c !important;
    /* PRETO SUAVE para contraste */
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 18px !important;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: none;
}

.navbar.scrolled .nav-link {
    color: #2c2c2c !important;
    /* PRETO SUAVE no scroll */
    text-shadow: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D4AF37;
    /* DOURADO para combinar com a logo */
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link::before {
    background: #D4AF37;
    /* DOURADO sempre */
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 36px);
}

.nav-link:hover {
    color: #D4AF37 !important;
    /* DOURADO ao passar o mouse */
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.1);
    /* Fundo dourado suave */
    border-radius: 8px;
}

.navbar.scrolled .nav-link:hover {
    color: #D4AF37 !important;
    /* DOURADO no scroll */
    background: rgba(212, 175, 55, 0.1);
}

.nav-link.active {
    background: rgba(212, 175, 55, 0.15);
    border-radius: 8px;
}

.navbar.scrolled .nav-link.active {
    background: rgba(212, 175, 55, 0.15);
}

/* Dropdown */
.dropdown-menu-custom {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 280px;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(8px);
    padding-left: 1.5rem;
}

.dropdown-item:hover i {
    color: white;
}

/* ============ HERO SECTION COM IMAGEM DA FAZENDA ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    /* AUMENTADO o padding-top de 120px para 140px */
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

/* Imagem de fundo da empresa */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-fazenda.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Efeito parallax */
    opacity: 0.55;
    /* AUMENTADO para imagem mais visÃ­vel */
    z-index: 0;
}

/* Overlay gradiente para melhor leitura */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            var(--hero-overlay-1, rgba(0, 0, 0, 0.75)) 0%,
            var(--hero-overlay-2, rgba(0, 0, 0, 0.65)) 50%,
            var(--hero-overlay-1, rgba(0, 0, 0, 0.75)) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* TÃ­tulos do Hero */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
}

.text-highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-color);
    opacity: 0.25;
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.35rem;
    max-width: 850px;
    margin: 0 auto 2.5rem;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 1.2s ease;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ SEÃ‡ÃƒO DE PILARES (COMO TRABALHAMOS) ============ */
.pilares-section {
    background: var(--color-bg-pillars, linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%));
    padding: 100px 0;
}

.pilar-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* CENTRALIZA HORIZONTALMENTE */
    text-align: center;
    /* CENTRALIZA O TEXTO */
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pilar-card:hover::before {
    transform: scaleX(1);
}

.pilar-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pilar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    /* CENTRALIZA O ÃCONE */
    font-size: 2.25rem;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pilar-card:hover .pilar-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.5);
}

.pilar-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pilar-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 1.05rem;
}

/* Card CTA especial */
.pilar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-light);
}

.pilar-cta h4,
.pilar-cta p {
    color: white;
}

.pilar-cta p {
    color: rgba(255, 255, 255, 0.95);
}

.pilar-cta .pilar-icon {
    background: white;
    color: var(--primary-color);
}

.pilar-cta:hover {
    transform: translateY(-12px) scale(1.02);
}

/* ============ ÃREAS DE ATUAÃ‡ÃƒO ============ */
.areas-section {
    padding: 100px 0;
    background: var(--color-bg-areas, white);
}

.area-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 480px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.area-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.area-card:hover .area-card-img {
    transform: scale(1.12);
}

.area-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(46, 125, 50, 0.75) 100%);
    transition: all 0.5s ease;
}

.area-card:hover .area-card-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(27, 94, 32, 0.92) 100%);
}

.area-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: white;
    z-index: 2;
}

.area-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.area-card:hover .area-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.area-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.area-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-expand {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-expand:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.08);
}

/* ConteÃºdo expandido */
.area-expanded {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
}

.area-expanded.show {
    opacity: 1;
    visibility: visible;
}

.area-expanded-content {
    padding: 2.5rem;
    color: var(--text-dark);
}

.area-expanded-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.area-expanded-content p,
.area-expanded-content ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.area-expanded-content ul {
    padding-left: 1.5rem;
}

.area-expanded-content ul li {
    margin-bottom: 0.75rem;
}

.btn-collapse {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-collapse:hover {
    background: var(--primary-color);
    color: white;
}

/* ============ SOBRE ============ */
.sobre-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.sobre-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sobre-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}

.sobre-image:hover img {
    transform: scale(1.08);
}

.sobre-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sobre-badge i {
    font-size: 3rem;
    color: var(--primary-color);
}

.sobre-badge strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.sobre-badge p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.sobre-label {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: var(--primary-dark);
    padding: 1rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border-left: 3px solid transparent;
}

.diferencial-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}

.diferencial-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.diferencial-item h5 {
    font-size: 1.15rem;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
}

.sobre-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.sobre-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.sobre-quote i {
    font-size: 3.5rem;
    opacity: 0.2;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.sobre-quote p {
    margin: 0;
    padding-left: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    font-style: italic;
    color: white;
    position: relative;
    z-index: 1;
}

/* ============ DEPOIMENTOS ============ */
.depoimentos-section {
    padding: 100px 0;
    background: white;
}

.depoimento-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.depoimento-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.depoimento-aspas {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.depoimento-texto {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--border-color);
}

.depoimento-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.depoimento-autor strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

/* ============ BLOG SECTION ============ */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

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

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

.blog-categoria {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--primary-color);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.read-more:hover {
    gap: 0.875rem;
    color: var(--primary-dark);
}

.read-more i {
    transition: transform var(--transition-fast);
}

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

.btn-blog-read-more {
    background-color: transparent !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-dark) !important;
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    text-transform: none !important;
}

.btn-blog-read-more:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* ============ CTA FINAL ============ */
.cta-final-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-final-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

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

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

.cta-final-section h2 {
    color: white;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-final-section .lead {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============ CONTATO ============ */
.contact-info {
    background: white;
    padding: 2.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-form-card {
    background: var(--primary-color);
    color: white;
    padding: 2.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    color: white;
}

.contact-form-card .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 160, 0, 0.1);
}

.contact-form-card .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.625rem;
}

.contact-form-card .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-card .btn:hover {
    background: var(--accent-color);
    color: white;
}

.social-link-contact {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all var(--transition-fast);
}

.social-link-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ============ WHATSAPP FLOAT BUTTON ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.8);
    }
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.footer-top {
    padding: 4.5rem 0 2.5rem;
}

.logo-footer {
    height: 65px;
    margin-bottom: 1.25rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all var(--transition-fast);
}

.footer-social .social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: white;
    position: relative;
    padding-bottom: 0.875rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: white;
}

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

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(6px);
}

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

.footer-contact li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-contact i {
    font-size: 1.15rem;
    margin-top: 0.2rem;
    color: white;
}

.footer-bottom {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ============ SCROLL TO TOP BUTTON ============ */
.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* ============ UTILITY CLASSES ============ */
.text-primary {
    color: var(--primary-color) !important;
}

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

.bg-light-green {
    background-color: var(--secondary-color) !important;
}

.mb-section {
    margin-bottom: 6rem;
}

.mt-section {
    margin-top: 6rem;
}

/* ============ RESPONSIVE DESIGN ============ */

/* Tablets (landscape) e pequenos desktops */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }
}

/* Tablets (portrait) */
@media (max-width: 991px) {
    :root {
        --section-padding: 70px 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.85rem;
    }

    /* Navbar mobile */
    .navbar-collapse {
        background: #F5F5DC;
        /* BEGE no mobile */
        padding: 1.25rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .nav-link {
        color: #2c2c2c !important;
        /* PRETO SUAVE */
        padding: 14px 16px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-link::before {
        display: none;
    }

    .navbar-cta {
        margin-left: 0;
        margin-top: 1.25rem;
    }

    .btn-whatsapp-header {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        /* Texto menor no mobile */
        padding: 10px 16px;
        /* Padding menor */
    }

    /* Texto do botÃ£o WhatsApp menor no mobile */
    .btn-whatsapp-header .d-none {
        display: none !important;
    }

    .btn-whatsapp-header .d-inline {
        display: inline !important;
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        min-height: 90vh;
        padding: 150px 0 60px;
        /* AUMENTADO de 130px para 150px - MUITO MAIS ESPAÃ‡O! */
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    /* Pilares */
    .pilar-card {
        padding: 2rem;
    }

    .pilar-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    /* Ãreas */
    .area-card {
        height: 420px;
    }

    /* Sobre */
    .sobre-badge {
        position: static;
        margin-top: 1.25rem;
    }

    .diferencial-item {
        padding: 1.25rem;
    }

    /* Blog */
    .blog-image {
        height: 220px;
    }

    /* Footer */
    .footer-top {
        padding: 3.5rem 0 2rem;
    }

    /* Contato */
    .contact-info,
    .contact-form-card {
        padding: 2rem;
    }
}

/* Smartphones (landscape) */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.65rem;
    }

    h4 {
        font-size: 1.35rem;
    }

    :root {
        --section-padding: 60px 0;
    }

    /* LOGO MAIOR NO MOBILE */
    .logo-wrapper {
        padding: 0;
    }

    .navbar-brand .logo {
        height: 80px !important;
        /* AUMENTADO de 70px para 80px */
    }

    .navbar.scrolled .logo {
        height: 65px !important;
        /* AUMENTADO de 55px para 65px */
    }

    /* Ajustando espaÃ§o do hamburguer */
    .navbar-toggler {
        margin-left: auto;
        margin-right: 0;
    }

    .navbar-brand {
        flex-grow: 0;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
        padding: 145px 0 50px;
        /* AUMENTADO de 125px para 145px - MUITO MAIS ESPAÃ‡O! */
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .text-highlight::after {
        height: 8px;
        bottom: 5px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Pilares */
    .pilares-section {
        padding: 60px 0;
    }

    .pilar-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .pilar-icon {
        width: 65px;
        height: 65px;
        font-size: 1.85rem;
    }

    /* Ãreas */
    .area-card {
        height: 380px;
        margin-bottom: 1.5rem;
    }

    .area-card-content {
        padding: 2rem;
    }

    .area-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .area-title {
        font-size: 1.5rem;
    }

    .area-expanded-content {
        padding: 2rem;
    }

    /* Sobre */
    .sobre-section {
        padding: 60px 0;
    }

    .sobre-image {
        margin-bottom: 2rem;
    }

    .sobre-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 1.25rem;
    }

    .sobre-badge i {
        font-size: 2.5rem;
    }

    .diferencial-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .diferencial-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.4rem;
    }

    .sobre-quote {
        padding: 2rem;
    }

    .sobre-quote p {
        font-size: 1.05rem;
        padding-left: 1.5rem;
    }

    /* Depoimentos */
    .depoimento-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .depoimento-aspas {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .depoimento-texto {
        font-size: 1.05rem;
    }

    .depoimento-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    /* Blog */
    .blog-card {
        margin-bottom: 1.5rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.75rem;
    }

    .blog-categoria {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* CTA Final */
    .cta-final-section h2 {
        font-size: 2.25rem;
    }

    .cta-final-section .lead {
        font-size: 1.15rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Contato */
    .contact-info,
    .contact-form-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }

    /* Footer */
    .footer-links,
    .footer-title,
    .footer-contact,
    .footer .mt-4 {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .scroll-to-top {
        bottom: 95px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Smartphones (portrait) - pequenos */
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    :root {
        --section-padding: 50px 0;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .section-title h2 {
        font-size: 1.85rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 15px;
    }

    .pilar-card h4 {
        font-size: 1.3rem;
    }

    .area-card {
        height: 350px;
    }

    .area-title {
        font-size: 1.35rem;
    }

    .blog-title {
        font-size: 1.25rem;
    }

    .cta-final-section h2 {
        font-size: 2rem;
    }
}

/* Smartphones muito pequenos */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.45rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .pilar-card {
        padding: 1.5rem;
    }

    .area-card {
        height: 320px;
    }

    .sobre-badge {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* Desktop grande */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.45rem;
        max-width: 900px;
    }
}

/* ============ IMPRESSÃƒO ============ */
@media print {

    .navbar,
    .whatsapp-float,
    .scroll-to-top,
    .btn,
    .footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
}

/* ============================================================
   AJUSTES FINAIS - BLOG E MOBILE
   Adicione este CSS ao final do style-completo-final.css
   ============================================================ */

/* ============ AJUSTE 1: HERO BLOG - TÃTULO BRANCO ============ */
.hero h1,
.hero .display-4 {
    color: white !important;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
}

/* TÃ­tulo do post no blog-post.php tambÃ©m branco */
.hero h1,
.hero h2,
.hero h3,
.hero h4 {
    color: white !important;
}

/* Badge de categoria no hero do blog */
.badge-custom,
.hero .badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    display: inline-block;
}

/* ============ AJUSTE 2: CONTATO MOBILE Ã€ ESQUERDA ============ */
@media (max-width: 768px) {

    /* SeÃ§Ã£o de contato em mobile */
    .contact-info h3,
    .contact-info h5 {
        text-align: left !important;
    }

    .contact-detail {
        text-align: left !important;
    }

    .contact-detail .d-flex {
        justify-content: flex-start !important;
    }

    /* Redes sociais tambÃ©m Ã  esquerda */
    #contato .mt-4.pt-3.border-top h5 {
        text-align: left !important;
    }

    #contato .d-flex.gap-3 {
        justify-content: flex-start !important;
    }

    /* FormulÃ¡rio de contato tambÃ©m Ã  esquerda */
    .contact-form-card h3,
    .contact-form-card p {
        text-align: left !important;
    }
}

/* ============ AJUSTE 3: MELHORIAS VISUAIS BLOG ============ */

/* Hero do blog com melhor contraste */
.hero .lead {
    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Meta info no header do blog tambÃ©m branca */
.hero .blog-meta,
.hero .blog-meta span {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

/* Imagem do autor no header do blog com borda branca */
.hero .blog-author-img {
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* ============ RESPONSIVIDADE GERAL ============ */
@media (max-width: 576px) {

    /* Hero do blog em mobile - tÃ­tulos menores */
    .hero h1,
    .hero .display-4 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    /* Badge menor em mobile */
    .badge-custom,
    .hero .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}