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

/* Paleta Cromática BNCC Computação */
:root {
    --color-pacific-blue: #06B6CB;
    --color-deep-space: #EAF4F7;
    --color-amber-gold: #FFC107;
    --color-alabaster: #E1E1E1;
    --color-deep-space-darker: #1E293B;
    --color-white: #FFFFFF;
    --color-black: #020617;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-deep-space-darker);
    background-color: var(--color-deep-space);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Tipografia - Fredoka para títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
.header {
    background: var(--color-white);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    color: var(--color-pacific-blue);
    text-decoration: none;
}

.logo-svg {
    width: 60px;
    height: 84px;
    display: block;
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-left: 0.75rem;
}

.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav a {
    font-family: 'Open Sans', sans-serif;
    color: var(--color-deep-space-darker);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.nav a:hover {
    color: var(--color-pacific-blue);
    background: rgba(6, 182, 203, 0.1);
}

/* Menu Hamburguer Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: background 0.3s;
    z-index: 101;
}

.menu-toggle:hover {
    background: rgba(6, 182, 203, 0.1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-deep-space-darker);
    border-radius: 3px;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

/* header-actions: lupa + hamburger juntos no mobile */
.header-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop: lupa fica no nav */
.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-deep-space-darker);
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 8px;
    transition: color 0.2s;
}

.nav-search-btn:hover {
    color: var(--color-pacific-blue);
}

.nav-search-box {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: var(--color-white);
    border: 2px solid var(--color-alabaster);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    align-items: center;
    width: 260px;
    overflow: hidden;
    z-index: 200;
}

.nav-search-box.open {
    display: flex;
}

.nav-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--color-deep-space-darker);
    background: transparent;
}

.nav-search-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 14px 0 0;
    line-height: 1;
}

.nav-search-close:hover {
    color: var(--color-deep-space-darker);
}

/* Busca no footer */
.footer-search-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-search-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 8px 14px;
}

.footer-search-wrapper svg {
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.footer-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--color-white);
}

.footer-search-input::placeholder {
    color: rgba(255,255,255,0.45);
}

.footer-search-btn {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size: 0.9rem;
}

/* Desktop: lupa no nav, header-actions oculto */
@media (min-width: 769px) {
    .header-actions {
        display: none !important;
    }
    .nav .nav-search-wrapper {
        display: flex;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-svg {
        width: 48px;
        height: 68px;
    }

    .header-actions {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    /* Esconde a lupa do nav no mobile (está no header-actions) */
    .nav .nav-search-wrapper {
        display: none;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 2px solid var(--color-deep-space);
        border-radius: 0 0 24px 24px;
        padding: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        text-align: center;
        border-radius: 12px;
        background: var(--color-deep-space);
    }
    
    .nav-list a:hover {
        background: var(--color-pacific-blue);
        color: var(--color-deep-space);
    }
}

/* Main Content */
.main {
    min-height: calc(100vh - 72px - 200px);
    padding: 3rem 0;
}

/* Hero Section */
.hero {
    background: var(--color-pacific-blue);
    color: var(--color-deep-space);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-deep-space);
}

.hero p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: var(--color-deep-space);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards - Estilo Flat Minimalista BNCC */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 3rem;
}

.axis-card {
    background-color: var(--color-white);
    color: var(--color-deep-space-darker);
    border: none;
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.axis-card:hover {
    transform: translateY(-4px);
    background-color: var(--color-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.axis-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(6, 182, 203, 0.15);
    color: var(--color-pacific-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.axis-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.45rem;
    margin-bottom: 16px;
    color: var(--color-deep-space-darker);
}

.axis-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Cards legados (mantidos para compatibilidade) */
.card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 36px 32px;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--color-pacific-blue);
    font-size: 1.45rem;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: var(--color-deep-space-darker);
    padding: 4rem 0 2rem 0;
    color: var(--color-white);
}

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

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

.footer-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 1.25rem 0;
}

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

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

.footer-links a {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-pacific-blue);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--color-pacific-blue);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

.footer-contact li {
    margin-bottom: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--color-pacific-blue);
}

.contact-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

