/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1,
h2,
h3 {
    font-family: 'Fredoka One', cursive;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color: #34495e;
}

p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(12px, 3vw, 15px) clamp(24px, 4vw, 30px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background-color: #2980b9;
    color: #f8f9fa;
    border: 2px solid #3498db;
}

.btn-secondary:hover,
.btn-secondary:active {
    background: #3498db;
    color: white;
}

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

.navbar {
    padding: 0.8rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
}

.brand-name {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #3498db;
    text-decoration: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2rem);
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: clamp(100px, 15vw, 150px) 0 clamp(60px, 10vw, 100px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.highlight {
    color: #ffeaa7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    flex-direction: row;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transform: translateY(0);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

/* Features Section */
.features {
    padding: clamp(60px, 10vw, 80px) 0;
    background: #f8f9fa;
}

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

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin-bottom: 1rem;
    display: inline-block;
}

/* About Section */
.about {
    padding: clamp(60px, 10vw, 80px) 0;
}

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

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-text ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.about-text li {
    margin: 0.8rem 0;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    padding-left: 2rem;
    position: relative;
}

.about-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* How it Works Section */
.how-it-works {
    padding: clamp(60px, 10vw, 80px) 0;
    background: #f8f9fa;
}

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

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Gallery Section */
.gallery {
    padding: clamp(60px, 10vw, 80px) 0;
}

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item h3,
.gallery-item p {
    padding: 1rem 1rem 0.5rem;
}

.gallery-item p {
    padding-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

/* Download Section */
.download {
    padding: clamp(60px, 10vw, 80px) 0;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,100 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.download h2 {
    color: white;
    position: relative;
    z-index: 1;
}

.download p {
    opacity: 0.95;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin: 2rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-btn img {
    height: clamp(45px, 8vw, 60px);
    width: auto;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.download-info {
    margin-top: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.download-info ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.download-info li {
    margin: 0.5rem 0;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Contact Section */
.contact {
    padding: clamp(60px, 10vw, 80px) 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 767px) {
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.social-link {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
}

.social-link:hover {
    color: #2980b9;
    background: #f8f9fa;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: clamp(2rem, 5vw, 3rem) 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .footer-brand {
        flex-direction: row;
    }
}

.footer-logo {
    height: 48px;
   // width: 48px;
}

.footer-brand-name {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-links a:hover {
    opacity: 1;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu a::after {
        display: none;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
        max-width: 250px;
    }

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

    .contact-info p {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        min-width: 130px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .feature-card,
    .step,
    .gallery-item {
        padding: 1.5rem 1rem;
    }

    .hero-image img {
        max-width: 300px;
    }

    .social-link {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {

    .btn,
    .social-link,
    .gallery-item,
    .feature-card {
        cursor: default;
    }

    .btn:active,
    .social-link:active {
        transform: scale(0.98);
    }

    .feature-card:hover,
    .gallery-item:hover {
        transform: none;
    }

    .feature-card:active,
    .gallery-item:active {
        transform: scale(0.99);
    }
}

/* Prevent zoom on input focus for mobile */
@media (max-width: 768px) {

    input,
    select,
    textarea {
        font-size: 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Load animation delay for cards */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.3s;
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.social-link:focus,
.nav-menu a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    display: block;
    width: 100%;
    max-width: 420px;
    /* ajuste conforme seu design */
    height: auto;
    border-radius: 16px;
    /* opcional */
}

/* FAQ */
.faq {
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 18px;
}

.faq .faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

/* Se você usou class="faq-item" */
.faq .faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Summary como botão */
.faq .faq-item>summary {
    list-style: none;
    /* remove marker padrão */
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 700;
    color: #222;
}

/* Remove marker no Chrome/Safari */
.faq .faq-item>summary::-webkit-details-marker {
    display: none;
}

/* Ícone de expandir (criamos via CSS, sem mudar HTML) */
.faq .faq-item>summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(76, 175, 80, 0.14);
    color: #2e7d32;
    font-weight: 900;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

/* Quando abre, vira “x” (rotaciona o +) */
.faq .faq-item[open]>summary::after {
    transform: rotate(45deg);
    background: rgba(76, 175, 80, 0.22);
}

/* Conteúdo */
.faq .faq-item>p {
    margin: 0;
    padding: 0 18px 16px 18px;
    color: #555;
    line-height: 1.55;
}

/* Detalhe visual ao abrir */
.faq .faq-item[open]>summary {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Hover/Focus (melhora muito no desktop) */
.faq .faq-item>summary:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq .faq-item>summary:focus {
    outline: none;
}

.faq .faq-item>summary:focus-visible {
    outline: 3px solid rgba(76, 175, 80, 0.35);
    outline-offset: 2px;
}

/* ... todo seu CSS atual ... */

/* ========================================
   MENU DROPDOWN
   ======================================== */

/* Dropdown no menu */
.nav-menu li.dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 1000;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
}

.nav-menu .dropdown-menu li a:hover {
    background: #f5f5f5;
}

.nav-menu li.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile: dropdown inline */
@media (max-width: 768px) {
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
}


/* ========================================
   MENU DROPDOWN (adaptado ao Robi Paint)
   ======================================== */

/* Container do dropdown */
.nav-menu li.dropdown {
    position: relative;
}

/* Seta indicadora */
.nav-menu li.dropdown>a::after {
    content: '▾';
    margin-left: 0.3rem;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

/* Rotaciona seta no hover */
.nav-menu li.dropdown:hover>a::after {
    transform: rotate(180deg);
}

/* Menu dropdown (escondido por padrão) */
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 0.75rem 0;
    min-width: 200px;
    z-index: 1001;
    margin-top: 0.5rem;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

/* Links dentro do dropdown */
.nav-menu .dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Hover nos links - usa cor azul do site */
.nav-menu .dropdown-menu li a:hover {
    background: rgba(52, 152, 219, 0.08);
    color: #3498db;
}

/* Mostra dropdown no hover */
.nav-menu li.dropdown:hover .dropdown-menu {
    display: block;
}

/* ========================================
   MOBILE - Dropdown inline
   ======================================== */
@media (max-width: 991px) {
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 1.5rem;
        margin-top: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .nav-menu .dropdown-menu li a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu .dropdown-menu li a:hover {
        background: rgba(52, 152, 219, 0.05);
    }

    /* Esconde seta no mobile */
    .nav-menu li.dropdown>a::after {
        display: none;
    }

    /* Mostra dropdown sempre aberto no mobile */
    .nav-menu li.dropdown .dropdown-menu {
        display: block;
    }
}


/* ========================================
   CATEGORIAS DE DESENHOS (HOME)
   ======================================== */

.categorias-desenhos {
    padding: clamp(60px, 10vw, 80px) 0;
    background: #f8f9fa;
}

.categorias-desenhos h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.categorias-desenhos>.container>p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

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

.categoria-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.categoria-icone {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.categoria-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.categoria-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.ver-todos {
    text-align: center;
}

/* Mobile */
@media (max-width: 480px) {
    .categorias-grid {
        grid-template-columns: 1fr;
    }

    .categoria-card {
        padding: 1.5rem 1rem;
    }
}

/* ========================================
   FOOTER GRID (corrigido)
   ======================================== */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #fff;
}

/* Mobile: centraliza tudo */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    color: #999;
}

.breadcrumb-list a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list li[aria-current="page"] {
    color: #666;
}

/* ========================================
   PÁGINA DE DESENHOS
   ======================================== */

.pagina-desenho {
    padding: clamp(40px, 8vw, 60px) 0;
}

.pagina-desenho h1 {
    margin-bottom: 0.5rem;
}

.intro-text {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Grid de desenhos */
.grid-desenhos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-desenho {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
}

.card-desenho:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-desenho img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.nome-desenho {
    display: block;
    padding: 1rem;
    text-align: center;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

/* CTA */
.cta-jogar {
    text-align: center;
    margin-top: 2rem;
}

/* Mobile */
@media (max-width: 480px) {
    .grid-desenhos {
        grid-template-columns: 1fr;
    }

    .breadcrumb-list {
        font-size: 0.85rem;
    }
}