/* ====== BASE GLOBAL ====== */
body {
    font-family: 'Nunito', Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* ====== TÍTULOS ====== */
h1, h2, h3 {
    color: #0a2540;
    font-weight: 700;
}

/* ====== LINKS ====== */
a {
    color: #0d3b66;
    transition: 0.3s;
}

a:hover {
    color: #00a86b;
}

/* ====== BOTÕES ====== */
button,
.zs-button,
input[type="submit"] {
    background: linear-gradient(135deg, #00a86b, #007f5f);
    color: #fff !important;
    border-radius: 8px;
    padding: 12px 20px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

button:hover,
.zs-button:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, #007f5f, #005f46);
    transform: scale(1.03);
}

/* ====== HEADER (TOPO) ====== */
header,
.zs-header {
    background-color: #0a2540 !important;
}

header a {
    color: #ffffff !important;
}

/* ====== MENU ====== */
.zs-menu a {
    color: #ffffff !important;
    font-weight: 600;
}

.zs-menu a:hover {
    color: #00ffb3 !important;
}

/* ====== SEÇÕES ====== */
section {
    padding: 60px 20px;
}

/* ====== CARDS ====== */
.zs-card,
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 20px;
    transition: 0.3s;
}

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

/* ====== DESTAQUE (PLANOS, ETC) ====== */
.highlight,
.destaque {
    background: linear-gradient(135deg, #0a2540, #0d3b66);
    color: #ffffff;
    border-radius: 12px;
    padding: 30px;
}

/* ====== FOOTER ====== */
footer {
    background: #0a2540;
    color: #ffffff;
    padding: 40px 20px;
}

footer a {
    color: #00ffb3;
}

/* ====== INPUTS ====== */
input, textarea {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px;
}

input:focus, textarea:focus {
    border-color: #00a86b;
    outline: none;
}

/* ====== WHATSAPP BOTÃO (SE TIVER) ====== */
.whatsapp-btn {
    background: #00a86b;
    color: #fff;
    border-radius: 50px;
    padding: 12px 18px;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    section {
        padding: 40px 15px;
    }
}