/* Portal da Zoezinha Styling */
:root {
    --primary-pink: #FF4DA6;
    --secondary-pink: #FF85C1;
    --dark-purple: #1A0B2E;
    --bg-dark: #0F041C;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #FFFFFF;
    --text-gray: #BDBDBD;
}

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

body {
    font-family: 'Fredoka', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #2A0E4A 0%, #0F041C 70%);
    scroll-behavior: smooth;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* Loader */
.loader-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark); display: flex; justify-content: center; align-items: center;
    z-index: 10000; transition: opacity 0.5s;
}
.loader-content { text-align: center; }
.loader-logo { height: 180px; margin-bottom: 20px; mix-blend-mode: screen; animation: pulse 2s infinite alternate; }
.star { font-size: 50px; animation: pulse 1s infinite alternate; margin-bottom: 10px; display: inline-block; }
@keyframes pulse { from { transform: scale(1); opacity: 0.5; } to { transform: scale(1.1); opacity: 1; } }

/* Navigation */
header { padding: 20px 40px; position: absolute; width: 100%; z-index: 1000; }
nav {
    max-width: 1600px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(20, 5, 40, 0.6); backdrop-filter: blur(15px);
    padding: 10px 30px; border-radius: 50px; border: 1px solid var(--glass-border);
}
.main-logo { height: 120px; mix-blend-mode: screen; transition: 0.3s; }
.main-logo:hover { transform: scale(1.05); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
    text-decoration: none; color: var(--text-white);
    font-weight: 500; font-size: 16px; opacity: 0.8; transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--primary-pink); }
.btn-area-zoe {
    background: linear-gradient(90deg, #FF4DA6, #FF2B6D);
    color: white; text-decoration: none; padding: 12px 25px; border-radius: 50px;
    font-weight: 700; font-size: 14px; box-shadow: 0 5px 15px rgba(255, 77, 166, 0.4);
}

/* Hero Section */
.hero { padding: 180px 40px 100px; min-height: 90vh; }
.hero-container { display: flex; align-items: center; max-width: 1400px; margin: 0 auto; }
.hero-content { flex: 1; z-index: 2; }
.main-title { margin-bottom: 25px; }
.hero-logo { width: 100%; max-width: 450px; mix-blend-mode: screen; filter: drop-shadow(0 10px 30px rgba(255, 77, 166, 0.2)); }
.main-title span { color: var(--primary-pink); display: block; }
.welcome-text { font-size: 24px; color: var(--primary-pink); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; }
.hero-description { font-size: 22px; line-height: 1.6; color: var(--text-gray); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 20px; }
.btn-primary {
    background: linear-gradient(90deg, #FF4DA6, #FF2B6D);
    color: white; text-decoration: none; padding: 22px 45px; border-radius: 50px;
    font-weight: 700; font-size: 20px; box-shadow: 0 10px 30px rgba(255, 77, 166, 0.4); transition: 0.3s;
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.1); color: white; border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 45px; border-radius: 50px; font-weight: 700; font-size: 20px; cursor: pointer; transition: 0.3s;
}
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-5px); }
.hero-visual { flex: 1.2; position: relative; }
.floating-airplane { width: 120%; animation: floating 6s ease-in-out infinite; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }
@keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

/* Universe Cards */
.universe-grid { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; }
.universe-card {
    min-width: 280px; background: var(--glass-bg);
    border: 1px solid var(--glass-border); border-radius: 30px;
    padding: 15px; cursor: pointer; transition: 0.3s;
}
.universe-card:hover { border-color: var(--primary-pink); transform: translateY(-8px); background: rgba(255, 255, 255, 0.08); }
.card-img-container { width: 100%; height: 180px; border-radius: 20px; overflow: hidden; margin-bottom: 15px; }
.card-img-container img { width: 100%; height: 100%; object-fit: cover; }
.card-info h4 { font-size: 22px; margin-bottom: 5px; }
.card-info p { font-size: 14px; color: var(--text-gray); }

