
:root {
    --verde-escuro: #2f6b3c;
    --verde-medio: #4f8f4a;
    --verde-claro: #8bc34a;
    --cinza-claro: #f5f5f5;
    --cinza-texto: #444;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, sans-serif; }
body { color: var(--cinza-texto); line-height: 1.6; }

header {
    position: fixed; top: 0; width: 100%; background: #fff;
    border-bottom: 1px solid #ddd; z-index: 1000;
}

nav {
    max-width: 1200px; margin: auto; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
}

nav ul { list-style: none; display: flex; gap: 20px; }
nav a { text-decoration: none; color: var(--verde-escuro); font-weight: 600; }
nav a:hover { color: var(--verde-claro); }
nav img {width: 10%;}

section { max-width: 1200px; margin: auto; padding: 110px 20px 90px; }

/* HERO */
.hero {
    background: linear-gradient(rgba(47,107,60,0.50), rgba(47,107,60,0.50)), url('../img/FanPage.jpg') center/cover;
    /* background: linear-gradient(rgba(47,107,60,0.85), rgba(47,107,60,0.85)), url('../img/FanPage.jpg') center/cover; */
    color: white; text-align: center; padding: 180px 20px 140px;
}

.hero img { max-width: 260px; margin-bottom: 20px; animation: fadeDown 1.2s ease; }
.hero h1 { font-size: 2.6rem; margin-bottom: 15px; animation: fadeUp 1s ease; }
.hero p { font-size: 1.25rem; max-width: 760px; margin: auto; animation: fadeUp 1.4s ease; }

.cta {
    margin-top: 35px; display: inline-block;
    background: var(--verde-claro); color: #1f3b23;
    padding: 15px 30px; border-radius: 30px;
    font-weight: bold; text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

h2 { color: var(--verde-escuro); margin-bottom: 30px; font-size: 2.2rem; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }

.card {
    background: var(--cinza-claro); padding: 30px; border-radius: 12px;
    text-align: center; transition: transform 0.3s, box-shadow 0.3s;
    color: #1f3b23;
    text-decoration: none;
}

.card i { font-size: 2.2rem; color: var(--verde-medio); margin-bottom: 15px; }
.card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }

table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 15px; border: 1px solid #ddd; }
table th { background: var(--verde-escuro); color: white; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

form input, form textarea, form button {
    width: 100%; padding: 14px; margin-bottom: 15px;
}

form button {
    background: var(--verde-escuro); color: white;
    border: none; border-radius: 6px; cursor: pointer;
}

.faq details { background: var(--cinza-claro); padding: 20px; margin-bottom: 15px; border-radius: 10px; }

footer { background: var(--verde-escuro); color: white; text-align: center; padding: 25px; }

/* WhatsApp Floating */
.whatsapp {
    position: fixed; bottom: 25px; right: 25px;
    background: #25D366; color: white;
    width: 60px; height: 60px;
    border-radius: 50%; display: flex;
    justify-content: center; align-items: center;
    font-size: 30px; text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 2000;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .contact { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
}
/* ===== TABELA DE VALORES / PRICING ===== */
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
margin-top: 40px;
}

.price-card {
background: #ffffff;
border-radius: 16px;
padding: 28px 24px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-top: 6px solid #2f6b3f;
}

.price-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.price-card.highlight {
border-top-color: #7cc043;
background: linear-gradient(180deg, #f4fbf6 0%, #ffffff 100%);
}

.price-card h3 {
font-size: 1.25rem;
margin-bottom: 12px;
color: #2f6b3f;
}

.price-card .price {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 16px;
color: #1f3d2b;
}

.price-card ul {
list-style: none;
padding: 0;
margin: 0 0 20px 0;
}

.price-card ul li {
position: relative;
padding-left: 26px;
margin-bottom: 10px;
font-size: 0.95rem;
color: #444;
}

.price-card ul li::before {
content: "058";
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
left: 0;
top: 0;
color: #7cc043;
}

.price-card .btn {
display: inline-block;
padding: 12px 20px;
background: #2f6b3f;
color: #ffffff;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
transition: background 0.3s ease, transform 0.2s ease;
}

.price-card .btn:hover {
background: #7cc043;
transform: scale(1.05);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
.price-card {
padding: 22px 18px;
}
}

/* ===== ANIMAÇÕES COM INTERSECTION OBSERVER ===== */
.fade-in {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
