/* =============================================
   DAMATHE — site.css
   Harmonizado com produto.css e admin.css
   ============================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: #000; color: #fff; font-family: 'Quicksand', sans-serif; }

/* =============================================
   NAVBAR — idêntica ao produto.css e admin.css
   ============================================= */

.header {
    background-color: #000000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo2 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #b5386d;
}

.header nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header nav a {
    color: #b5386d;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 7px 14px;
    border-radius: 20px;
    transition: 0.25s;
}

.header nav a:hover,
.header nav a.active {
    background: rgba(0, 0, 0, 0.22);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =============================================
   HERO
   ============================================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 5%;
    background: linear-gradient(180deg, #000 0%, #1a0811 100%);
    min-height: 80vh;
}

.hero-label {
    display: inline-block;
    color: #ff8ab4;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-left { max-width: 560px; }

.hero-left h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.hero-left h1 .highlight { color: #ff8ab4; }

.hero-left p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

.hero-left button {
    background: linear-gradient(135deg, #ff8ab4, #b5386d);
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.hero-left button:hover { opacity: 0.88; transform: translateY(-2px); }

/* Blob decorativo */
.hero-right { flex-shrink: 0; }

.hero-blob {
    width: 240px;
    height: 240px;
    border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
    background: #0c0c0c;
    border: 1px solid #b5386d;
    box-shadow: 0 0 40px rgba(181, 56, 109, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blob-pulse 6s ease-in-out infinite;
}

.blob-inner { text-align: center; }

.blob-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.blob-inner p {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff8ab4;
}

@keyframes blob-pulse {
    0%, 100% { border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%; }
    33%       { border-radius: 45% 55% 40% 60% / 60% 40% 60% 40%; }
    66%       { border-radius: 55% 45% 60% 40% / 40% 55% 45% 55%; }
}

/* =============================================
   LOGO MARQUEE — mantido igual ao original
   ============================================= */

.logo-loop {
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    background: #000;
    padding: 18px 0;
}

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll-reverse 30s linear infinite;
}

.logo-track img {
    height: 70px;
    margin: 0 40px;
    opacity: 0.55;
    transition: opacity 0.3s;
}

.logo-track img:hover { opacity: 1; }

@keyframes scroll-reverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* =============================================
   PRODUTOS — cards idênticos ao produto.css
   ============================================= */

.produtos {
    padding: 70px 5%;
    background: linear-gradient(180deg, #1a0811 0%, #000 100%);
    text-align: center;
}

.section-header { margin-bottom: 40px; }

.section-tag {
    display: inline-block;
    color: #ff8ab4;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.produtos h2 {
    color: #ff8ab4;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-sub {
    color: #555;
    font-size: 0.92rem;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Card — idêntico ao .card do produto.css */
.produto {
    background-color: #0c0c0c;
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.produto:hover {
    border-color: #ff8ab4;
    transform: translateY(-5px);
    box-shadow: 0 0 24px rgba(255, 138, 180, 0.1);
}

.produto-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    transition: transform 0.4s ease;
}

.produto:hover .produto-img-wrap img { transform: scale(1.05); }

.produto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(181, 56, 109, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.produto:hover .produto-overlay { opacity: 1; }

.produto p {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    padding: 16px;
    text-align: left;
}

/* Botão ver todos — mesmo gradiente do btn-primario */
.btn-center {
    display: inline-block;
    padding: 13px 36px;
    background: linear-gradient(135deg, #ff8ab4, #b5386d);
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.25s;
}

.btn-center:hover { opacity: 0.88; transform: translateY(-2px); }

/* =============================================
   FOOTER
   ============================================= */

footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    color: #444;
    text-align: center;
    padding: 24px 20px;
    font-size: 0.88rem;
}

/* =============================================
   RESPONSIVO
   ============================================= */

@media (max-width: 860px) {
    .hero {
        flex-direction: column;
        padding: 60px 5% 50px;
        text-align: center;
        min-height: auto;
    }
    .hero-left { max-width: 100%; }
}

@media (max-width: 640px) {
    .header nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; left: 0; right: 0;
        background: #b5386d;
        padding: 16px 5%;
        z-index: 999;
    }
    .header nav.aberto { display: flex; }
    .nav-toggle { display: block; }
    .produtos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
    .produtos-grid { grid-template-columns: 1fr; }
}