/* Custom Styles for Lara Tecnologia */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    padding-top: 56px; /* Ajuste para a navbar fixa */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o body ocupa a altura total da viewport */
}

/* Navbar adjustments */
.navbar-brand img.logo-navbar {
    height: 40px; /* Ajusta a altura da logo na navbar */
    width: auto;
    max-width: 100%; /* Garante que não ultrapasse o contêiner */
}

/* Hero Section */
.hero-section {
    background: url('../img/hero-bg.jpg') no-repeat center center; /* Adicione uma imagem de fundo aqui */
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    min-height: 500px; /* Altura mínima para a seção hero */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Para overlay */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay escuro */
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Sections padding */
section {
    padding: 60px 0;
}

/* Cards de Serviço */
.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .card-body {
    padding: 30px;
}

.service-card i {
    color: #007bff;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #343a40; /* Cor escura para o rodapé */
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto; /* Empurra o footer para a parte inferior da página */
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #007bff;
}

/* General responsive adjustments */
@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-brand img.logo-navbar {
        height: 30px; /* Ajusta a altura da logo na navbar para mobile */
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1.2rem;
    }
    .btn-lg {
        font-size: 1rem;
        padding: 10px 20px;
    }
    body {
        padding-top: 56px; /* Ajuste para a navbar fixa em mobile */
    }
}

