/* === RESET & VARIÁVEIS GLOBAIS === */
:root {
    --dark-blue: #0E194F;
    --dark-green: #002F1D;
    --brown: #A6560D;
    --light-blue: #C6E0F1;
    --light-gray: #EAEAE8;
    --white: #FFFFFF;
    --text-primary: #0E194F;
    --text-secondary: rgba(14, 25, 79, 0.7);
    --accent-green: #003420;
    --accent-orange: #e27600;

    --font-main: 'Inter', 'Poppins', sans-serif;
    
    --shadow-subtle: 0 2px 8px rgba(14, 25, 79, 0.08);
    --shadow-hover: 0 4px 16px rgba(14, 25, 79, 0.12);
}

/* Importar fonte Poppins local */
@font-face {
    font-family: 'Poppins';
    src: url('../../font/poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../font/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../font/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../font/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../font/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

/* Scroll suave para âncoras */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Compensar o header fixo */
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.5;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--dark-green);
    color: var(--white);
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brown);
    border: 2px solid var(--brown);
}

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

.btn-accent {
    background-color: var(--accent-green);
    color: var(--white);
}

.btn-accent:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* === 1. HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--white);
    box-shadow: var(--shadow-subtle);
    z-index: 1000;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.header .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
}

.header .logo img {
    max-height: 50px;
    width: auto;
}

.header .nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

.header .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 5px;
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-green);
    transition: width 0.3s ease;
}

.header .nav-link:hover::after,
.header .nav-link.active::after {
    width: 100%;
}

.header .nav-link.active {
    color: var(--dark-green);
    font-weight: 600;
}

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

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-blue);
}

/* === 2. HERO SECTION === */
.hero {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(193, 191, 191, 0.213) 2px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    box-sizing: border-box;
}

.hero-text {
    max-width: 50%;
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--dark-blue);
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-text h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-text .subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-services-section {
    margin-bottom: 50px;
}

.hero-services-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 25px 0;
}

.hero-services {
    margin-bottom: 40px;
}

.hero-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    padding: 8px 0;
}

.hero-service-item i {
    font-size: 28px;
    color: var(--brown);
    flex-shrink: 0;
}

.hero-service-item .highlight {
    color: var(--accent-green);
    text-decoration: underline;
    font-weight: 600;
}

.hero-service-item .highlight:hover {
    color: var(--accent-green);
    opacity: 0.8;
    text-decoration: underline;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-illustration {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: none;
    border: none;
    box-shadow: none;
    animation: slideInRight 0.8s ease-out forwards;
    overflow: hidden;
}

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

/* === 3. SERVIÇOS === */
.services {
    text-align: center;
    background-color: var(--white);
    padding: 80px 0 60px 0;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    min-width: 0;
    width: 100%;
}

.service-card {
    width: 100%;
    height: 320px;
    padding: 25px 10px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    box-sizing: border-box;
}

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

.service-card .icon {
    font-size: 36px;
    color: var(--brown);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.4;
}

/* Stagger animation for cards */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.6s ease-out forwards;
}
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

/* === 4. INSTITUCIONAL === */
.institutional {
    background-color: rgba(198, 224, 241, 0.2);
}

.institutional-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.institutional-seal {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.seal-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    margin: 0 auto 16px;
}

.seal-circle i {
    font-size: 48px;
    color: var(--brown);
}

.institutional-seal p {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 14px;
}

.institutional-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.institutional-text > p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}

.check-list i {
    color: var(--dark-green);
    font-weight: bold;
    font-size: 20px;
}

/* === 5. PORTFÓLIO DE CLIENTES === */
.clients-portfolio {
    background-color: var(--white);
}

.clients-portfolio h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    width: 100%;
    max-width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

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

/* === 6. CONTATO === */
.contact {
    background-color: #f8f9fa;
}

.contact h1 {
    text-align: left;
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-info-item i {
    font-size: 24px;
    color: var(--brown);
    margin-top: 5px;
}

.contact-info-item img {
    width: 24px;
    height: 24px;
    margin-top: 5px;
}

.contact-info-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
    font-size: 16px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--brown);
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    min-height: 100%;
}

