/* ------------------ BASE ------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

img {
    max-width: 100%;
    border-radius: 8px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* ------------------ NAVBAR ------------------ */
.navbar {
    background-color: #003366;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00c896;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
}

/* ------------------ HERO ------------------ */
.hero {
    background: url('../images/hero.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.btn {
    background-color: #00c896;
    padding: 12px 25px;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #009f78;
}

.btn-outline {
    border: 2px solid #00c896;
    padding: 10px 20px;
    color: #00c896;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: #00c896;
    color: white;
}

/* ------------------ SECTION: Destaques ------------------ */
.destaques {
    background-color: white;
    padding: 60px 0;
}

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

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

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #003366;
}

.card p {
    font-size: 0.95rem;
}

/* ------------------ CHAMADA ------------------ */
.chamada {
    background-color: #003366;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.chamada h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.chamada p {
    margin-bottom: 20px;
}

/* ------------------ BLOG / POSTS ------------------ */
.blog-home,
.posts {
    padding: 60px 0;
}

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

.post {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.post h3 {
    margin: 15px 0 10px;
}

.post a {
    color: #00c896;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* ------------------ PÁGINAS INTERNAS ------------------ */
.page-header {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
}

/* SOBRE */
.sobre-conteudo {
    padding: 60px 0;
}

.sobre-conteudo h2 {
    color: #003366;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* SERVIÇOS */
.lista-servicos {
    padding: 60px 0;
}

/* CONTATO */
.contato {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contato form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button[type="submit"] {
    background-color: #003366;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}

.mensagem-sucesso {
    color: green;
    display: none;
    font-weight: bold;
}

.contato-info p {
    margin: 10px 0;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 20px;
    color: #00c896;
    font-weight: bold;
}

.whatsapp-link i {
    margin-right: 6px;
}

/* ------------------ FOOTER ------------------ */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

/* ------------------ WHATSAPP FLOAT ------------------ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

[data-anime] {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease-in-out;
}

.animar {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #003366;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        color: white;
    }

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