/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais - Paleta Acolhedora */
    --primary-color: #7ca9bd;
    --primary-dark: #5a8899;
    --primary-light: #a8d5e2;
    --secondary-color: #d4a5a5;
    --accent-color: #f0e6d2;
    
    /* Cores Neutras */
    --dark: #2c3e50;
    --dark-light: #425666;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --background: #f8f9fa;
    
    /* Cores de Feedback */
    --success: #81c784;
    --error: #e57373;
    
    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Tamanhos */
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Utilidades */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-gray {
    background-color: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.nav-logo h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 2px;
}

.nav-logo .subtitle {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0e6d2 100%);
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--dark-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat p {
    font-size: 14px;
    color: var(--gray);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(124, 169, 189, 0.2));
}

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

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* Sobre Section */
.sobre-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-placeholder svg {
    width: 100%;
    height: auto;
}

.sobre-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 24px;
}

.sobre-text p {
    font-size: 16px;
    color: var(--dark-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.credenciais {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.credencial {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--background);
    border-radius: var(--border-radius-sm);
}

.credencial .icon {
    font-size: 25px;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
}

.credencial h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.credencial p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Serviços Section */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.servico-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.servico-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.servico-icon i {
    display: block;
}

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

.servico-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* Abordagem Section */
.abordagem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.abordagem-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.abordagem-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.abordagem-card p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.feature p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--dark-light);
    line-height: 1.8;
}

/* Contato Section */
.contato {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0e6d2 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contato-info h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contato-info > p {
    font-size: 16px;
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 4px;
}

.address-note {
    display: block;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 8px;
}

/* Formulário */
.contato-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Sistema de Abas */
.form-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 12px;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(124, 169, 189, 0.1);
    transform: translateY(-1px);
}

.tab-btn.active {
    color: white;
    background: linear-gradient(135deg, #7ca9bd 0%, #5a8a9c 100%);
    box-shadow: 0 4px 12px rgba(124, 169, 189, 0.3);
    transform: translateY(-2px);
}

.tab-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tab-btn.active i {
    transform: scale(1.1);
}

.tab-btn.completed::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 11px;
    color: white;
    background: #27ae60;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.4);
    animation: checkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Painéis de Abas */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid de Formulário */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-primary);
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 169, 189, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group.checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-group.checkbox label {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

/* Navegação entre Abas */
.btn-next-tab,
.btn-prev-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.btn-next-tab {
    width: 100%;
    justify-content: center;
}

.btn-prev-tab {
    background: var(--gray-light);
    color: var(--dark);
}

.btn-next-tab:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-prev-tab:hover {
    background: var(--gray);
    color: var(--white);
}

.form-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.form-actions .btn-prev-tab {
    flex: 0 0 auto;
    width: auto;
}

.form-actions .btn-primary {
    flex: 1;
    justify-content: center;
}

/* Footer do Formulário */
.form-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--gray-light);
}

.form-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 12px;
    text-align: center;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
    font-style: italic;
}

/* Calendário Interativo de Agendamento */
.form-group-calendario {
    margin-bottom: 24px;
}

.form-group-calendario > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.agendamento-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: var(--background);
    padding: 20px;
    border-radius: var(--border-radius);
}

.calendario-wrapper,
.horarios-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 16px;
}

/* Calendário */
.calendario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

