/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cores baseadas na imagem do mascote */
:root {
    --primary-blue: #4A90E2;
    --secondary-blue: #6BB6FF;
    --orange: #FF8C42;
    --purple: #9B59B6;
    --green: #2ECC71;
    --pink: #E74C3C;
    --gradient-bg: linear-gradient(135deg, #4A90E2 0%, #9B59B6 50%, #FF8C42 100%);
    --gradient-card: linear-gradient(135deg, #6BB6FF 0%, #4A90E2 100%);
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.cta-button {
    background: var(--gradient-bg);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-btn {
    background: var(--gradient-bg);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Mascot Animation */
.mascot-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    z-index: 1;
    overflow: hidden;
}

.mascot-bg {
    position: absolute;
    width: 360px;
    height: 360px;
    background: var(--gradient-bg);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.mascot-character {
    width: 300px;
    height: 300px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mascot-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 2%;
    left: 14%;
    animation-delay: 2s;
}

.element-4 {
    bottom: -4%;
    left: 72%;
    animation-delay: 3s;
}

.element-5 {
    bottom: 80%;
    left: 74%;
    animation-delay: 4s;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 2;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-blue);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Zippy Section */
.zippy-section {
    padding: 6rem 0;
    background: white;
}

.zippy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zippy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.zippy-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.zippy-features {
    margin-bottom: 2rem;
}

.zippy-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-emoji {
    font-size: 1.5rem;
}

.zippy-quote {
    background: var(--gradient-bg);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

.mascot-large {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    overflow: hidden;
}

.mascot-bg-large {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--gradient-bg);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.mascot-character-large {
    width: 300px;
    height: 300px;
    animation: bounce 3s ease-in-out infinite;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-character-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

.accessories {
    position: absolute;
    width: 100%;
    height: 100%;
}

.headphones {
    position: absolute;
    top: 17%;
    left: 39%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

.sneakers {
    position: absolute;
    bottom: 12%;
    left: 30%;
    font-size: 2rem;
    animation: float 2.5s ease-in-out infinite;
}

.smartwatch {
    position: absolute;
    top: 40%;
    right: 20%;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-bg);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.cta-section .primary-btn {
    background: white;
    color: var(--primary-blue);
}

.cta-section .secondary-btn {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--orange);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        overflow: hidden;
        position: relative;
        z-index: 1;
        background: transparent;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-mascot {
        order: -1;
        margin-bottom: 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .mascot-container {
        height: 250px;
        margin-bottom: 2rem;
        overflow: visible;
        position: relative;
        z-index: 1;
    }

    .mascot-bg {
        width: 240px;
        height: 240px;
    }

    .mascot-character {
        width: 216px;
        height: 216px;
    }

    .mascot-large {
        height: 300px;
        padding: 0 20px;
    }

    .mascot-bg-large {
        width: 250px;
        height: 250px;
    }

    .mascot-character-large {
        width: 220px;
        height: 220px;
    }

    .accessories .headphones,
    .accessories .sneakers {
        font-size: 1.5rem;
    }

    .accessories .smartwatch {
        font-size: 1.2rem;
    }

    .about {
        padding-top: calc(6rem - 30px);
    }

    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .zippy-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .zippy-section {
        padding: 4rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 3rem;
        overflow: hidden;
        position: relative;
        z-index: 1;
        background: transparent;
    }

    .hero-content {
        gap: 0.25rem;
    }

    .mascot-container {
        height: 200px;
        margin-bottom: 1rem;
        overflow: visible;
        position: relative;
        z-index: 1;
    }

    .mascot-bg {
        width: 180px;
        height: 180px;
    }

    .mascot-character {
        width: 168px;
        height: 168px;
    }

    .floating-elements .element {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .mascot-large {
        height: 250px;
        padding: 0 10px;
    }

    .mascot-bg-large {
        width: 200px;
        height: 200px;
    }

    .mascot-character-large {
        width: 180px;
        height: 180px;
    }

    .accessories .headphones,
    .accessories .sneakers {
        font-size: 1.2rem;
    }

    .accessories .smartwatch {
        font-size: 1rem;
    }

    .zippy-text h2 {
        font-size: 2rem;
    }

    .about {
        padding-top: calc(6rem - 30px);
    }

    .zippy-intro {
        font-size: 1rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4A90E2 0%, #9B59B6 50%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 10px;
}

.legal-subtitle {
    font-size: 1rem;
    color: #4A90E2;
    font-weight: 500;
}

.legal-body {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #4A90E2;
    display: inline-block;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 25px 0 15px 0;
}

.legal-section p {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #6BB6FF;
    text-decoration: underline;
}

.legal-section strong {
    color: #2C3E50;
    font-weight: 600;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .legal-header {
        margin-bottom: 40px;
        padding: 30px 20px;
    }

    .legal-header h1 {
        font-size: 2.2rem;
    }

    .legal-body {
        padding: 30px 20px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-body {
        padding: 20px 15px;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-bg);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Command Inline Styles - Discreto */
.command-inline {
    color: rgba(74, 144, 226, 0.8);
    font-weight: 600;
    font-size: 1.2em;
}

/* Responsive How It Works */
@media (max-width: 768px) {
    .how-it-works {
        padding: 4rem 0;
    }

    .how-it-works h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works h2 {
        font-size: 1.8rem;
    }

    .step-card {
        padding: 1rem;
    }
}