.contact-form {
    flex: 0 0 auto;
}

.contact-map {
    flex: 1 1 auto;
    display: flex;
}

.contact-map iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-blue);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(166, 86, 13, 0.1);
}

.contact-form input.field-error,
.contact-form textarea.field-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

/* === 6. FOOTER === */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--brown);
}

.footer-column.about .logo {
    font-size: 22px;
    font-weight: 700;
}

.footer-column.about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 24px;
    color: var(--white);
    opacity: 0.8;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* === 📱 RESPONSIVIDADE === */

/* Laptop: 1024px */
@media (max-width: 1024px) {
    .container, .header-container {
        padding: 0 40px;
    }
    .hero-text h1 { 
        font-size: 40px; 
        margin-bottom: 20px;
    }
    .hero-text h2 { 
        font-size: 24px; 
        margin-bottom: 14px;
    }
    .hero-text h3 { 
        font-size: 20px; 
        margin-bottom: 18px;
    }
    .hero-text .subtitle { 
        font-size: 18px; 
        margin-bottom: 35px;
    }
    .hero-services {
        margin-bottom: 35px;
    }
    .hero-service-item {
        margin-bottom: 16px;
        font-size: 16px;
    }
    .hero-illustration { width: 320px; height: 240px; }
    .services-grid { grid-template-columns: repeat(4, 1fr); }
    .institutional-content { flex-direction: column; text-align: center; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { margin-bottom: 60px; }
}

/* Tablet: 768px */
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .container, .header-container { padding: 0 20px; }
    
    .header { height: 70px; }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 25px;
    }
    
    .header .logo {
        order: 1;
        flex-shrink: 0;
        margin-right: auto;
    }
    
    .header .header-actions {
        order: 2;
        margin: 0 auto;
        flex-shrink: 0;
    }
    
    .header .btn-header {
        font-size: 12px;
        padding: 10px 16px;
        white-space: nowrap;
    }
    
    .header .mobile-menu-toggle {
        order: 3;
        margin-left: auto;
    }
    
    .header .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        gap: 40px;
    }
    .header .nav-menu.active {
        left: 0;
    }
    .header .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .header .nav-link { font-size: 18px; }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 32px;
        color: var(--dark-blue);
        z-index: 1001;
        flex-shrink: 0;
    }

    .hero { padding-top: 120px; text-align: center; }
    .hero-content { flex-direction: column; }
    .hero-text { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-illustration { display: none; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column h3::after { left: 50%; transform: translateX(-50%); }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .client-logo {
        max-width: 180px;
        height: 100px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        height: auto;
    }
    
    .contact-map {
        flex: none;
    }
    
    .contact-map iframe {
        min-height: 320px;
    }
}

/* Mobile: 375px e menores */
@media (max-width: 480px) {
     .header { height: 60px; }
     .header-container {
         padding: 0 15px;
         gap: 20px;
         display: flex;
         justify-content: space-between;
         align-items: center;
     }
     
     .header .logo {
         order: 1;
         flex-shrink: 0;
         margin-right: auto;
     }
     
     .header .logo img {
         max-height: 40px;
     }
     
     .header .header-actions {
         order: 2;
         margin: 0 auto;
         flex-shrink: 0;
     }
     
     .header .btn-header {
         font-size: 11px;
         padding: 8px 12px;
         white-space: nowrap;
     }
     
     .header .btn-header i {
         display: none;
     }
     
     .header .mobile-menu-toggle {
         order: 3;
         font-size: 28px;
         margin-left: auto;
         flex-shrink: 0;
     }
     
     .header .nav-menu { top: 60px; height: calc(100vh - 60px); }
     .hero { padding-top: 100px; }
     .hero-text h1 { 
         font-size: 32px; 
         margin-bottom: 18px;
     }
     .hero-text h2 { 
         font-size: 20px; 
         margin-bottom: 12px;
     }
     .hero-text h3 { 
         font-size: 18px; 
         margin-bottom: 16px;
     }
     .hero-text .subtitle { 
         font-size: 16px; 
         margin-bottom: 30px;
     }
     .hero-services {
         margin-bottom: 30px;
     }
     .hero-service-item {
         margin-bottom: 14px;
         font-size: 15px;
         gap: 12px;
     }
     .hero-buttons { 
         flex-direction: column; 
         margin-top: 15px;
     }
     .btn { width: 100%; }
     
     .services h2, .institutional-text h2, .contact h2 { font-size: 28px; }
    .contact h1 { font-size: 32px; margin-bottom: 30px; }
     .services-grid { grid-template-columns: 1fr; }
     .service-card { height: auto; padding: 30px; }
     
     .container, .header-container, .hero-content {
         padding: 0 15px;
     }
     
     .hero-content {
         flex-direction: column;
         text-align: center;
     }
     
     .hero-text {
         max-width: 100%;
     }
     
     .hero-illustration {
         display: none;
     }
     
     .clients-portfolio h2 {
         font-size: 24px;
         margin-bottom: 30px;
     }
     
     .clients-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }
     
     .client-logo {
         max-width: 150px;
         height: 90px;
         padding: 15px;
     }
     
     .contact-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }
     
     .contact-form-wrapper {
         gap: 24px;
     }
     
     .contact-map {
         flex: none;
     }
     
     .contact-map iframe {
         height: 260px;
     }
}