.footer-bottom p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Mobile Responsive para Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
    
    .footer-contact li {
        display: flex;
        justify-content: center;
    }
}

/* Buttons - Estilo Lúdico Arredondado */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    cursor: pointer;
    border: 2px solid transparent;
    gap: 8px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-accent {
    background-color: var(--color-amber-gold);
    color: var(--color-deep-space-darker);
}

.btn-accent:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 16px rgba(255, 193, 7, 0.35);
    filter: brightness(1.03);
}

.btn-primary {
    background: var(--color-pacific-blue);
    color: var(--color-deep-space);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 16px rgba(6, 182, 203, 0.35);
    filter: brightness(1.05);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-deep-space-darker);
    border: 2px solid var(--color-deep-space);
}

.btn-secondary:hover {
    background: var(--color-deep-space);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: #475569; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Seções Alternadas */
.section-light {
    background: var(--color-white);
    padding: 4rem 0;
}

.section-blue {
    background: var(--color-pacific-blue);
    color: var(--color-deep-space);
    padding: 4rem 0;
}

.section-blue h2 {
    color: var(--color-deep-space);
}

.section-blue p {
    color: var(--color-deep-space);
}

/* Alternância de cores entre seções */
.section-primary {
    background: var(--color-pacific-blue);
    padding: 3rem 0;
}

.section-secondary {
    background: var(--color-deep-space);
    padding: 3rem 0;
}

.section-white {
    background: var(--color-white);
    padding: 3rem 0;
}

/* Destaques da Semana */
.featured-section {
    padding: 2rem 0;
}

.featured-section.section-primary {
    padding: 3rem 0;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-header {
    text-align: center;
    margin-bottom: 2rem;
}

.featured-section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 0 0 0.75rem 0;
}

.section-primary .featured-section-title {
    color: var(--color-white);
}

.featured-section-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--color-deep-space-darker);
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.section-primary .featured-section-desc {
    color: rgba(255,255,255,0.9);
}

/* Grid 3 cards — desktop */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.featured-card {
    min-width: 0;
}

/* Controles mobile — ocultos no desktop */
.featured-mobile-controls {
    display: none;
}

.featured-image-wrapper {
    position: relative;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-amber-gold);
    color: var(--color-deep-space-darker);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.featured-card {
    min-width: 0;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-4px);
}

.featured-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.featured-grid {
    align-items: stretch;
}

.featured-card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.featured-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.featured-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Mobile — carousel */
@media (max-width: 767px) {
    .featured-grid {
        display: block;
        position: relative;
    }

    .featured-card {
        display: none;
    }

    .featured-card.active {
        display: block;
    }

    .featured-mobile-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .featured-arrow {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.2);
        color: var(--color-white);
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }

    .featured-arrow:hover {
        background: rgba(255,255,255,0.35);
    }

    .featured-dots {
        display: flex;
        gap: 6px;
    }

    .featured-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
        transition: all 0.2s;
    }

    .featured-dot.active {
        background: var(--color-white);
        width: 20px;
        border-radius: 4px;
    }

    .featured-image {
        height: 260px;
    }
}

/* Seção 02: Catálogo de Produtos */
.catalog-section {
    padding: 4rem 0;
}

.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.catalog-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 0 0 0.75rem 0;
}

.catalog-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #475569;
    margin: 0;
}

