@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --secondary: #1a1a1a;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --border: #dfe6e9;
    --whatsapp: #25D366;
    --onovo-gold: #c5a059;
    --onovo-teal: #4D8885;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ... rest of previous styles ... */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
#navbar { background: var(--white); padding: 15px 0; box-shadow: 0 2px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; }

/* Floating Combo (WhatsApp + Plus) */
.floating-combo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999; /* Garantir que fique por cima de tudo */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.wpp-btn-float {
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

.wpp-btn-float .badge {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #ff6b00; /* Orange badge like print */
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.plus-btn-float {
    width: 55px;
    height: 55px;
    background: var(--onovo-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
    text-decoration: none;
    transition: var(--transition);
}

.wpp-btn-float:hover, .plus-btn-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-combo { bottom: 20px; right: 20px; }
    .wpp-btn-float { width: 55px; height: 55px; font-size: 1.8rem; }
    .plus-btn-float { width: 50px; height: 50px; font-size: 1.5rem; }
}

/* Redefining styles for other elements to keep them working */
.portal-header { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); padding: 100px 0 140px; text-align: center; color: #fff; }
.portal-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; padding: 60px 0 100px; }
.project-card { background: var(--white); border-radius: 12px; overflow: hidden; transition: var(--transition); border: 1px solid var(--border); display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.project-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--primary); }
.project-img { width: 100%; height: 240px; overflow: hidden; position: relative; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-card:hover .project-img img { transform: scale(1.1); }
.project-badge { position: absolute; top: 15px; left: 15px; background: var(--primary); color: #fff; padding: 5px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; }
.project-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.project-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.project-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.project-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 20px; }
.project-price { font-weight: 800; font-size: 1.3rem; color: var(--primary); }
.btn-primary { background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.btn-outline { border: 1px solid var(--border); padding: 8px 16px; border-radius: 6px; text-decoration: none; font-size: 0.9rem; }