/* === ANIMAÇÕES === */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Garantir que os elementos sejam visíveis */
.hero-text,
.hero-illustration,
.service-card,
.institutional-content,
.contact-grid {
    opacity: 1 !important;
    transform: none !important;
}

/* Correções para garantir que o layout funcione */
main {
    width: 100%;
    overflow-x: hidden;
}

section {
    width: 100%;
    position: relative;
}

/* Garantir que as imagens sejam exibidas corretamente */
.hero-illustration img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Correções para o header */
.header-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    box-sizing: border-box;
}

/* === PÁGINA DE CERTIDÕES === */
.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 40px;
}

.login-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.login-info p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.feature-item i {
    font-size: 32px;
    color: var(--brown);
    margin-top: 5px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.login-form-container {
    display: flex;
    justify-content: center;
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
}

.login-form h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

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

.login-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.login-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-blue);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(166, 86, 13, 0.1);
}

.form-actions {
    margin-top: 30px;
}

.btn-full {
    width: 100%;
    margin-bottom: 10px;
}

.form-links {
    text-align: center;
    margin-top: 20px;
}

.form-links a {
    color: var(--brown);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.form-links a:hover {
    text-decoration: underline;
}

/* === MODAIS === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-hover);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--light-gray);
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--dark-blue);
}

.close {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--dark-blue);
}

.modal-form {
    padding: 30px;
}

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

.modal-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.modal-form input,
.modal-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-blue);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(166, 86, 13, 0.1);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border-top: 1px solid var(--light-gray);
}

.modal-actions .btn-secondary {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--light-gray);
    font-size: 13px;
    padding: 8px 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-actions .btn-secondary:hover {
    background-color: var(--light-gray);
    color: var(--dark-blue);
    border-color: var(--light-gray);
    transform: none;
}

.modal-actions .btn-primary {
    font-size: 13px;
    padding: 8px 18px;
    font-weight: 500;
}

.modal-actions .btn-primary:hover {
    filter: brightness(1.05);
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade para a página de certidões */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .login-form {
        padding: 30px 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-form {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
}

/* === PÁGINA DE SERVIÇOS - LISTA === */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.3s ease;
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-list-item:hover {
    background-color: rgba(198, 224, 241, 0.1);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 8px;
}

.service-list-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    font-size: 24px;
}

.service-list-content {
    flex: 1;
}

.service-list-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-list-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.service-read-more {
    color: var(--brown);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-read-more:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.service-expand-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid var(--brown);
    border-radius: 50%;
    color: var(--brown);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-expand-btn:hover {
    background-color: var(--brown);
    color: var(--white);
    transform: rotate(90deg);
}

.service-expand-btn i {
    transition: transform 0.3s ease;
}

.service-list-item.active .service-expand-btn {
    background-color: var(--brown);
    color: var(--white);
    transform: rotate(45deg);
}

/* Responsividade para lista de serviços */
@media (max-width: 768px) {
    .service-list-item {
        padding: 20px 0;
        gap: 15px;
    }
    
    .service-list-icon {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .service-list-content h3 {
        font-size: 16px;
    }
    
    .service-list-content p {
        font-size: 14px;
    }
    
    .service-expand-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* Seção de Diferenciais */
.section-alt {
    background-color: var(--light-bg);
    padding-top: 40px;
}

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

.diferenciais-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.diferenciais-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.diferencial-item {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
}

.diferencial-item i {
    font-size: 48px;
    color: var(--brown);
    margin: 0 auto 20px auto;
    display: block;
    text-align: center;
    width: fit-content;
}

.diferencial-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-blue);
    line-height: 1.3;
}

.diferencial-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Modais de Serviços */
.modal-large {
    max-width: 700px;
}

.modal-body {
    padding: 30px;
}

.service-details {
    max-width: 100%;
}

.service-description h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: var(--dark-blue);
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-description li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.service-description li i {
    color: var(--brown);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--brown), var(--dark-blue));
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-box i {
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

/* Responsividade para a página de serviços */
@media (max-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
        gap: 25px;
        max-width: 800px;
    }
    
    .diferencial-item {
        padding: 25px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .diferencial-item i {
        font-size: 42px;
        margin: 0 auto 16px auto;
        display: block;
        text-align: center;
        width: fit-content;
    }
    
    .diferencial-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .diferencial-item p {
        font-size: 15px;
    }
    
    .modal-large {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .service-description li {
        font-size: 14px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* === PÁGINA DE ARTIGOS === */
.search-container {
    margin-top: 30px;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 18px;
}

.search-box input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(166, 86, 13, 0.1);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.article-card {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-blue), var(--brown));
}

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

.image-placeholder {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.image-placeholder i {
    font-size: 28px;
    color: var(--white);
}

.article-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: var(--brown);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 11px;
    color: var(--text-secondary);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.article-meta i {
    font-size: 12px;
}

.article-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark-blue);
    line-height: 1.3;
    font-weight: 600;
}

.article-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-tags {
    display: none;
}

.tag {
    background-color: var(--light-bg);
    color: var(--brown);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.article-btn {
    width: 100%;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-top: auto;
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: var(--brown);
    color: var(--white);
    border-color: var(--brown);
}

/* Newsletter */
.newsletter-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0;
}

.newsletter-content { text-align: left; }

.newsletter-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.newsletter-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    max-width: 400px;
}

/* Removido duplicação - definição movida para seção específica */

.newsletter-form .btn {
    padding: 12px 20px;
    white-space: nowrap;
}

.newsletter-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsividade para a página de artigos */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card {
        margin-bottom: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 20px;
        margin: 0;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-illustration {
        display: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Scroll down arrow */
.scroll-down {
    text-align: center;
    margin-top: 40px;
}

.scroll-down img {
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* === PÁGINA SOBRE NÓS === */
.hero-about {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--brown) 100%);
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
}

.hero-about .hero-title {
    color: white;
}

.hero-about .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}


.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 32px;
    text-align: left;
    line-height: 1.2;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: left;
    max-width: none;
}

