/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: #0056b3;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

.nav a:hover {
    color: #0056b3;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #0056b3;
    color: white;
}

.btn-primary:hover {
    background-color: #003d82;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* Sobre */
.sobre {
    padding: 4rem 0;
    background-color: #fff;
}

.sobre h2 {
    color: #0056b3;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.sobre p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Serviços */
.servicos {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.servicos h2 {
    color: #0056b3;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.servico-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.servico-card h3 {
    color: #0056b3;
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
}

.servico-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Por Que Escolher */
.por-que-escolher {
    padding: 4rem 0;
    background-color: #fff;
}

.por-que-escolher h2 {
    color: #0056b3;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.beneficio {
    text-align: center;
    padding: 2rem;
    background-color: #e8f1f8;
    border-radius: 8px;
    border-left: 4px solid #0056b3;
}

.checkmark {
    display: inline-block;
    color: #0056b3;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.beneficio h3 {
    color: #0056b3;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.beneficio p {
    color: #666;
    font-size: 0.95rem;
}

/* Contato */
.contato {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.contato h2 {
    color: #0056b3;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contato > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    color: #0056b3;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-item p {
    color: #666;
    font-size: 1rem;
}

.info-item a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #003d82;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #5dade2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .sobre h2,
    .servicos h2,
    .por-que-escolher h2,
    .contato h2 {
        font-size: 2rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .beneficios {
        grid-template-columns: 1fr;
    }

    .contato-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        height: 300px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .sobre,
    .servicos,
    .por-que-escolher,
    .contato {
        padding: 2rem 0;
    }
}
