/* ============================================
   Alturas e Pesos - Styles
   Catalogo de Celebridades
   Paleta: Roxo, Rosa, Escuro
   ============================================ */

:root {
    --primary: #7c3aed;
    --primary-light: #8b5cf6;
    --primary-dark: #6d28d9;
    --accent: #ec4899;
    --accent-dark: #db2777;
    --accent-light: #f472b6;
    --dark: #1e1b4b;
    --dark-light: #312e81;
    --dark-mid: #1e1b4b;
    --white: #ffffff;
    --gray-50: #faf5ff;
    --gray-100: #f3e8ff;
    --gray-200: #e9d5ff;
    --gray-300: #d8b4fe;
    --gray-400: #a78bfa;
    --gray-500: #7c3aed;
    --gray-600: #6d28d9;
    --gray-700: #4c1d95;
    --gray-800: #2e1065;
    --gray-900: #1e1b4b;
    --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 70%, #1e1b4b 100%);
    --shadow-sm: 0 2px 10px rgba(124, 58, 237, 0.1);
    --shadow-md: 0 6px 24px rgba(124, 58, 237, 0.15);
    --shadow-lg: 0 12px 40px rgba(124, 58, 237, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--gray-200);
    line-height: 1.75;
    overflow-x: hidden;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* --- Header --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(30, 27, 75, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    transition: var(--transition);
}

#main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}

.logo-accent {
    color: var(--accent);
    font-style: italic;
}

.logo:hover {
    opacity: 0.9;
    color: var(--white);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--white);
}

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(236, 72, 153, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 75% 60%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 35%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--gray-300);
    line-height: 1.85;
    max-width: 700px;
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: rgba(49, 46, 129, 0.3);
}

.section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.8vw, 2.2rem);
    color: var(--white);
    margin-bottom: 40px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
}

/* --- Content --- */
.content-block {
    max-width: 800px;
}

.content-block p {
    margin-bottom: 20px;
    color: var(--gray-200);
    line-height: 1.85;
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent-light);
    margin-top: 36px;
    margin-bottom: 12px;
}

/* --- Categories Grid --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    padding: 32px 24px;
    background: rgba(49, 46, 129, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    background: rgba(49, 46, 129, 0.6);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
}

.category-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--gray-300);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* --- Footer --- */
#main-footer {
    background: var(--dark);
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    color: var(--gray-300);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-col .logo-text {
    font-size: 1.4rem;
}

.footer-col > p {
    margin-top: 12px;
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    #main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(30, 27, 75, 0.97);
        backdrop-filter: blur(18px);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    }

    #main-nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 24px 20px;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    }

    .nav-list a {
        display: block;
        padding: 14px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .section {
        padding: 56px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* --- Animations --- */
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