.about-text p:first-of-type {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 28px;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

/* Lista de Clientes - Layout em Colunas */
.clients-list-wrapper {
    margin: 0;
    padding: 60px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.clients-list-wrapper::before {
    content: "Clientes que confiam em nós";
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 40px;
    text-align: center;
}

.clients-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
}

.clients-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
    text-align: left;
    padding: 10px 0;
    transition: all 0.2s ease;
}

.clients-list li:hover {
    color: var(--dark-blue);
    transform: translateX(4px);
}

.clients-list li i {
    color: var(--accent-green);
    font-size: 22px;
    margin-top: 4px;
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 36px;
    color: white;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.values-list li:last-child {
    border-bottom: none;
}

/* CTA Section - Página Sobre */
.cta-about {
    background: linear-gradient(135deg, rgba(14, 25, 79, 0.02) 0%, rgba(0, 47, 29, 0.02) 100%);
}

.cta-about-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.cta-about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.values-list strong {
    color: var(--dark-blue);
}

.team-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.team-intro {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.member-photo i {
    font-size: 48px;
    color: var(--brown);
}

.team-member h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Responsividade para a página Sobre Nós */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    
    .about-text h1 {
        font-size: 40px;
        margin-bottom: 24px;
    }
    
    .team-content h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .about-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .about-text p:first-of-type {
        font-size: 18px;
    }
    
    .team-intro {
        font-size: 16px;
    }
    
    .clients-list-wrapper::before {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .clients-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .clients-list li {
        font-size: 15px;
    }
    
    .cta-about-content h2 {
        font-size: 28px;
    }
    
    .cta-about-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .diferencial-item {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .diferencial-item i {
        font-size: 36px;
        margin: 0 auto 12px auto;
        display: block;
        text-align: center;
        width: fit-content;
    }
    
    .diferencial-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .diferencial-item p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .value-card,
    .team-member {
        padding: 30px 20px;
    }
    
    
    .about-text h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .about-text p:first-of-type {
        font-size: 17px;
    }
    
    .clients-list-wrapper {
        padding: 40px 0;
    }
    
    .clients-list-wrapper::before {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .clients-list li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .cta-about-content {
        padding: 15px;
    }
    
    .cta-about-content h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .cta-about-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

/* === PÁGINA POLÍTICA DE PRIVACIDADE === */
.hero-privacy {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--brown) 100%);
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
}

.hero-privacy .hero-title {
    color: white;
}

.hero-privacy .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.privacy-intro {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.privacy-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--brown);
    padding-bottom: 10px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.rights-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.rights-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.rights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: bold;
    font-size: 18px;
}

.privacy-section a {
    color: var(--brown);
    text-decoration: none;
    font-weight: 600;
}

.privacy-section a:hover {
    text-decoration: underline;
}

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

.cookies-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 40px;
    text-align: center;
}

.cookie-type {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--brown);
}