/* Busca e Filtros do Catálogo */
.catalog-filters {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.catalog-search-wrapper {
    position: relative;
    max-width: 420px;
}

.catalog-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.catalog-search-input {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--color-deep-space-darker);
    background: var(--color-white);
    border: 2px solid var(--color-alabaster);
    border-radius: 100px;
    padding: 0.7rem 1rem 0.7rem 2.75rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.catalog-search-input:focus {
    border-color: var(--color-pacific-blue);
    box-shadow: 0 0 0 3px rgba(6, 182, 203, 0.15);
}

.catalog-filter-groups {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.catalog-filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.catalog-filter-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    min-width: 90px;
}

.catalog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-pill {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    background: var(--color-white);
    border: 2px solid var(--color-alabaster);
    border-radius: 100px;
    padding: 4px 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-pill:hover {
    border-color: var(--color-pacific-blue);
    color: var(--color-pacific-blue);
}

.filter-pill.active {
    background: var(--color-pacific-blue);
    border-color: var(--color-pacific-blue);
    color: var(--color-white);
}


/* Select nativo — oculto no desktop */
.filter-select {
    display: none;
}

.catalog-empty {
    text-align: center;
    padding: 3rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #475569;
}

@media (max-width: 600px) {
    .catalog-search-wrapper {
        max-width: 100%;
    }

    .catalog-filter-group {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    /* Oculta pills, mostra select */
    .filter-pills-desktop {
        display: none;
    }

    .filter-select {
        display: block;
        flex: 1;
        font-family: 'Fredoka', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-deep-space-darker);
        background: var(--color-white);
        border: 2px solid var(--color-pacific-blue);
        border-radius: 12px;
        padding: 12px 16px;
        outline: none;
        cursor: pointer;
        appearance: auto;
    }

    .filter-select:focus {
        box-shadow: 0 0 0 3px rgba(6, 182, 203, 0.2);
    }
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
}

.product-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 0;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--color-deep-space-darker);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-arrow:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: var(--color-white);
    width: 20px;
    border-radius: 4px;
}

.product-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 24px 24px 8px 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc-wrap {
    flex: 1;
    margin: 0 24px 12px 24px;
    min-height: 4.8em;
}

.product-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc-more {
    display: none;
    margin-top: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-pacific-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.product-desc-more.is-visible {
    display: inline-block;
}

.product-desc-more:hover {
    color: var(--color-deep-space-darker);
    text-decoration: underline;
}

.product-price {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-pacific-blue);
    margin: 0 24px 12px 24px;
}

.product-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 24px 12px 24px;
}

.product-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-pacific-blue);
    background: rgba(6, 182, 203, 0.12);
    border-radius: 100px;
    padding: 3px 10px;
}

.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 24px 24px;
    gap: 1rem;
    margin-top: auto;
}

.product-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--color-pacific-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.product-link:hover {
    color: var(--color-deep-space-darker);
}

/* Mobile Responsive para Catálogo */
@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-carousel {
        height: 150px;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .carousel-prev {
        left: 6px;
    }

    .carousel-next {
        right: 6px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 16px;
    }

    .product-name {
        font-size: 1.1rem;
        margin: 16px 16px 6px 16px;
    }

    .product-desc-wrap {
        margin: 0 16px 8px 16px;
        min-height: 4.05em;
    }

    .product-desc {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }

    .product-price {
        font-size: 1.25rem;
        margin: 0 16px 10px 16px;
    }

    .product-actions {
        padding: 0 16px 16px 16px;
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-actions .btn {
        width: 100%;
    }
}

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

/* =============================================
   Feed do Instagram
   ============================================= */

.instagram-feed-section {
    padding: 2.25rem 0 2.75rem;
    background: #fafafa !important;
}

.instagram-feed-container {
    max-width: 940px;
}

.instagram-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dbdbdb;
}

.instagram-profile-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.instagram-profile-avatar-ring {
    padding: 2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
}

.instagram-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    display: block;
}

.instagram-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.instagram-profile-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #262626;
}

.instagram-profile-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: #8e8e8e;
}

.instagram-follow-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0095f6;
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s;
}

.instagram-follow-btn:hover {
    background: #f5f5f5;
}

.instagram-feed-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8e8e8e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
}

.instagram-feed-carousel-wrap {
    max-width: 100%;
    margin: 0 auto;
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.instagram-mobile-controls {
    display: none;
}

/* Card — post compacto estilo Instagram */
.instagram-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #262626;
    border: 1px solid #dbdbdb;
    max-width: 100%;
    transition: opacity 0.2s ease;
}

.instagram-card:hover {
    opacity: 0.92;
}

.instagram-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    min-height: 44px;
}

.instagram-card-avatar-ring {
    padding: 1.5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
}

.instagram-card-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    object-fit: cover;
    display: block;
    background: #fff;
}

