/* Cores principais */
:root {
    --color-black: #000000;
    --color-gray: #bebebd;
    --color-red: #da0100;
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-dark-gray: #343a40;
}

/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-dark-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-red);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-black);
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--color-black);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-red);
}

.btn-primary {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

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

/* Header */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1040;
    transition: all 0.3s ease;
    background-color: var(--color-white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    min-height: 80px;
}

.header-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}

.header-column {
    display: flex;
    align-items: center;
}

.header-column.justify-content-end {
    margin-left: auto;
}

.header-logo img {
    max-height: 60px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--color-black);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--color-red);
}

.navbar-toggler {
    border-color: var(--color-black);
    color: var(--color-black);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
    margin-top: 80px; /* Adiciona margem no topo para compensar a altura do header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/fachada.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section h2.highlight {
    font-size: 2.2rem;
    color: var(--color-red);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(218, 1, 0, 0.4);
    background-color: var(--color-red);
    border-color: var(--color-red);
}

.hero-section .btn-primary:hover {
    background-color: var(--color-black);
    border-color: var(--color-black);
}

/* Missão, Visão e Valores */
#missao-visao-valores .card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#missao-visao-valores .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#missao-visao-valores .card-title {
    color: var(--color-red);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Sobre Nós */
#sobre {
    background-color: var(--color-light-gray);
}

/* Serviços */
.service-card .card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .card-title {
    color: var(--color-red);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-logo img {
    max-height: 80px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-card:hover .service-logo img {
    transform: scale(1.05);
}

.location-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray);
}

.location-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.location-info p {
    margin-bottom: 0.5rem;
}

/* Empresas Parceiras */
.partner-logo {
    max-height: 80px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.commitment {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-black);
}

/* Contato */
#contactForm .form-control,
#contactForm .form-select {
    padding: 0.8rem 1rem;
    border-radius: 0;
    border: 1px solid #ddd;
    color: var(--color-dark-gray);
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    box-shadow: none;
    border-color: var(--color-red);
}

#contactForm textarea {
    min-height: 150px;
}

/* Botão WhatsApp */
.whatsapp-btn {
    padding: 15px 30px;
    font-size: 1.25rem;
    border-radius: 50px;
    background-color: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.5rem;
}

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

.whatsapp-btn.pulse {
    animation: pulse 1s ease-in-out;
}

/* Endereço */
#endereco address {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--color-black);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 10rem 0 5rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section h2.highlight {
        font-size: 1.8rem;
    }
    
    .header-nav {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 80vh;
        margin-top: 60px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2.highlight {
        font-size: 1.5rem;
    }

    .hero-section .btn-primary {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Classe para o fundo preto */
.bg-black {
    background-color: var(--color-black);
} 