/**
 * Stylesheet Principal
 * Joao Vicente de Sousa Carros
 * Design Responsivo Mobile-First
 */

/* ====================================
   CSS VARIABLES
   ==================================== */
:root {
    --cor-primaria: #C41E3A;
    --cor-secundaria: #8B1A2E;
    --cor-destaque: #E74C3C;
    --cor-clara: #FCE8EB;
    --cor-branca: #FFFFFF;
    --cor-texto: #2C3E50;
    --cor-texto-claro: #7F8C8D;
    --cor-cinza-claro: #ECF0F1;
    --cor-cinza-medio: #BDC3C7;
    --cor-cinza-escuro: #34495E;
    --cor-sucesso: #27AE60;
    --cor-erro: #E74C3C;
    --cor-aviso: #F39C12;
    
    --font-principal: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-titulos: 'Poppins', sans-serif;
    
    --espacamento-xs: 0.5rem;
    --espacamento-sm: 1rem;
    --espacamento-md: 2rem;
    --espacamento-lg: 3rem;
    --espacamento-xl: 4rem;
    
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    
    --transicao: all 0.3s ease;
}

/* ====================================
   RESET & BASE
   ==================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-principal);
    color: var(--cor-texto);
    line-height: 1.6;
    background: var(--cor-branca);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transicao);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulos);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-cinza-escuro);
    margin-bottom: var(--espacamento-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: var(--espacamento-sm);
}

/* ====================================
   CONTAINER & LAYOUT
   ==================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--espacamento-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--espacamento-lg);
    animation: fadeInDown 0.8s ease;
}

.section-title {
    color: var(--cor-primaria);
    margin-bottom: var(--espacamento-xs);
}

.section-subtitle {
    color: var(--cor-texto-claro);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transicao);
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--cor-primaria);
    color: var(--cor-branca);
}

.btn-primary:hover {
    background: var(--cor-secundaria);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--cor-branca);
    border: 2px solid var(--cor-branca);
}

.btn-secondary:hover {
    background: var(--cor-branca);
    color: var(--cor-primaria);
}

.btn-block {
    width: 100%;
}

/* ====================================
   NAVBAR
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--cor-branca);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: var(--transicao);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-family: var(--font-titulos);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cor-primaria);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--cor-texto);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--cor-primaria);
    color: var(--cor-branca);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--cor-secundaria);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--cor-primaria);
    border-radius: 3px;
    transition: var(--transicao);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.85) 0%, rgba(139, 26, 46, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--cor-branca);
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: var(--cor-branca);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--espacamento-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: var(--espacamento-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====================================
   VALORES SECTION
   ==================================== */
.valores {
    padding: var(--espacamento-xl) 0;
    background: var(--cor-cinza-claro);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--espacamento-md);
}

.valor-card {
    background: var(--cor-branca);
    padding: var(--espacamento-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transicao);
    animation: fadeIn 0.6s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.valor-titulo {
    color: var(--cor-primaria);
    font-size: 1.5rem;
    margin-bottom: var(--espacamento-xs);
}

.valor-descricao {
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

/* ====================================
   SERVIÇOS SECTION
   ==================================== */
.servicos {
    padding: var(--espacamento-xl) 0;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--espacamento-md);
}

.servico-card {
    background: var(--cor-branca);
    padding: var(--espacamento-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transicao);
    border-left: 4px solid var(--cor-primaria);
    animation: fadeInLeft 0.6s ease;
}

.servico-card:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow-hover);
}

.servico-icone {
    font-size: 3rem;
    margin-bottom: var(--espacamento-sm);
}

.servico-titulo {
    color: var(--cor-primaria);
    font-size: 1.4rem;
    margin-bottom: var(--espacamento-sm);
}

.servico-descricao {
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

/* ====================================
   SOBRE SECTION
   ==================================== */
.sobre {
    padding: var(--espacamento-xl) 0;
    background: var(--cor-clara);
}

.sobre-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacamento-lg);
    align-items: center;
}

.sobre-imagem img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: fadeInLeft 0.8s ease;
}

.sobre-conteudo {
    animation: fadeInRight 0.8s ease;
}

.sobre-descricao {
    color: var(--cor-texto);
    line-height: 1.8;
    margin-bottom: var(--espacamento-md);
}

.sobre-missao {
    background: var(--cor-branca);
    padding: var(--espacamento-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--cor-destaque);
    margin-bottom: var(--espacamento-md);
}

.missao-titulo {
    color: var(--cor-destaque);
    font-size: 1.2rem;
    margin-bottom: var(--espacamento-xs);
}