.cookie-type h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.cookie-type p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.commitment-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.commitment-list {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.commitment-item i {
    font-size: 24px;
    color: var(--brown);
    margin-top: 2px;
    flex-shrink: 0;
}

.commitment-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.more-info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.more-info-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.more-info-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.contact-methods {
    display: grid;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-method i {
    font-size: 20px;
    color: var(--brown);
    flex-shrink: 0;
}

.contact-method span {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.policy-date {
    background: var(--brown);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.policy-date p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Responsividade para a página de Política de Privacidade */
@media (max-width: 768px) {
    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
    }
    
    .cookie-type {
        padding: 15px;
    }
    
    .commitment-item {
        padding: 20px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .privacy-intro h2,
    .cookies-content h2,
    .commitment-content h2,
    .more-info-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 15px;
    }
    
    .commitment-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* === PÁGINA ARTIGOS === */
.hero#hero-artigos {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    color: var(--dark-blue);
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.search-container {
    margin-top: 30px;
}

.search-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 16px;
    background: white;
    color: var(--dark-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.search-box input:focus {
    border-color: var(--brown);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.search-box input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brown);
    font-size: 18px;
    pointer-events: none;
}

/* Filtros */
.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--brown);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.remove-filter {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.category-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-filters span {
    font-weight: 600;
    color: var(--dark-blue);
}

.category-link {
    color: #666;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link.active {
    background: var(--brown);
    color: white;
    text-decoration: none;
}

/* Estado vazio */
.no-articles {
    text-align: center;
    padding: 60px 20px;
}

.no-articles h3 {
    margin: 20px 0 10px 0;
    color: var(--dark-blue);
}

.no-articles p {
    color: #666;
    margin-bottom: 30px;
}


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

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--brown);
    background: white;
    color: var(--brown);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--brown);
    color: white;
    text-decoration: none;
}

.newsletter-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 0;
}

