/* ===== RESET E CONFIGURAÇÕES BÁSICAS ===== */

/* 
Função: Aqui ficam apenas ajustes gerais, resets, utilitários, responsividade global e pequenas correções de compatibilidade.
Conteúdo típico:
Reset de margens/paddings
Fontes globais
Cores e variáveis globais (se usar)
Utilitários (ex: .text-center, .mt-2)
Media queries globais
Ajustes mínimos do Bootstrap (se necessário)
*/
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: system-ui, Arial, sans-serif;
   line-height: 1.6;
   color: #333;
}

/* Títulos e nome da empresa com Michroma */
.hero h1,
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
   font-family: 'Michroma', Arial, sans-serif;
   font-weight: 400;
   letter-spacing: 1px;
}

.hero h1 {
   font-size: 3rem;
   margin-bottom: 1rem;
   color: #222;
   text-shadow: 1px 1px 8px #fff, 1px 1px 8px #ccc;
}

h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
   text-align: center;
}

/* ===== HEADER ===== */
.header-custom {
   background: #ffffff00;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
}

.navbar {
   padding: 1rem 0;
}

.logo {
   height: 40px;
   width: auto;
}

/* Centralizar links no desktop */
.navbar-nav {
   margin: 0 auto;
}

.nav-link {
   color: #333 !important;
   font-weight: 500;
   margin: 0 0.5rem;
   transition: color 0.3s ease;
}

.nav-link:hover {
   color: #007bff !important;
}

/* ===== HERO SECTION ===== */
.hero {
   padding-top: 5px;
   color: white;
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
}

/* Video Background */
.hero-video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -2;
}

.hero-video video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4);
   z-index: -1;
}

.hero p {
   font-size: 1.2rem;
   margin-bottom: 2rem;
   opacity: 0.9;
   color: #444;
   text-shadow: 1px 1px 8px #fff, 1px 1px 8px #ccc;
}

.hero-buttons {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   justify-content: center;
   margin-top: 2rem;
}

/* ===== SECTIONS ===== */
.about,
.contact {
   padding: 5rem 0;
}

.about {
   background: #f8f9fa;
}

.contact {
   background: #fff;
}

/* ===== FORM ===== */
.form-control {
   border: 2px solid #e9ecef;
   border-radius: 8px;
   padding: 0.75rem 1rem;
   transition: border-color 0.3s ease;
}

.form-control:focus {
   border-color: #007bff;
   box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* ===== FOOTER ===== */
.footer {
   background: #333;
   color: #fff;
   padding: 2rem 0;
   text-align: center;
}

/* (media queries mobile removidas, agora estão em responsive.css) */

.color-custom-dark {
   color: #333;
}

.color-custom-primary {
   color: #007bff;
}