.missao-texto {
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

.sobre-info {
    display: flex;
    gap: var(--espacamento-md);
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cor-texto-claro);
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: var(--cor-primaria);
}

/* ====================================
   ESTATÍSTICAS SECTION
   ==================================== */
.estatisticas {
    padding: var(--espacamento-xl) 0;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: var(--cor-branca);
}

.estatisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--espacamento-md);
}

.estatistica-card {
    text-align: center;
    padding: var(--espacamento-md);
    animation: fadeIn 0.6s ease;
}

.estatistica-numero {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: var(--font-titulos);
    margin-bottom: var(--espacamento-xs);
}

.estatistica-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ====================================
   DEPOIMENTOS SECTION
   ==================================== */
.depoimentos {
    padding: var(--espacamento-xl) 0;
    background: var(--cor-cinza-claro);
}

.depoimentos-carrossel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carrossel-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.depoimento-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: var(--cor-branca);
    padding: var(--espacamento-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.depoimento-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.depoimento-aspas {
    font-size: 3rem;
    color: var(--cor-primaria);
    opacity: 0.2;
    margin-bottom: var(--espacamento-sm);
}

.depoimento-aspas svg {
    width: 50px;
    height: 50px;
}

.depoimento-texto {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cor-texto);
    margin-bottom: var(--espacamento-md);
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: var(--espacamento-sm);
}

.depoimento-autor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.autor-nome {
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 0.25rem;
}

.autor-cargo {
    color: var(--cor-texto-claro);
    font-size: 0.9rem;
}

/* Controles do Carrossel */
.carrossel-prev,
.carrossel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--cor-branca);
    border: 2px solid var(--cor-primaria);
    color: var(--cor-primaria);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transicao);
    z-index: 10;
}

.carrossel-prev:hover,
.carrossel-next:hover {
    background: var(--cor-primaria);
    color: var(--cor-branca);
}

.carrossel-prev {
    left: -60px;
}

.carrossel-next {
    right: -60px;
}

.carrossel-prev svg,
.carrossel-next svg {
    width: 24px;
    height: 24px;
}

.carrossel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: var(--espacamento-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cor-cinza-medio);
    border: none;
    cursor: pointer;
    transition: var(--transicao);
}

.dot:hover,
.dot.active {
    background: var(--cor-primaria);
    transform: scale(1.2);
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq {
    padding: var(--espacamento-xl) 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cor-branca);
    border: 2px solid var(--cor-cinza-claro);
    border-radius: var(--border-radius);
    margin-bottom: var(--espacamento-sm);
    overflow: hidden;
    transition: var(--transicao);
}

.faq-item:hover {
    border-color: var(--cor-primaria);
}

.faq-pergunta {
    width: 100%;
    padding: var(--espacamento-sm) var(--espacamento-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--espacamento-sm);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-texto);
    cursor: pointer;
    background: var(--cor-branca);
    transition: var(--transicao);
}

.faq-pergunta:hover {
    color: var(--cor-primaria);
}

.faq-pergunta svg {
    width: 24px;
    height: 24px;
    color: var(--cor-primaria);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-pergunta svg {
    transform: rotate(180deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-resposta p {
    padding: 0 var(--espacamento-md) var(--espacamento-md);
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

/* ====================================
   CONTATO SECTION
   ==================================== */
.contato {
    padding: var(--espacamento-xl) 0;
    background: var(--cor-clara);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--espacamento-lg);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: var(--espacamento-md);
}

.info-card {
    background: var(--cor-branca);
    padding: var(--espacamento-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: fadeInLeft 0.6s ease;
}

.info-icone {
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: var(--cor-branca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--espacamento-sm);
}

.info-icone svg {
    width: 24px;
    height: 24px;
}

.info-card h3 {
    color: var(--cor-primaria);
    font-size: 1.2rem;
    margin-bottom: var(--espacamento-xs);
}

.info-card p,
.info-card a {
    color: var(--cor-texto-claro);
    line-height: 1.7;
}

.info-card a:hover {
    color: var(--cor-primaria);
}

/* Formulário */
.contato-form {
    background: var(--cor-branca);
    padding: var(--espacamento-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: fadeInRight 0.6s ease;
}

.form-group {
    margin-bottom: var(--espacamento-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacamento-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--cor-texto);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--cor-cinza-claro);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transicao);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--cor-primaria);
    text-decoration: underline;
}

.form-feedback {
    padding: var(--espacamento-sm);
    border-radius: var(--border-radius);
    margin-top: var(--espacamento-sm);
    font-weight: 600;
}

.form-feedback.sucesso {
    background: #D4EDDA;
    color: var(--cor-sucesso);
    border: 1px solid var(--cor-sucesso);
}

.form-feedback.erro {
    background: #F8D7DA;
    color: var(--cor-erro);
    border: 1px solid var(--cor-erro);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--cor-cinza-escuro);
    color: var(--cor-branca);
    padding: var(--espacamento-lg) 0 var(--espacamento-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--espacamento-md);
    margin-bottom: var(--espacamento-md);
}

.footer-col h3,
.footer-col h4 {
    color: var(--cor-branca);
    margin-bottom: var(--espacamento-sm);
}

.footer-col p {
    color: var(--cor-cinza-medio);
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: var(--cor-cinza-medio);
    transition: var(--transicao);
}

.footer-col a:hover {
    color: var(--cor-primaria);
    padding-left: 5px;
}

.footer-cnpj {
    font-size: 0.9rem;
    margin-top: var(--espacamento-xs);
}

.footer-contato li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contato svg {
    width: 16px;
    height: 16px;
    color: var(--cor-primaria);
    flex-shrink: 0;
}

.footer-aviso {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--espacamento-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--espacamento-md);
}