.newsletter-content { text-align: left; }

.newsletter-content h2 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.newsletter-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: var(--dark-blue);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(166, 86, 13, 0.1);
}

.newsletter-form input.field-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.newsletter-form button {
    padding: 12px 25px;
    white-space: nowrap;
}

.newsletter-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === PÁGINA ARTIGO INDIVIDUAL === */
.section-small {
    padding: 20px 0;
}

.section-compact {
    padding: 20px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: var(--brown);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-full {
    max-width: 800px;
    margin: 0 auto;
}

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

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 10px 0;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.article-image-full {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
}

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

.article-content-full {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.article-content-full h2 {
    color: var(--dark-blue);
    margin: 30px 0 15px 0;
    font-size: 1.8rem;
}

.article-content-full h3 {
    color: var(--dark-blue);
    margin: 25px 0 12px 0;
    font-size: 1.4rem;
}

.article-content-full p {
    margin-bottom: 15px;
}

.article-content-full ul,
.article-content-full ol {
    margin: 15px 0;
    padding-left: 20px;
}

.article-content-full li {
    margin-bottom: 8px;
}

.article-share {
    margin: 50px 0 20px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
}

.article-share h4 {
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.x-twitter {
    background: #000000;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.cta-container {
    text-align: center;
    padding: 40px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    color: var(--dark-blue);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(193, 191, 191, 0.213) 2px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
    border-radius: 15px;
}

.cta-container > * {
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-container p {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .article-image {
        height: 150px;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-card h3 {
        font-size: 15px;
    }
    
    .article-card p {
        font-size: 12px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-message {
        margin-top: 15px;
        padding: 10px 15px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
    }

    .newsletter-message.success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .newsletter-message.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* === ESTILOS DO ACORDEÃO === */
.services-accordion {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.accordion-item {
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-hover);
}

.accordion-header {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(14, 25, 79, 0.02);
}

.accordion-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark-blue), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: 5px;
}

.accordion-icon i {
    font-size: 24px;
    color: var(--white);
}

.accordion-title {
    flex: 1;
    min-width: 0;
}

.accordion-title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.accordion-title h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brown);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.accordion-title p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accordion-item.expanded .accordion-title p {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-overflow: unset;
}

.accordion-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-top: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.accordion-toggle:hover {
    border-color: var(--brown);
    background: var(--brown);
}

.accordion-toggle:hover i {
    color: var(--white);
}

.accordion-toggle i {
    font-size: 16px;
    color: var(--brown);
    transition: all 0.3s ease;
}

.accordion-content {
    display: none;
    padding: 0 30px 30px 110px;
    border-top: 1px solid var(--light-gray);
    background: rgba(14, 25, 79, 0.01);
}

.accordion-text {
    padding-top: 20px;
}

.accordion-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.accordion-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-blue);
}

.accordion-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brown);
    margin: 20px 0 10px 0;
}

.accordion-text ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.accordion-text li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* Responsividade do Acordeão */
@media (max-width: 768px) {
    .services-accordion {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .accordion-item {
        margin-bottom: 0;
    }
    
    .accordion-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .accordion-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .accordion-icon i {
        font-size: 20px;
    }
    
    .accordion-title h2 {
        font-size: 1.3rem;
    }
    
    .accordion-title h3 {
        font-size: 1rem;
    }
    
    .accordion-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        margin: 0;
    }
    
    .accordion-content {
        padding: 0 20px 20px 20px;
    }
    
    .accordion-text h4 {
        font-size: 1.1rem;
    }
    
    .accordion-text h5 {
        font-size: 1rem;
    }
}