.calendario-titulo {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.calendario-nav {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.calendario-nav:hover {
    background: var(--primary-light);
}

.calendario-dias-semana {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.dia-semana {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    padding: 8px 0;
}

.calendario-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendario-dia {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.calendario-dia:not(.desabilitado):not(.outro-mes):hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

.dia-numero {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    z-index: 1;
}

.dia-indicador {
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: none;
}

.calendario-dia.disponivel .dia-indicador,
.calendario-dia.parcial .dia-indicador {
    display: block;
}

.calendario-dia.outro-mes {
    opacity: 0.3;
    cursor: default;
}

.calendario-dia.desabilitado {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--gray-light);
}

.calendario-dia.desabilitado .dia-numero {
    color: var(--gray);
}

.calendario-dia.hoje {
    background: var(--primary-light);
}

.calendario-dia.hoje .dia-numero {
    font-weight: 700;
    color: var(--primary-dark);
}

.calendario-dia.selecionado {
    background: var(--primary-color);
    border-color: var(--primary-dark);
}

.calendario-dia.selecionado .dia-numero {
    color: var(--white);
    font-weight: 700;
}

.calendario-legenda {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
}

.legenda-cor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legenda-cor.disponivel {
    background: var(--success);
}

.legenda-cor.ocupado {
    background: var(--error);
}

.legenda-cor.parcial {
    background: #f9ca24;
}

/* Horários */
.horarios-placeholder,
.horarios-loading,
.horarios-erro,
.horarios-vazio {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

.horarios-placeholder i {
    font-size: 48px;
    color: var(--primary-light);
    margin-bottom: 16px;
    display: block;
}

.horarios-placeholder p {
    font-size: 14px;
}

.horarios-loading i {
    font-size: 32px;
    color: var(--primary-color);
}

.horarios-titulo {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.horario-btn {
    padding: 12px;
    background: var(--background);
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
}

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

.horario-btn.selecionado {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    color: var(--white);
}

.horario-btn i {
    font-size: 16px;
}

/* Responsivo - Calendário */
@media (max-width: 968px) {
    .agendamento-container {
        grid-template-columns: 1fr;
    }
    
    .horarios-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .calendario-dia {
        padding: 4px;
    }
    
    .dia-numero {
        font-size: 12px;
    }
    
    .horarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-tabs {
        gap: 4px;
    }
    
    .tab-btn {
        padding: 12px 16px;
        font-size: 14px;
        flex-direction: column;
        gap: 4px;
    }
    
    .tab-btn span {
        font-size: 12px;
    }
    
    .tab-btn i {
        font-size: 20px;
    }
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 36px;
    line-height: 64px;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-crp {
    font-size: 13px;
    margin-top: 8px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a i {
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

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

/* Responsividade */
@media (max-width: 968px) {
    .section-title {
        font-size: 36px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .abordagem-content {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 24px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .contato-form {
        padding: 28px 20px;
    }
}

/* Sistema de Alertas Customizado */
.custom-alert {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease;
}

.custom-alert-content {
    background-color: white;
    margin: 15% auto;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
}

.custom-alert-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.custom-alert-icon.error {
    background-color: #fee;
    color: #c33;
}

.custom-alert-icon.success {
    background-color: #efe;
    color: #3c3;
}

.custom-alert-icon.info {
    background-color: #eef;
    color: #7ca9bd;
}

.custom-alert-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.custom-alert-btn {
    background: linear-gradient(135deg, #7ca9bd 0%, #5a8a9c 100%);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 120px;
}

.custom-alert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 169, 189, 0.4);
}

.custom-alert-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .custom-alert-content {
        margin: 25% auto;
        padding: 28px 24px;
    }
    
    .custom-alert-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .custom-alert-content p {
        font-size: 15px;
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-primary);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #333;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Modal Política de Privacidade */
.modal-politica {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.modal-politica-content {
    background-color: #ffffff;
    margin: 3% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
    position: relative;
}

.modal-politica-content h2 {
    margin: 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, #7ca9bd 0%, #5a8a9c 100%);
    color: white;
    font-size: 26px;
    border-radius: 12px 12px 0 0;
}

.modal-politica-texto {
    padding: 28px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
}

.modal-politica-texto h3 {
    color: #7ca9bd;
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-politica-texto h3:first-child {
    margin-top: 0;
}

.modal-politica-texto p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.modal-politica-texto ul {
    margin: 12px 0 16px 20px;
    color: #555;
}

.modal-politica-texto li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-politica-atualizado {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #888;
    font-size: 14px;
}

.modal-politica-fechar {
    color: white;
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.2s ease;
}

.modal-politica-fechar:hover,
.modal-politica-fechar:focus {
    transform: scale(1.1);
}

.link-politica {
    color: #7ca9bd;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.link-politica:hover {
    color: #5a8a9c;
    border-bottom-color: #5a8a9c;
}

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

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

/* Responsivo para modal */
@media (max-width: 768px) {
    .modal-politica-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .modal-politica-content h2 {
        font-size: 22px;
        padding: 20px 24px;
    }
    
    .modal-politica-texto {
        padding: 20px;
    }
    
    .modal-politica-fechar {
        top: 16px;
        right: 20px;
        font-size: 28px;
    }
}
