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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

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

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 40px 20px;
}

.hero-content .logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-gold {
    background: #C9A84C;
    color: #000;
}

.btn-gold:hover {
    background: #b8963f;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #C9A84C;
    color: #C9A84C;
    background: transparent;
}

.btn-outline:hover {
    background: #C9A84C;
    color: #000;
}

.btn-whatsapp-float {
    background: #25D366;
    color: #fff;
    margin: 40px auto;
    display: block;
    max-width: 300px;
    text-align: center;
}

.btn-whatsapp-float:hover {
    background: #1da851;
}

/* PLANOS */
.planos {
    padding: 80px 0;
    background: #000;
}

.section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    text-transform: uppercase;
}

.unidade {
    margin-bottom: 60px;
}

.unidade-titulo {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 30px;
    color: #C9A84C;
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #C9A84C;
    transform: translateY(-5px);
}

.card.destaque {
    border: 2px solid #C9A84C;
    background: linear-gradient(135deg, #1a1510 0%, #111 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #C9A84C;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.preco {
    font-size: 2.5rem;
    font-weight: 800;
    color: #C9A84C;
    margin-bottom: 20px;
}

.preco span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
}

.card .btn {
    width: 100%;
    padding: 14px;
}

/* UNIDADES */
.unidades {
    padding: 60px 0;
    background: #111;
}

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

.card-unidade {
    background: #000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.card-unidade h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #C9A84C;
}

.card-unidade p {
    margin-bottom: 8px;
    color: #ccc;
}

.horario {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.link {
    color: #C9A84C;
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    padding: 40px 0;
    background: #000;
    border-top: 1px solid #222;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer p {
    color: #888;
    font-size: 0.9rem;
}

.whatsapp-btn {
    color: #25D366;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.whatsapp-btn:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