.footer-aviso p {
    color: var(--cor-cinza-medio);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--espacamento-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cor-cinza-medio);
    font-size: 0.9rem;
}

/* ====================================
   WHATSAPP FLUTUANTE
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--cor-branca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transicao);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ====================================
   SCROLL TO TOP
   ==================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: var(--cor-branca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transicao);
    z-index: 999;
    cursor: pointer;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--cor-secundaria);
    transform: translateY(-5px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ====================================
   PÁGINAS LEGAIS
   ==================================== */
.pagina-legal {
    margin-top: 100px;
    padding: var(--espacamento-xl) 0;
}

.legal-header {
    text-align: center;
    margin-bottom: var(--espacamento-lg);
}

.legal-header h1 {
    color: var(--cor-primaria);
}

.ultima-atualizacao {
    color: var(--cor-texto-claro);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content section {
    margin-bottom: var(--espacamento-lg);
}

.legal-content h2 {
    color: var(--cor-primaria);
    margin-top: var(--espacamento-md);
}

.legal-content ul {
    list-style: disc;
    padding-left: var(--espacamento-md);
    margin-bottom: var(--espacamento-sm);
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-footer {
    text-align: center;
    margin-top: var(--espacamento-lg);
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* ====================================
   RESPONSIVE - TABLET
   ==================================== */
@media (max-width: 1024px) {
    .carrossel-prev {
        left: -10px;
    }
    
    .carrossel-next {
        right: -10px;
    }
    
    .sobre-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   RESPONSIVE - MOBILE
   ==================================== */
@media (max-width: 768px) {
    :root {
        --espacamento-xl: 3rem;
        --espacamento-lg: 2rem;
    }
    
    /* Navbar Mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cor-branca);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--espacamento-md);
        transition: left 0.4s ease;
        box-shadow: var(--box-shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--espacamento-sm) 0;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-link-cta {
        margin-top: var(--espacamento-sm);
    }
    
    /* Hero */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Grids */
    .valores-grid,
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    /* Sobre */
    .sobre-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sobre-info {
        flex-direction: column;
    }
    
    /* Estatísticas */
    .estatisticas-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--espacamento-sm);
    }
    
    /* Depoimentos */
    .carrossel-prev,
    .carrossel-next {
        width: 40px;
        height: 40px;
    }
    
    .carrossel-prev {
        left: 5px;
    }
    
    .carrossel-next {
        right: 5px;
    }
    
    .carrossel-prev svg,
    .carrossel-next svg {
        width: 20px;
        height: 20px;
    }
    
    .depoimento-card {
        padding: var(--espacamento-md);
        min-height: 320px;
    }
    
    /* Contato */
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col ul {
        align-items: center;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 90px;
        width: 45px;
        height: 45px;
    }
}

/* ====================================
   PRINT STYLES
   ==================================== */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-to-top,
    .menu-toggle,
    .hero-buttons,
    .carrossel-prev,
    .carrossel-next,
    .carrossel-dots {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ====================================
   UTILITY CLASSES
   ==================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--espacamento-xs) !important; }
.mb-2 { margin-bottom: var(--espacamento-sm) !important; }
.mb-3 { margin-bottom: var(--espacamento-md) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--espacamento-xs) !important; }
.mt-2 { margin-top: var(--espacamento-sm) !important; }
.mt-3 { margin-top: var(--espacamento-md) !important; }

