/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: 'Quicksand', sans-serif;
    color: #444;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== COLORS (from logo) ===== */
:root {
    --pink: #E8618C;
    --pink-light: #FFF0F5;
    --orange: #E8863A;
    --yellow: #F2C94C;
    --green: #5BBD8C;
    --blue: #5BA8D6;
    --brown: #C49A6C;
    --red: #E04F5F;
    --lilac: #B07CC6;
    --dark: #3A3A3A;
    --gray: #777;
    --light-bg: #FAFAFA;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}
.header.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px 30px 2px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img { height: 150px; }
.nav-menu {
    display: flex;
    gap: 5px;
}
.nav-link {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--pink);
    background: var(--pink-light);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/hero-bg.jpg') center center / cover no-repeat;
    text-align: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero-logo {
    width: 350px;
    margin-bottom: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}
.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: #E8618C;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-tagline {
    font-size: 1.15rem;
    color: #FFD6E3;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-beads {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 12px;
    z-index: 1;
}
.hero-beads span {
    font-size: 0.6rem;
    animation: bounce 1.5s ease-in-out infinite;
}
.hero-beads span:nth-child(1) { color: rgba(255,255,255,0.6); animation-delay: 0s; }
.hero-beads span:nth-child(2) { color: rgba(255,255,255,0.6); animation-delay: 0.1s; }
.hero-beads span:nth-child(3) { color: rgba(255,255,255,0.6); animation-delay: 0.2s; }
.hero-beads span:nth-child(4) { color: rgba(255,255,255,0.6); animation-delay: 0.3s; }
.hero-beads span:nth-child(5) { color: rgba(255,255,255,0.6); animation-delay: 0.4s; }
.hero-beads span:nth-child(6) { color: rgba(255,255,255,0.6); animation-delay: 0.5s; }
.hero-beads span:nth-child(7) { color: rgba(255,255,255,0.6); animation-delay: 0.6s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 97, 140, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 97, 140, 0.5);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; }
.section-container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pink);
    background: var(--pink-light);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}
.section-cta { text-align: center; margin-top: 40px; }

/* ===== PARA VOCÊ - PRODUCTS ===== */
.section-voce { background: var(--light-bg); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-image.pink { background: linear-gradient(135deg, #FFE4EC, #FFF0F5); }
.product-image.blue { background: linear-gradient(135deg, #E8F4FD, #F0F8FF); }
.product-image.yellow { background: linear-gradient(135deg, #FFF8E1, #FFFDE7); }
.product-image.green { background: linear-gradient(135deg, #E8F5E9, #F1F8E9); }
.product-emoji { font-size: 4rem; }
.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pink);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}
.product-tag.new { background: var(--green); }
.product-info {
    padding: 20px;
}
.product-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}
.product-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 10px;
}
.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pink);
}

/* ===== PARA EMPRESAS ===== */
.section-empresa { background: #fff; }
.empresa-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.empresa-text .section-title { text-align: left; }
.empresa-text .section-subtitle { margin: 0 0 30px; text-align: left; }
.empresa-text .section-badge { margin-bottom: 15px; }
.empresa-features {
    list-style: none;
    margin-bottom: 30px;
}
.empresa-features li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}
.empresa-features strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
}
.empresa-features p {
    font-size: 0.9rem;
    color: var(--gray);
}
.empresa-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.empresa-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.empresa-card:hover { transform: translateY(-3px); }
.empresa-card span { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.empresa-card h4 { font-size: 0.95rem; color: var(--dark); font-weight: 700; }
.card-1 { border: 2px solid #FFE4EC; }
.card-2 { border: 2px solid #E8F5E9; }
.card-3 { border: 2px solid #E8F4FD; }
.card-4 { border: 2px solid #FFF8E1; }

/* ===== SOBRE NÓS ===== */
.section-sobre { background: var(--light-bg); }
.sobre-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sobre-image img {
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}
.sobre-text .section-title { text-align: left; }
.sobre-text .section-badge { margin-bottom: 15px; }
.sobre-text p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 1rem;
}
.sobre-text strong { color: var(--pink); }
.sobre-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    justify-content: center;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

/* ===== CONTATO ===== */
.section-contato { background: #fff; }
.contato-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 750px;
    margin: 0 auto;
}
.contato-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 25px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.contato-card:hover {
    transform: translateY(-3px);
    border-color: var(--pink);
    box-shadow: 0 8px 25px rgba(232, 97, 140, 0.12);
}
.contato-icon { font-size: 2.5rem; margin-bottom: 12px; }
.contato-card h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 5px;
}
.contato-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--pink), #D4547A);
    color: #fff;
    padding: 60px 20px 30px;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo { height: 70px; margin-bottom: 15px; }
.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 300px;
}
.footer-links h4, .footer-social h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.footer-links a, .footer-social a {
    display: block;
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 8px;
    transition: opacity 0.3s;
}
.footer-links a:hover, .footer-social a:hover { opacity: 1; }
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-beads {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-beads span {
    font-size: 0.5rem;
    opacity: 0.5;
}
.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 5px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    .nav-menu.open { right: 0; }
    .nav-link { font-size: 1.1rem; padding: 12px 20px; }
    .nav-logo img { height: 110px; }
    .hero-logo { width: 250px; }
    .hero-title { font-size: 1.6rem; }
    .section { padding: 60px 20px; }
    .section-title { font-size: 1.6rem; }
    .empresa-layout,
    .sobre-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sobre-image { order: -1; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sobre-stats { flex-wrap: wrap; gap: 20px; }
    .empresa-text .section-title,
    .empresa-text .section-subtitle,
    .sobre-text .section-title {
        text-align: center;
    }
    .empresa-text .section-badge,
    .sobre-text .section-badge {
        display: block;
        text-align: center;
    }
    .empresa-features li { justify-content: center; }
    .empresa-text { text-align: center; }
    .empresa-text .btn { display: block; }
}