.instagram-card-user {
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #262626;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.instagram-card-menu {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: #262626;
    line-height: 1;
    padding: 0 0.15rem;
    flex-shrink: 0;
}

.instagram-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}

.instagram-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-card-body {
    padding: 0.45rem 0.6rem 0.55rem;
}

.instagram-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.instagram-card-actions svg {
    width: 18px;
    height: 18px;
    color: #262626;
    stroke-width: 1.75;
}

.instagram-card-actions-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.instagram-card-caption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    line-height: 1.35;
    color: #262626;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instagram-card-caption strong {
    font-weight: 600;
    margin-right: 0.15rem;
}

/* Mobile — carousel */
@media (max-width: 767px) {
    .instagram-feed-section {
        padding: 1.75rem 0 2rem;
    }

    .instagram-profile-avatar {
        width: 48px;
        height: 48px;
    }

    .instagram-feed-header {
        margin-bottom: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .instagram-follow-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .instagram-feed-grid {
        display: block;
        position: relative;
        max-width: 280px;
        margin: 0 auto;
    }

    .instagram-card {
        display: none;
    }

    .instagram-card.active {
        display: flex;
    }

    .instagram-mobile-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .instagram-carousel-arrow {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid #dbdbdb;
        background: #fff;
        color: #262626;
        font-size: 1.25rem;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.15s;
        flex-shrink: 0;
    }

    .instagram-carousel-arrow:hover {
        background: #f5f5f5;
    }

    .instagram-carousel-dots {
        display: flex;
        gap: 0.35rem;
        align-items: center;
    }

    .instagram-carousel-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: #c7c7c7;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
    }

    .instagram-carousel-dot.active {
        background: #262626;
        transform: scale(1.15);
    }
}

/* =============================================
   Página de Dúvidas — FAQ
   ============================================= */

.faq-hero {
    padding: 3rem 0;
    text-align: center;
}

.faq-hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.75rem 0;
}

.faq-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.faq-section {
    padding: 3rem 0 4rem;
}

.faq-wrapper {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--color-pacific-blue);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-space-darker);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--color-pacific-blue);
}

.faq-item.open .faq-question {
    color: var(--color-pacific-blue);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    color: var(--color-pacific-blue);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 0.5rem 0;
}

.faq-answer p:last-child {
    margin: 0;
}

.faq-answer a {
    color: var(--color-pacific-blue);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.faq-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    padding-left: 1.25rem;
    position: relative;
}

.faq-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-pacific-blue);
    font-weight: 700;
    font-size: 0.85rem;
}

.faq-cta {
    max-width: 720px;
    margin: 3rem auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.faq-cta-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-deep-space-darker);
    margin: 0;
}

@media (max-width: 600px) {
    .faq-hero-title {
        font-size: 1.85rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}

/* =============================================
   Página de Contato — Formulário
   ============================================= */

.contact-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.contact-form-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 0 0 0.5rem 0;
}

.contact-form-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #475569;
    margin: 0 0 2rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-deep-space-darker);
}

.contact-form-input {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--color-deep-space-darker);
    background: var(--color-deep-space);
    border: 2px solid var(--color-alabaster);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.contact-form-input:focus {
    border-color: var(--color-pacific-blue);
    box-shadow: 0 0 0 3px rgba(6, 182, 203, 0.15);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form-submit {
    align-self: flex-start;
    padding: 14px 36px;
}

.contact-form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0;
    color: #94a3b8;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
}

.contact-form-divider::before,
.contact-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-alabaster);
}

.contact-whatsapp-btn {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    padding: 16px 28px;
    font-size: 1.05rem;
}

@media (max-width: 600px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-submit {
        align-self: stretch;
        width: 100%;
    }
}

/* =============================================
   Página de Detalhes do Produto
   ============================================= */

.product-detail-hero {
    padding: 1.25rem 0;
}

.product-back-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.product-back-link:hover {
    color: var(--color-amber-gold);
}

.product-detail-section {
    padding: 3rem 0 4rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Galeria */
.product-detail-gallery {
    position: sticky;
    top: 90px;
}

.detail-carousel-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-deep-space);
    aspect-ratio: 4/3;
    margin-bottom: 1rem;
}

