/* ===== IMPORTAÇÃO DA FONTE ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ===== VARIÁVEIS DE COR ===== */
:root {
    --azul-principal: #0F2A44;
    --azul-secundario: #1E3A5F;
    --verde-destaque: #22C55E;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
}

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

/* ===== BODY ===== */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cinza-claro);
    color: var(--azul-principal);
}

/* ===== LOGO TEXTO ===== */
.logo {
    font-size: 28px;
    font-weight: 600;
    color: var(--branco);
}

.logo span {
    color: var(--verde-destaque);
    font-weight: 700;
}

/* ===== MENU ===== */
nav a {
    color: var(--branco);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

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

/* ===== BANNER PRINCIPAL ===== */
.banner {
    background: linear-gradient(rgba(15,42,68,0.8), rgba(15,42,68,0.8)), url('../adm/img/banner.png') center/cover;
    color: var(--branco);
    padding: 100px 20px;
    text-align: center;
}

.banner h1 {
    font-size: 42px;
    font-weight: 700;
}

.banner p {
    margin-top: 15px;
    font-size: 18px;
}

/* ===== BOTÃO ===== */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: var(--verde-destaque);
    color: var(--branco);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #16A34A;
}

/* ===== SEÇÕES ===== */
.section {
    padding: 60px 20px;
    text-align: center;
      
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    
}

/* ===== CARDS (SERVIÇOS) ===== */
.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background-color: var(--branco);
    padding: 25px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

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

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

/* ===== FOOTER ===== */
footer {
    background-color: var(--azul-principal);
    color: var(--branco);
    text-align: center;
    padding: 20px;
    width: 100%;
    position: fixed;
    bottom: 0px;
}

/* ===== FORMULÁRIO MODERNO ===== */
.form-container {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-box {
    position: relative;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 10px;
    border: none;
    background: #f2f2f2;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.input-box textarea {
    resize: none;
    height: 120px;
}

.input-box input:focus,
.input-box textarea:focus {
    background: #e8f0fe;
    box-shadow: 0 0 0 2px #25D366;
}

.icon {
    position: absolute;
    left: 12px;
    top: 14px;
    font-size: 18px;
    opacity: 0.7;
}

/* BOTÃO REDONDO */
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
}

.whatsapp-btn::before {
    content: "📱";
    font-size: 18px;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background: #1ebe5d;
}

.icone-verde {
    color: #22C55E;
}

.mapa {
    width: 100%;
    max-width: 100%;
}

.mapa iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

header {
    background-color: var(--azul-principal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    position: relative;
    z-index: 1000;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}
.btn-form {
    background: #25D366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-form:hover {
    background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        z-index: 1000;
    }
    
    nav {
        display: none;
        flex-direction: column;
        background: #0d2b45;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px; /* um pouco maior */
        transition: all 0.3s ease;
        z-index: 9999;
    }

    nav a {
        padding: 20px;
        font-size: 19px;
        letter-spacing: 0.5px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav a:hover {
        background: rgba(255,255,255,0.1);
    }

    nav.active {
        display: flex;
    }

    footer {
    background-color: var(--azul-principal);
    color: var(--branco);
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
    
}
}