:root {
    --primary-dark: #1b2620;
    --primary-light: #2d3e33;
    --accent: #ffb703;
    --btn-green: #00A859;
    --text-color: #333;
    --white: #ffffff;
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.08);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
}

body { 
    background-color: #f8fafc; 
    color: var(--text-color); 
    overflow-x: hidden;
}

/* =========================================
   HEADER (MENU) TRANSPARENTE
   (Para ficar em cima do fundo verde do Hero)
   ========================================= */
header {
    background: transparent; /* Fundo transparente */
    position: absolute; /* Flutua sobre o banner */
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 20px 8%;
}

.header-top { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 15px; 
}

.logo { 
    font-size: 28px; 
    font-weight: 800; 
    letter-spacing: -1px; 
    color: white; 
}
.logo span { color: var(--accent); }

.search-container { 
    display: flex; 
    background: rgba(255, 255, 255, 0.15); /* Vidro translúcido */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px; 
    width: 40%; 
}
.search-container input { 
    background: transparent;
    border: none; 
    padding: 12px 20px; 
    width: 100%; 
    outline: none; 
    color: white; 
}
.search-container input::placeholder { color: rgba(255,255,255,0.7); }
.search-container button { 
    background: var(--accent); 
    border: none; 
    color: var(--primary-dark); 
    padding: 0 20px; 
    border-radius: 0 30px 30px 0;
    cursor: pointer; 
    transition: 0.3s; 
}
.search-container button:hover { background: #ffc800; }

.header-right { display: flex; align-items: center; gap: 20px; color: white; font-weight: 600; }
.contact i { color: var(--accent); margin-right: 5px; }

.status-btn { 
    background: rgba(255,255,255,0.2); 
    color: white; 
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 25px; 
    border-radius: 25px; 
    font-weight: bold; 
    cursor: pointer;
    transition: 0.3s;
}
.status-btn:hover { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }

nav ul { display: flex; justify-content: center; list-style: none; gap: 30px; }
nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--accent); }
nav a.active { border-bottom: 3px solid var(--accent); padding-bottom: 5px; }


/* =========================================
   HERO SECTION (BANNER GIGANTE E CURVO)
   ========================================= */
.hero { 
    /* O gradiente agora fica AQUI, cobrindo tudo */
    background: radial-gradient(circle at 70% 50%, #2d3e33, #1b2620);
    display: flex; 
    align-items: center; 
    /* Espaço extra no topo por causa do menu absoluto */
    padding: 140px 10% 120px; 
    justify-content: space-between; 
    gap: 50px; 
    min-height: 650px;
    position: relative;
    /* A CURVA MÁGICA NO FINAL */
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-text { flex: 1; z-index: 2; }

.hero-text h1 { 
    font-size: 4.5rem; 
    color: white; 
    line-height: 1.05; 
    margin-bottom: 25px; 
    font-weight: 900; 
    letter-spacing: -2px;
}

.hero-text p { 
    color: rgba(255, 255, 255, 0.85); 
    margin-bottom: 40px; 
    max-width: 500px; 
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-button { 
    background: var(--accent); 
    border: none; 
    padding: 20px 50px; 
    border-radius: 50px; 
    font-weight: 800; 
    font-size: 1.2rem;
    color: var(--primary-dark);
    cursor: pointer; 
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 183, 3, 0.3);
}

.cta-button:hover { 
    transform: translateY(-5px) scale(1.05); 
    box-shadow: 0 25px 60px rgba(255, 183, 3, 0.5); 
    background: #ffc300;
}

/* Imagem Flutuante 3D */
.hero-img-box { position: relative; animation: float 6s ease-in-out infinite; }
.hero-img-box img { 
    width: 480px; 
    height: 480px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 20px solid rgba(255,255,255,0.03); 
    box-shadow: 0 30px 80px rgba(0,0,0,0.6); 
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* =========================================
   CARDS QUE ENTRAM NA CURVA
   ========================================= */
.categories { 
    padding: 0 8% 80px; /* Remove padding top para subir */
    text-align: center; 
    margin-top: -60px; /* Faz os cards subirem por cima da curva do banner */
    position: relative;
    z-index: 5;
}

.categories h2 { 
    font-size: 2.5rem; 
    margin-bottom: 60px; 
    color: var(--primary-dark); 
    font-weight: 800; 
    /* Esconde o título visualmente aqui ou ajusta margin se quiser mostrar */
    display: none; 
}

.grid-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.card-item {
    background: white;
    border-radius: 35px;
    padding-bottom: 25px;
    box-shadow: var(--shadow-soft);
    transition: 0.4s ease;
}
.card-item:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }

.image-wrapper { height: 260px; border-radius: 35px; overflow: hidden; margin: 10px; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card-item:hover .image-wrapper img { transform: scale(1.1); }

.card-content { margin-top: -45px; display: flex; flex-direction: column; align-items: center; position: relative; }

.floating-icon {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.card-item:hover .floating-icon { background: var(--accent); color: var(--primary-dark); transform: rotate(-10deg) scale(1.1); }

.card-content h3 { margin: 15px 0 10px; font-weight: 800; font-size: 20px; color: var(--primary-dark); }
.card-btn { 
    background: var(--btn-green); 
    color: white; 
    border: none; 
    padding: 10px 30px; 
    border-radius: 12px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: 0.3s; 
}
.card-btn:hover { background: #008f4c; box-shadow: 0 10px 20px rgba(0,168,89,0.3); }

/* =========================================
   MARCAS E FOOTER
   ========================================= */
.brands-bar { padding: 80px 8%; text-align: center; background: white; margin-top: 50px; }
.brands-bar h3 { color: #999; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 40px; }
.brands-flex { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.brands-flex img { height: 45px; filter: grayscale(100%); opacity: 0.5; transition: 0.4s; }
.brands-flex img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

footer {
    background: var(--primary-dark);
    color: #a0b0a5;
    padding: 80px 8% 40px;
    text-align: center;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    margin-top: 80px;
}
.studio-tag { margin-top: 40px; color: white; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; font-size: 0.9rem; opacity: 0.8; }

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .hero-text h1 { font-size: 3.5rem; }
    .hero-img-box img { width: 380px; height: 380px; }
}
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .categories { margin-top: -30px; }
    .search-container { width: 100%; margin-bottom: 20px; }
    .header-top { flex-direction: column; }
    .header-right { display: none; } /* Simplifica no mobile */
}