.detail-carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.detail-carousel-img.active {
    opacity: 1;
}

.detail-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--color-deep-space-darker);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.detail-carousel-arrow:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.detail-prev { left: 12px; }
.detail-next { right: 12px; }

.product-detail-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-amber-gold);
    color: var(--color-deep-space-darker);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.detail-carousel-thumbs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.detail-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.detail-thumb:hover {
    opacity: 0.85;
}

.detail-thumb.active {
    opacity: 1;
    border-color: var(--color-pacific-blue);
}

/* Informações */
.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-detail-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 0;
    line-height: 1.15;
}

.product-detail-grades {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-detail-grade {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-pacific-blue);
    background: rgba(6, 182, 203, 0.12);
    border-radius: 100px;
    padding: 4px 14px;
}

.product-detail-price {
    display: inline-block;
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-pacific-blue);
}

.product-detail-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

.product-detail-features {
    background: var(--color-deep-space);
    border-radius: 16px;
    padding: 1.5rem;
}

.product-detail-features-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 0 0 1rem 0;
}

.product-detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-detail-feature-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-pacific-blue);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.product-detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-detail-btn {
    flex: 1;
    min-width: 160px;
    justify-content: center;
}

/* Produtos Relacionados */
.product-related-section {
    padding: 3rem 0 4rem 0;
}

.product-related-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 0 0 2rem 0;
}

/* Responsivo - Detalhes */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-gallery {
        position: static;
    }
}

