@import '/src/style/Style_de_services/footer.css';
@import '/src/style/Style_de_services/header.css';
@import '/src/style/voltar_ao_topo.css';
@import '/src/style/Style_de_services/hero.css';
@import '/src/style/Style_de_services/services.css';
@import '/src/style/Style_de_services/budget_modal.css';
@import '/src/style/anim.css';

/* Variáveis e Reset */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-light: #f8fafc;
    --transition: all 0.3s ease;
    --spacing-section: 3rem 0;
    --container-padding: 2rem;
    --header-height: 70px;
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 4rem 0;
        --container-padding: 1rem;
        --header-height: 70px;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    overflow-x: hidden;
   
    
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}



