/* --- Playful Theme CSS (Model 3) --- */
:root {
    --primary: #FF7B89; /* Coral/Pink */
    --secondary: #FFD166; /* Yellow */
    --tertiary: #118AB2; /* Blue */
    --quaternary: #06D6A0; /* Mint Green */
    
    --bg-light: #F8F9FA;
    --text-dark: #2B2D42;
    --text-muted: #5C677D;
    
    --font-main: 'Nunito', sans-serif;
    
    /* Playful neo-brutalism borders and shadows */
    --border-thick: 4px solid var(--text-dark);
    --shadow-solid: 6px 6px 0px var(--text-dark);
    --shadow-solid-hover: 2px 2px 0px var(--text-dark);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.mt-4 { margin-top: 30px; }

/* --- Buttons --- */
.btn-fun {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--secondary);
    color: var(--text-dark);
    font-weight: 800;
    border: var(--border-thick);
    border-radius: 50px;
    box-shadow: var(--shadow-solid);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-fun:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--shadow-solid-hover);
}

.btn-large { padding: 15px 30px; font-size: 1.2rem; }
.btn-small { padding: 10px 20px; font-size: 1rem; }

/* --- Playful Header --- */
.playful-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: white;
    border-bottom: var(--border-thick);
    z-index: 1000;
    padding: 15px 0;
    transition: 0.3s;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap img { height: 45px; }

.playful-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 4px;
    background: var(--primary);
    border-radius: 4px;
    transition: 0.3s;
}

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

.menu-btn {
    display: none;
    background: var(--secondary);
    border: var(--border-thick);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--text-dark);
}

/* --- Hero Section --- */
.hero-playful {
    padding-top: 150px;
    background-color: #E0FBFC; /* Very light blue */
    position: relative;
    padding-bottom: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tag-fun {
    display: inline-block;
    background: white;
    border: var(--border-thick);
    border-radius: 30px;
    padding: 8px 16px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0 var(--primary);
}

.title-fun {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.title-fun span {
    color: var(--primary);
    position: relative;
}

.subtitle-fun {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-fun {
    position: relative;
}

.blob-mask {
    border: var(--border-thick);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    box-shadow: 10px 10px 0 var(--tertiary);
    background: var(--secondary);
    animation: morph 8s ease-in-out infinite;
}

.blob-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.decor {
    position: absolute;
    background: white;
    border: var(--border-thick);
    border-radius: 50px;
    box-shadow: 4px 4px 0 var(--text-dark);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 3s infinite ease-in-out alternate;
}

.decor-1 { top: -20px; left: -20px; width: 60px; height: 60px; font-size: 2rem; color: #F27059; }
.decor-2 { bottom: 40px; right: -20px; width: 60px; height: 60px; font-size: 2rem; color: var(--secondary); animation-delay: 1s; }
.decor-3 { bottom: -30px; left: 20px; padding: 10px 20px; background: var(--quaternary); }

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* SVG Waves */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.wave-bottom .shape-fill { fill: var(--bg-light); }
.wave-white .shape-fill { fill: white; }

/* --- Journey (Como Funciona) --- */
.journey-section { padding: 100px 0; background: var(--bg-light); position: relative; }
.center-title { text-align: center; margin-bottom: 60px; }
.center-title h2 { font-size: 2.8rem; margin-bottom: 10px; }
.center-title p { font-size: 1.2rem; font-weight: 600; color: var(--text-muted); }

.cards-fun {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-fun {
    background: white;
    border: var(--border-thick);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-solid);
    position: relative;
}

.card-icon {
    width: 60px; height: 60px;
    background: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 20px;
    position: absolute;
    top: -30px; left: 50%; transform: translateX(-50%);
    border: var(--border-thick);
}

.card-fun.blue .card-icon { background: var(--tertiary); }
.card-fun.yellow .card-icon { background: var(--secondary); color: var(--text-dark); }
.card-fun.pink .card-icon { background: var(--primary); }

.card-fun h3 { font-size: 1.5rem; margin-bottom: 15px; }
.card-fun p { font-weight: 600; color: var(--text-muted); }

.bounce-hover:hover {
    transform: translateY(-10px);
    transition: 0.3s;
}

/* --- Services (Aventuras) --- */
.services-fun { padding: 100px 0; background: white; }

.grid-fun {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-bubble {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-light);
    border: var(--border-thick);
    border-radius: 100px;
    padding: 20px;
    box-shadow: var(--shadow-solid);
    transition: 0.3s;
}

.service-bubble:hover {
    transform: translate(5px, 5px);
    box-shadow: 2px 2px 0 var(--text-dark);
}

.img-bubble {
    width: 120px; height: 120px;
    border-radius: 50%;
    border: var(--border-thick);
    overflow: hidden;
    flex-shrink: 0;
}

.img-bubble img { width: 100%; height: 100%; object-fit: cover; }
.bubble-text h3 { font-size: 1.4rem; margin-bottom: 8px; }
.bubble-text p { font-weight: 600; font-size: 0.95rem; color: var(--text-muted); }

/* --- About (Quem Sou Eu) --- */
.about-fun { padding: 100px 0; background: #FFF3B0; }
.about-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.about-photo-wrap {
    position: relative;
    border: var(--border-thick);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 15px 15px 0 var(--primary);
    background: white;
}

.about-photo { width: 100%; }

.sticker {
    position: absolute;
    background: white;
    border: var(--border-thick);
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 4px 4px 0 var(--text-dark);
    transform: rotate(-10deg);
}

.sticker-1 { top: 20px; right: -20px; }

.about-text-wrap h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-text-wrap p { font-size: 1.15rem; font-weight: 600; margin-bottom: 20px; color: var(--text-dark); }

/* --- Footer --- */
.footer-fun {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo { filter: brightness(0) invert(1); height: 50px; margin-bottom: 20px; }
.brand-fun p { font-weight: 600; font-size: 1.1rem; max-width: 300px; margin-bottom: 20px; color: #ced4da; }

.socials-fun { display: flex; gap: 15px; }
.socials-fun a {
    width: 45px; height: 45px;
    background: var(--secondary);
    color: var(--text-dark);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    border: 2px solid white;
    transition: 0.3s;
}
.socials-fun a:hover { transform: translateY(-5px); background: var(--primary); color: white; }

.contact-fun h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--secondary); }
.contact-fun p { display: flex; align-items: center; gap: 10px; font-weight: 600; margin-bottom: 10px; font-size: 1.1rem; }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 2px dashed rgba(255,255,255,0.2);
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-grid, .about-wrap { grid-template-columns: 1fr; text-align: center; }
    .hero-text-fun { order: 2; }
    .hero-image-fun { order: 1; max-width: 400px; margin: 0 auto 40px; }
    .cards-fun { grid-template-columns: 1fr; gap: 50px; }
    .grid-fun { grid-template-columns: 1fr; }
    .service-bubble { border-radius: 30px; flex-direction: column; text-align: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .socials-fun, .contact-fun p { justify-content: center; }
    .sticker-1 { display: none; }
}

@media (max-width: 768px) {
    .menu-btn { display: block; }
    .playful-nav {
        position: fixed;
        top: 75px; left: -100%;
        width: 100%; height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        border-right: var(--border-thick);
    }
    .playful-nav.active { left: 0; }
    .title-fun { font-size: 2.5rem; }
    .center-title h2 { font-size: 2.2rem; }
}
