/* Reset e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

:root {
    --primary: #ea580c;
    --primary-dark: #c2410c;
    --secondary: #431407;
    --accent: #14b8a6;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --text-muted: #777;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 2px;
    --transition: all 0.3s ease;
}

/* Container */
.page-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Navbar */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-nav.scrolled {
    box-shadow: var(--shadow-md);
}

.site-nav .page-wrapper {
    padding: 0 20px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-item-link {
    padding: 10px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.menu-item-link:hover,
.menu-item-link.is-active {
    color: var(--primary);
    background: var(--bg-light);
}

.menu-item-link.nav-link-cta {
    background: var(--primary);
    color: #fff;
    margin-left: 10px;
}

.menu-item-link.nav-link-cta:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Menu Toggle Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero */
.hero-area {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-color: var(--secondary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,41,59,0.85) 0%, rgba(30,58,95,0.75) 100%);
}

.hero-area .page-wrapper {
    position: relative;
    z-index: 2;
}

.hero-inner {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Serviços */
.our-services {
    padding: 100px 0;
    background: var(--bg-white);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--bg-light);
    border-radius: 50%;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Estatísticas */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Sobre */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-info h2 {
    margin-bottom: 25px;
}

.about-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-description strong {
    color: var(--text-primary);
}

.our-mission {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-bottom: 30px;
}

.our-mission h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.our-mission p {
    color: var(--text-secondary);
}

.our-mission strong {
    color: var(--text-primary);
}

.org-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.org-info .info-row {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
}

.item-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.item-value {
    font-weight: 600;
    color: var(--text-primary);
}

.company-image {
    position: relative;
}

.company-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Valores */
.our-values {
    padding: 100px 0;
    background: var(--bg-white);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.value-box {
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-box:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.value-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Depoimentos */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.depoimentos-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-item.is-active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.review-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-text strong {
    color: var(--text-primary);
    font-style: normal;
}

.client-name {
    font-weight: 600;
    color: var(--primary);
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary);
    color: #fff;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.carousel-pagination {
    display: flex;
    gap: 10px;
}

.carousel-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    transition: var(--transition);
}

.carousel-pagination .dot.is-active {
    background: var(--primary);
    width: 25px;
    border-radius: 5px;
}

/* FAQ */
.faqs {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-block {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: transparent;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary);
}

.faq-icone {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-block.is-active .faq-icone {
    transform: rotate(180deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-block.is-active .faq-resposta {
    max-height: 500px;
}

.faq-resposta p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-resposta strong {
    color: var(--text-primary);
}

/* Contato */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.details-list .info-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.details-list .info-icone {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.details-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.details-list p {
    color: var(--text-secondary);
    margin: 0;
}

.form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
}

.fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-footer {
    margin-top: 25px;
}

.form-info {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-info a {
    color: var(--primary);
    text-decoration: underline;
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: var(--radius-sm);
    display: none;
}

.form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* Footer */
.main-footer {
    background: var(--secondary);
    color: #fff;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-meta {
    font-size: 0.85rem;
    margin-top: 15px;
}

.footer-menu,
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a,
.contact-info li {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: #fff;
    padding-left: 5px;
}

.copyright-area {
    padding: 40px 0;
}

.legal-text {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
}

.legal-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.legal-text strong {
    color: rgba(255,255,255,0.8);
}

.copy-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copy-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-local {
    font-size: 0.85rem;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-alt {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-alt:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.send-btn {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
}

/* Texto Crawler vs Usuario */
.text-user.visually-hidden {
    display: none !important;
}

/* Utilitários */
.visually-hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsivo */
@media (max-width: 992px) {
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .company-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-items {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-items.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-item-link {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .menu-item-link.nav-link-cta {
        margin: 10px 0 0;
    }
    
    .fields-row {
        grid-template-columns: 1fr;
    }
    
    .copy-text {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.75rem;
    }
}

