/* Configurações Gerais e Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --azul-escuro: #0A2240;
    --verde-escuro: #0B5933;
    --verde-destaque: #138A4F;
    --texto-escuro: #333333;
    --texto-claro: #F4F6F9;
}

body {
    color: var(--texto-escuro);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Títulos e Elementos Decorativos */
.titulo-centralizado {
    text-align: center;
    color: var(--azul-escuro);
    font-size: 2.5rem;
}

.linha-decorativa {
    width: 60px;
    height: 4px;
    background-color: var(--verde-escuro);
    border: none;
    margin: 15px 0;
}

.linha-decorativa.centralizada {
    margin: 15px auto 40px auto;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--verde-escuro);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: var(--verde-destaque);
}

/* Cabeçalho e Menu */
header {
    background-color: var(--azul-escuro);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    font-weight: 800;
}

.logo a span {
    color: var(--verde-destaque);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--verde-destaque);
}

/* Seção Home - Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 5px;
}

.slide-btn:hover {
    background: var(--verde-escuro);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Seção Sobre */
.sobre-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    color: var(--azul-escuro);
    font-size: 2.3rem;
}

.sobre-texto p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.sobre-img {
    flex: 1;
}

.sobre-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Seção Serviços - Cards */
.cards-servicos {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.card {
    background: #fff;
    flex: 1;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 5px solid var(--azul-escuro);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-top-color: var(--verde-escuro);
}

.card-icone {
    font-size: 3rem;
    color: var(--verde-escuro);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--azul-escuro);
}

/* Seção Contato */
.contato-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contato-info, .contato-mapa {
    flex: 1;
}

.contato-info h3 {
    color: var(--azul-escuro);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.lista-contato {
    list-style: none;
    margin: 25px 0;
}

.lista-contato li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.lista-contato i {
    color: var(--verde-escuro);
    margin-right: 15px;
    font-size: 1.3rem;
    width: 20px;
}

.redes-sociais {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.whatsapp { background-color: #25D366; }
.facebook { background-color: #1877F2; }
.instagram { background-color: #E1306C; }

.contato-mapa iframe {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Rodapé */
footer {
    background-color: var(--azul-escuro);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

a:hover {
    text-decoration: underline;
}


/* Responsividade Básica */
@media (max-width: 768px) {
    .navbar { flex-direction: column; }
    .nav-links { margin-top: 15px; }
    .nav-links li { margin: 0 10px; }
    .hero-slider { height: 60vh; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1.1rem; }
    .sobre-container, .cards-servicos, .contato-grid { flex-direction: column; }
    .card { margin-bottom: 20px; }
}

