/* css/site.css */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.fw-black { font-weight: 900; }

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    padding: 100px 0;
}

.main-img {
    max-height: 450px;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

/* Seções de Fundo */
.bg-dark-section {
    background-color: #0d0d0d;
}

/* Cards de Serviço */
.service-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    transition: 0.3s;
    border-bottom: 5px solid #ff0000;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
}

/* Caixa de Rastreio (Glassmorphism) */
.tracking-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 30px;
}

.max-600 { max-width: 600px; }

/* Inputs do Site */
.form-control {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}

.form-control:focus {
    border-color: #ff0000 !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* Mapa */
.map-wrapper {
    overflow: hidden;
    height: 350px;
}

/* Botões do Site */
.btn-danger {
    background-color: #ff0000;
    border: none;
    transition: 0.3s;
}

.btn-danger:hover {
    background-color: #cc0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

/* Layout Responsivo para o Site Público */
.hero-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Evita que a imagem "atropele" o texto em telas menores */
.hero-section img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Espaçamento entre as seções */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Grid de Serviços */
.service-card {
    background: #111;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}