/* Highlights */
.highlights-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.highlight-card { position: relative; border-radius: 35px; overflow: hidden; border: 1px solid var(--glass-border); cursor: pointer; }
.highlight-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.highlight-card.big { height: 500px; }
.highlight-side-grid { display: flex; flex-direction: column; gap: 30px; }
.highlight-card.mini { height: 235px; }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 35px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); }
.badge { background: var(--primary-pink); padding: 6px 15px; border-radius: 10px; font-size: 13px; font-weight: 700; margin-bottom: 12px; display: inline-block; }
.btn-read { background: white; color: var(--bg-dark); border: none; padding: 12px 25px; border-radius: 50px; font-weight: 700; margin-top: 15px; cursor: pointer; }

/* Dynamic Content */
.dynamic-section { padding: 100px 0; background: rgba(0,0,0,0.4); border-top: 1px solid var(--glass-border); }
.content-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.btn-close { background: none; border: 1px solid var(--primary-pink); color: var(--primary-pink); padding: 10px 25px; border-radius: 50px; cursor: pointer; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); }
.modal-content { position: relative; max-width: 850px; margin: 40px auto; background: #150826; padding: 60px; border-radius: 45px; max-height: 85vh; overflow-y: auto; border: 2px solid var(--primary-pink); }
.close-modal { position: absolute; top: 25px; right: 35px; font-size: 35px; cursor: pointer; }

/* Music Player */
.music-player {
    position: fixed; bottom: 30px; right: 30px;
    width: 420px; background: rgba(25, 10, 45, 0.95);
    backdrop-filter: blur(20px); border-radius: 30px;
    padding: 22px; border: 1.5px solid var(--primary-pink);
    display: flex; align-items: center; gap: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    z-index: 1500; transform: translateY(200%); transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.music-player.active { transform: translateY(0); }
.player-info img { width: 55px; height: 55px; border-radius: 15px; }

/* Footer */
footer { padding: 80px 0 30px; background: #080210; border-top: 1px solid var(--glass-border); }
.footer-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 50px; justify-items: center; text-align: center; }
.footer-logo { height: 75px; margin-bottom: 25px; mix-blend-mode: screen; }
.footer-brand p { color: var(--text-gray); line-height: 1.6; }
.footer-nav h4, .footer-social h4 { font-size: 18px; margin-bottom: 25px; color: var(--primary-pink); }
.footer-nav ul { list-style: none; padding: 0; }
.footer-nav ul li { margin-bottom: 12px; }
.footer-nav ul li a { text-decoration: none; color: var(--text-gray); transition: 0.3s; }
.footer-nav ul li a:hover { color: var(--text-white); }
.social-icons { display: flex; gap: 15px; justify-content: center; }
.social-btn { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; }
.social-btn::before { content: ''; width: 20px; height: 20px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.social-btn.ig::before { background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z"/></svg>'); }
.social-btn.yt::before { background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg>'); }
.social-btn.tk::before { background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1-.1z"/></svg>'); }
.social-btn:hover { background: var(--primary-pink); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--glass-border); text-align: center; padding-top: 30px; color: var(--text-gray); font-size: 14px; }

/* Responsive Design for Mobile Devices */
@media (max-width: 900px) {
    /* Navigation */
    nav { flex-direction: column; gap: 15px; padding: 15px; border-radius: 20px; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .nav-links a { font-size: 14px; }
    
    /* Hero */
    .hero { padding: 180px 20px 50px; text-align: center; }
    .hero-container { flex-direction: column; gap: 40px; }
    .main-title { font-size: 55px; }
    .hero-description { font-size: 18px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 15px; }
    .btn-primary, .btn-secondary { width: 100%; padding: 18px; font-size: 18px; }
    .floating-airplane { width: 100%; animation: floating-mobile 6s ease-in-out infinite; }
    
    /* Universe Scroller */
    .universe-grid { padding-bottom: 30px; }
    .universe-card { min-width: 240px; }
    .card-img-container { height: 140px; }
    
    /* Highlights */
    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-card.big { height: 350px; }
    
    /* Dynamic Modal */
    .modal-content { padding: 30px; margin: 20px; border-radius: 25px; }
    .close-modal { top: 15px; right: 20px; font-size: 28px; }
    
    /* Footer */
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .social-icons { justify-content: center; }
    /* Subpages */
    .page-header { padding: 150px 20px 40px !important; }
    .page-title { font-size: 40px !important; }
}

@keyframes floating-mobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