@media (max-width: 600px) {
    .product-detail-name {
        font-size: 1.75rem;
    }

    .product-detail-price {
        font-size: 1.6rem;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-btn {
        width: 100%;
    }

    .detail-thumb {
        width: 64px;
        height: 48px;
    }
}


/* ===========================
   Painel Administrativo
   =========================== */
.admin-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.admin-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-deep-space-darker);
    margin: 0;
}
.admin-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    margin: 0.25rem 0 0;
}
.admin-new-btn { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.admin-alert { padding: 1rem 1.25rem; border-radius: 12px; font-family: 'Open Sans', sans-serif; font-size: 0.95rem; margin-bottom: 1.5rem; }
.admin-alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.admin-alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.admin-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.admin-form-single { max-width: 560px; }
.admin-empty { text-align: center; padding: 4rem 2rem; font-family: 'Open Sans', sans-serif; color: #475569; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.admin-table-wrapper { background: var(--color-white); border-radius: 20px; overflow-x: auto; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.admin-table { width: 100%; border-collapse: collapse; font-family: 'Open Sans', sans-serif; font-size: 0.9rem; }
.admin-table th { font-family: 'Fredoka', sans-serif; font-size: 0.85rem; font-weight: 600; color: #475569; text-align: left; padding: 1rem 1.25rem; border-bottom: 2px solid #f1f5f9; white-space: nowrap; }
.admin-table td { padding: 1rem 1.25rem; border-bottom: 1px solid #f1f5f9; vertical-align: middle; color: var(--color-deep-space-darker); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: #f8fafc; }
.admin-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; display: block; }
.admin-thumb-placeholder { width: 60px; height: 60px; background: #f1f5f9; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #94a3b8; }
.admin-tagline { color: #94a3b8; font-size: 0.8rem; }
.admin-category-badge { font-family: 'Fredoka', sans-serif; font-size: 0.8rem; font-weight: 600; background: #f1f5f9; color: #475569; padding: 3px 10px; border-radius: 100px; text-transform: capitalize; }
.admin-grades { display: flex; flex-wrap: wrap; gap: 4px; }
.admin-badge { font-family: 'Fredoka', sans-serif; font-size: 0.8rem; font-weight: 600; background: var(--color-amber-gold); color: var(--color-deep-space-darker); padding: 3px 10px; border-radius: 100px; }
.admin-actions { display: flex; gap: 0.5rem; align-items: center; }
.admin-btn { font-family: 'Fredoka', sans-serif; font-size: 0.875rem; font-weight: 600; padding: 6px 16px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
.admin-btn:hover { opacity: 0.8; }
.admin-btn-edit { background: var(--color-pacific-blue); color: var(--color-white); }
.admin-btn-delete { background: #fee2e2; color: #dc2626; }
.admin-btn-back { background: #f1f5f9; color: #475569; }
.admin-form { background: var(--color-white); border-radius: 20px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.admin-form-col { display: flex; flex-direction: column; gap: 1.25rem; }
.admin-field { display: flex; flex-direction: column; gap: 0.4rem; }
.admin-label { font-family: 'Fredoka', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--color-deep-space-darker); }
.admin-input { font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--color-deep-space-darker); background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 10px; padding: 10px 14px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; box-sizing: border-box; }
.admin-input:focus { border-color: var(--color-pacific-blue); box-shadow: 0 0 0 3px rgba(6,182,203,0.15); background: var(--color-white); }
.admin-textarea { resize: vertical; min-height: 100px; }
.admin-select { appearance: auto; cursor: pointer; }
.admin-hint { font-family: 'Open Sans', sans-serif; font-size: 0.78rem; color: #94a3b8; }
.admin-category-checkboxes { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.75rem; background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 10px; max-height: 220px; overflow-y: auto; }
.admin-category-check { display: flex; align-items: center; gap: 0.5rem; font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--color-deep-space-darker); cursor: pointer; }
.admin-category-check input { width: auto; margin: 0; cursor: pointer; accent-color: var(--color-pacific-blue); }
.admin-button-action-options { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.75rem; background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 10px; }
.admin-button-action-option { display: flex; align-items: center; gap: 0.5rem; font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--color-deep-space-darker); cursor: pointer; }
.admin-button-action-option input { width: auto; margin: 0; cursor: pointer; accent-color: var(--color-pacific-blue); }

/* Abas do painel admin */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    padding: 0.35rem;
    background: #f1f5f9;
    border-radius: 12px;
    flex-wrap: wrap;
}
.admin-tab {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    padding: 0.55rem 1.15rem;
    border-radius: 9px;
    transition: background 0.2s, color 0.2s;
}
.admin-tab:hover { color: var(--color-deep-space-darker); background: rgba(255,255,255,0.6); }
.admin-tab.active {
    background: var(--color-white);
    color: var(--color-pacific-blue);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Feed Instagram — admin */
.admin-instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.admin-instagram-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}
.admin-instagram-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
}
.admin-instagram-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.admin-instagram-order {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--color-pacific-blue);
    color: #fff;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}
.admin-instagram-card-body { padding: 1rem 1.15rem 1.15rem; }
.admin-instagram-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 0.5rem;
}
.admin-instagram-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-pacific-blue);
    text-decoration: none;
}
.admin-instagram-link:hover { text-decoration: underline; }
.admin-instagram-preview {
    margin-bottom: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    max-width: 200px;
    border: 2px solid #e2e8f0;
}
.admin-instagram-preview img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.admin-form-footer { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #f1f5f9; }
.admin-save-btn { padding: 12px 32px; font-size: 1rem; }
@media (max-width: 768px) {
    .admin-wrapper { padding: 0 0.75rem; }

    .admin-title { font-size: 1.5rem; }

    .admin-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

    .admin-new-btn { width: 100%; justify-content: center; }

    /* Formulário em coluna única */
    .admin-form-grid { grid-template-columns: 1fr; gap: 0; }
    .admin-form { padding: 1.25rem; }
    .admin-form-footer { flex-direction: column; }
    .admin-save-btn { width: 100%; justify-content: center; }
    .admin-btn-back { width: 100%; text-align: center; }

    /* Transformar tabela em cards */
    .admin-table-wrapper { background: transparent; box-shadow: none; border-radius: 0; overflow: visible; }
    .admin-table thead { display: none; }
    .admin-table, .admin-table tbody { display: block; }
    .admin-table tbody tr {
        display: flex;
        flex-direction: column;
        background: var(--color-white);
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        margin-bottom: 1rem;
        padding: 1rem;
        gap: 0.5rem;
        border-bottom: none;
    }
    .admin-table tbody tr:hover td { background: transparent; }
    .admin-table td {
        display: flex;
        align-items: center;
        padding: 0.25rem 0;
        border-bottom: none;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    /* Esconde colunas menos importantes no card */
    .admin-table td:nth-child(6) { display: none; }
    /* Linha de imagem + nome juntos */
    .admin-table td:nth-child(1) { flex-direction: row; }
    .admin-table td:nth-child(2) { font-size: 1rem; }
    /* Label antes de cada campo */
    .admin-table td:nth-child(3)::before { content: "Categoria: "; font-weight: 600; color: #94a3b8; font-size: 0.78rem; min-width: 80px; }
    .admin-table td:nth-child(4)::before { content: "Anos: "; font-weight: 600; color: #94a3b8; font-size: 0.78rem; min-width: 80px; }
    .admin-table td:nth-child(5)::before { content: "Preço: "; font-weight: 600; color: #94a3b8; font-size: 0.78rem; min-width: 80px; }
    /* Ações em linha */
    .admin-table td:nth-child(7) { padding-top: 0.5rem; border-top: 1px solid #f1f5f9; margin-top: 0.25rem; }
    .admin-actions { width: 100%; }
    .admin-actions .admin-btn, .admin-actions button { flex: 1; text-align: center; justify-content: center; }
}

/* Upload de imagens no admin */
.admin-upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    color: #94a3b8;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.admin-upload-area:hover, .admin-upload-area.dragover {
    border-color: var(--color-pacific-blue);
    background: rgba(6,182,203,0.05);
    color: var(--color-pacific-blue);
}
.admin-upload-area svg { color: #cbd5e1; transition: color 0.2s; }
.admin-upload-area:hover svg, .admin-upload-area.dragover svg { color: var(--color-pacific-blue); }
.admin-upload-link { color: var(--color-pacific-blue); font-weight: 600; cursor: pointer; text-decoration: underline; }
.admin-upload-preview { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; }
.admin-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    color: #64748b;
    max-width: 80px;
}
.admin-preview-item img { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; border: 2px solid #e2e8f0; }
.admin-preview-item span { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; width: 80px; text-align: center; }
.admin-existing-images { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.5rem; }
.admin-existing-img-item { position: relative; }
.admin-existing-img-item img { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; border: 2px solid #e2e8f0; display: block; }
.admin-img-remove {
    position: absolute;
    top: -6px; right: -6px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: none;
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

/* Dropdown customizado mobile (substitui filter-select nativo) */
.custom-dropdown {
    display: none;
    position: relative;
    flex: 1;
}
.custom-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-family: "Fredoka", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-deep-space-darker);
    background: var(--color-white);
    border: 2px solid var(--color-pacific-blue);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.custom-dropdown-btn.open {
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 0 var(--color-pacific-blue);
}
.custom-dropdown-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}
.custom-dropdown-btn.open svg {
    transform: rotate(180deg);
}
.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 2px solid var(--color-pacific-blue);
    border-top: none;
    border-radius: 0 0 12px 12px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
}
.custom-dropdown-menu.open {
    display: block;
}
.custom-dropdown-item {
    display: block;
    width: 100%;
    text-align: left;
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
    color: var(--color-deep-space-darker);
    background: none;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f1f5f9;
}
.custom-dropdown-item:last-child { border-bottom: none; }
.custom-dropdown-item:hover { background: #f0fdfe; }
.custom-dropdown-item.active {
    background: rgba(6,182,203,0.1);
    color: var(--color-pacific-blue);
    font-weight: 600;
}

@media (max-width: 600px) {
    .filter-select { display: none; }
    .custom-dropdown { display: flex; flex-direction: column; }
    .filter-pills-desktop { display: none; }
    .catalog-filter-group {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
}

/* ============================================================
   MICRO-ANIMAÇÕES
   ============================================================ */

/* Keyframes */
@keyframes brubs-fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes brubs-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes brubs-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
    50%       { transform: scale(1.06); box-shadow: 0 6px 18px rgba(255,193,7,0.5); }
}

@keyframes brubs-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

@keyframes brubs-shine {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes brubs-spin-in {
    from { opacity: 0; transform: rotate(-8deg) scale(0.85); }
    to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

/* --- Page load --- */
.main { animation: brubs-fadeIn 0.45s ease-out both; }

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* --- Header shadow on scroll --- */
.header { transition: box-shadow 0.35s ease; }
.header.scrolled { box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09); }

/* --- Logo bounce on hover --- */
.logo { transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.logo:hover { transform: scale(1.04); }

/* --- Nav link underline deslizante --- */
.nav-list a { position: relative; }
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--color-pacific-blue);
    border-radius: 2px;
    transition: left 0.25s ease, right 0.25s ease;
}
.nav-list a:hover::after { left: 14px; right: 14px; }

/* --- Button active press --- */
.btn:active {
    transform: scale(0.95) !important;
    transition-duration: 0.08s !important;
}

/* --- Shine no btn-accent (dourado) --- */
.btn-accent {
    background-image: linear-gradient(
        120deg,
        transparent 0%, transparent 40%,
        rgba(255,255,255,0.35) 50%,
        transparent 60%, transparent 100%
    );
    background-size: 200% auto;
    background-repeat: no-repeat;
    background-position: -200% center;
}
.btn-accent:hover {
    animation: brubs-shine 0.55s ease forwards;
}

/* --- Imagem zoom nos cards de produto --- */
.product-carousel { overflow: hidden; }
.carousel-image { transition: opacity 0.35s ease, transform 0.55s ease; }
.product-card:hover .carousel-image.active { transform: scale(1.05); }

/* --- Imagem zoom nos destaques --- */
.featured-image-wrapper { overflow: hidden; }
.featured-image { transition: transform 0.55s ease; }
.featured-card:hover .featured-image { transform: scale(1.04); }

/* --- Badge pulsante --- */
.featured-badge, .product-detail-badge {
    animation: brubs-pulse 2.8s ease-in-out infinite;
}

/* --- Filter pill clique --- */
.filter-pill { transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.filter-pill:active { transform: scale(0.9); transition-duration: 0.08s; }
.filter-pill.active { transform: scale(1.03); }

/* --- Social links slide --- */
.social-link { transition: color 0.2s, transform 0.25s ease; }
.social-link:hover { transform: translateX(5px); }

/* --- Footer links indent on hover --- */
.footer-links a { transition: color 0.2s, padding-left 0.25s ease; display: inline-block; }
.footer-links a:hover { padding-left: 7px; }

/* --- WhatsApp button float --- */
.contact-whatsapp-btn { animation: brubs-float 3.2s ease-in-out infinite; }
.contact-whatsapp-btn:hover { animation-play-state: paused; }

/* --- Botão Voltar ao Topo --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-pacific-blue);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(6, 182, 203, 0.45);
    opacity: 0;
    transform: translateY(14px) scale(0.85);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    z-index: 998;
    pointer-events: none;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 28px rgba(6, 182, 203, 0.55);
}
.back-to-top svg { display: block; }

@media (max-width: 480px) {
    .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 44px; height: 44px; }
}

/* --- Input focus glow animado --- */
.catalog-search-input, .contact-form-input, .login-input {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.catalog-search-input:focus,
.contact-form-input:focus,
.login-input:focus {
    box-shadow: 0 0 0 4px rgba(6, 182, 203, 0.18);
}

/* --- Spinner de loading no botão submit --- */
@keyframes brubs-spin {
    to { transform: rotate(360deg); }
}
.btn-loading { pointer-events: none; opacity: 0.75; position: relative; }
.btn-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: brubs-spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

/* --- Respeitar preferência de redução de movimento --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .back-to-top { transition: none; }
}

/* --- Modal de resgate gratuito --- */
.redeem-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.redeem-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

body.redeem-modal-open {
    overflow: hidden;
}

.redeem-modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.redeem-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.redeem-modal-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    color: var(--color-deep-space-darker);
    margin: 0 0 0.5rem;
}

.redeem-modal-subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #64748b;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.redeem-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.redeem-modal-alert {
    margin-bottom: 1rem;
}

.redeem-modal-submit {
    width: 100%;
    margin-top: 0.25rem;
}
