﻿/* =====================================================
   CATALOGO PAGE STYLES - FLORAMAZONIA
   Estilos especificos da pagina de catalogo
   ===================================================== */


/* Scroll padding para header fixed */
html {
    scroll-padding-top: 180px;
    scroll-behavior: smooth;
}

/* Header Catalogo */
.catalogo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(123, 45, 142, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.catalogo-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalogo-header__logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin: -15px 0;
}

@media (min-width: 768px) {
    .catalogo-header__logo {
        height: 120px;
        margin: -20px 0;
    }
}

.catalogo-header__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.catalogo-header__back:hover {
    background: #fff;
    color: #7B2D8E;
    border-color: #fff;
}

/* Hero Catalogo */
.catalogo-hero {
    padding: 160px 2rem 80px;
    background: linear-gradient(135deg, #7B2D8E 0%, #5a1f6a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.catalogo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./src/assets/images/fundo-roxo.png') center/cover;
    opacity: 0.1;
}

.catalogo-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.catalogo-hero__tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #F5A623;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.catalogo-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.catalogo-hero__title span {
    color: #F5A623;
}

.catalogo-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Rotas SEO de Intencao de Compra */
.catalogo-intent {
    background: #fff;
    padding: 2.6rem 2rem 1.5rem;
}

.catalogo-intent__container {
    max-width: 1400px;
    margin: 0 auto;
}

.catalogo-intent__header {
    max-width: 860px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.catalogo-intent__eyebrow {
    display: inline-block;
    margin: 0 0 0.55rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #7B2D8E;
    background: rgba(123, 45, 142, 0.1);
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
}

.catalogo-intent__title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    color: #41214c;
}

.catalogo-intent__description {
    margin: 0.8rem auto 0;
    max-width: 720px;
    font-family: 'Inter', sans-serif;
    color: #67616b;
    line-height: 1.65;
}

.catalogo-intent__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.catalogo-intent__card {
    text-decoration: none;
    color: inherit;
    border: 1px solid #e9ddee;
    border-radius: 16px;
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #faf7fc 100%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalogo-intent__card:hover {
    transform: translateY(-2px);
    border-color: #cfb1db;
    box-shadow: 0 10px 26px rgba(123, 45, 142, 0.12);
}

.catalogo-intent__label {
    display: inline-block;
    margin: 0 0 0.45rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #7B2D8E;
}

.catalogo-intent__card h3 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #2f2334;
    line-height: 1.35;
}

.catalogo-intent__card p {
    margin: 0.5rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5f5963;
    line-height: 1.55;
}

/* Navegacao Categorias */
.catalogo-nav {
    background: #fff;
    padding: 2.5rem 2rem;
    position: sticky;
    top: 82px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.catalogo-nav__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.catalogo-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    border-radius: 50px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.catalogo-nav__link:hover,
.catalogo-nav__link--active {
    background: #7B2D8E;
    color: #fff;
}

.catalogo-nav__link--acai:hover,
.catalogo-nav__link--acai.catalogo-nav__link--active {
    background: #4A0E5C;
}

.catalogo-nav__link--gelato:hover,
.catalogo-nav__link--gelato.catalogo-nav__link--active {
    background: #E91E63;
}

.catalogo-nav__link--sorbet:hover,
.catalogo-nav__link--sorbet.catalogo-nav__link--active {
    background: #FF9800;
}

.catalogo-nav__link--mix:hover,
.catalogo-nav__link--mix.catalogo-nav__link--active {
    background: #FF5722;
}

.catalogo-nav__search-toggle {
    border: 0;
    cursor: pointer;
}

.catalogo-nav__search-toggle svg {
    width: 18px;
    height: 18px;
}

.catalogo-nav__search-toggle--active {
    background: #7B2D8E;
    color: #fff;
}

/* Secao de Categoria */
.catalogo-section {
    padding: 140px 2rem 80px 2rem;
}

.catalogo-section:nth-child(even) {
    background: #f9f9f9;
}

.catalogo-separator {
    height: 32px;
    background: url('./src/assets/images/fundo-roxo.png') center/cover no-repeat;
    opacity: 1;
    box-shadow: none;
}

.catalogo-section__container {
    max-width: 1400px;
    margin: 0 auto;
}

.catalogo-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.catalogo-section__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
}

.catalogo-section--acai .catalogo-section__icon {
    background: linear-gradient(135deg, #4A0E5C, #7B2D8E);
}

.catalogo-section--gelato .catalogo-section__icon {
    background: linear-gradient(135deg, #E91E63, #FF5722);
}

.catalogo-section--sorbet .catalogo-section__icon {
    background: linear-gradient(135deg, #FF9800, #FFC107);
}

.catalogo-section--mix .catalogo-section__icon {
    background: linear-gradient(135deg, #FF5722, #FF9800);
}

.catalogo-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.catalogo-section--acai .catalogo-section__title {
    color: #4A0E5C;
}

.catalogo-section--gelato .catalogo-section__title {
    color: #E91E63;
}

.catalogo-section--sorbet .catalogo-section__title {
    color: #FF9800;
}

.catalogo-section--mix .catalogo-section__title {
    color: #FF5722;
}

.catalogo-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid de Produtos */
.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Card de Produto */
.catalogo-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.catalogo-card__image-wrapper {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f8f8, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.catalogo-section--acai .catalogo-card__image-wrapper {
    background: linear-gradient(135deg, #f3e5f5, #fff);
}

.catalogo-section--gelato .catalogo-card__image-wrapper {
    background: linear-gradient(135deg, #fce4ec, #fff);
}

.catalogo-section--sorbet .catalogo-card__image-wrapper {
    background: linear-gradient(135deg, #fff3e0, #fff);
}

.catalogo-section--mix .catalogo-card__image-wrapper {
    background: linear-gradient(135deg, #fbe9e7, #fff);
}

.catalogo-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.catalogo-card__badge--popular {
    background: linear-gradient(135deg, #4A0E5C, #7B2D8E);
}

.catalogo-card__badge--novo {
    background: linear-gradient(135deg, #E91E63, #FF5722);
}

.catalogo-card__badge--leve {
    background: linear-gradient(135deg, #FF9800, #FFC107);
}

.catalogo-card__badge--premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.catalogo-card__image {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.catalogo-card:hover .catalogo-card__image {
    transform: scale(1.05);
}

.catalogo-card--soon .catalogo-card__image-wrapper {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(123, 45, 142, 0.3);
}

.catalogo-card--soon {
    pointer-events: none;
}

.catalogo-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.catalogo-card__soon-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7B2D8E;
    margin-bottom: 0.5rem;
}

.catalogo-card__soon-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.catalogo-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalogo-card__category {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7B2D8E;
    margin-bottom: 0.5rem;
}

.catalogo-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.catalogo-card__description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.catalogo-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.catalogo-card__feature {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    background: #f5f5f5;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #666;
}

.catalogo-card__feature svg {
    width: 14px;
    height: 14px;
    color: #7B2D8E;
}

.catalogo-card__sizes {
    margin-bottom: 1.5rem;
}

.catalogo-card__sizes-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.catalogo-card__sizes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.catalogo-card__size {
    padding: 0.5rem 1rem;
    background: #7B2D8E;
    color: #fff;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.catalogo-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: -0.25rem 0 0.9rem;
}

.catalogo-card__price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.catalogo-card__price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #5a1f6a;
    line-height: 1;
}

.catalogo-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.catalogo-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* CTA Final */
.catalogo-cta {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #7B2D8E 0%, #4A0E5C 100%);
    text-align: center;
    position: relative;
}

.catalogo-cta__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.catalogo-cta__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.catalogo-cta__title span {
    color: #F5A623;
}

.catalogo-cta__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.catalogo-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.catalogo-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.catalogo-cta__btn--primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.catalogo-cta__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.catalogo-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.catalogo-cta__btn--secondary:hover {
    background: #fff;
    color: #7B2D8E;
    border-color: #fff;
}

/* Footer Simples */
.catalogo-footer {
    background: #1a1a1a;
    padding: 2rem;
    text-align: center;
}

.catalogo-footer__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.catalogo-footer__text a {
    color: #F5A623;
    text-decoration: none;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.whatsapp-float__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float__button:hover {
    transform: scale(1.1);
}

.whatsapp-float__button svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* Acessibilidade: respeitar preferência de animação reduzida */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Tablet */
@media (max-width: 1024px) {
    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalogo-hero__title {
        font-size: 2.5rem;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .catalogo-header__container {
        padding: 0 1rem;
    }
    
    .catalogo-header__logo {
        height: 100px;
        margin: -15px 0;
    }
    
    .catalogo-header__back span {
        display: none;
    }
    
    .catalogo-hero {
        padding: 140px 1rem 60px;
    }

    .catalogo-intent {
        padding: 2rem 1rem 1rem;
    }
     
    .catalogo-nav__container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }
    .catalogo-nav__container::-webkit-scrollbar {
        display: none;
    }
    .catalogo-nav {
        padding: 1.5rem 1rem;
    }
    
    .catalogo-nav__link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .catalogo-card__image-wrapper {
        min-height: 220px;
    }

    .catalogo-search {
        top: calc(100% - 0.25rem);
    }

    .catalogo-search__container {
        padding: 0 1rem;
    }
    
    .catalogo-section {
        padding: 100px 1rem 60px 1rem;
    }
    
    .catalogo-grid {
        grid-template-columns: 1fr;
    }
    
    .catalogo-cta {
        padding: 60px 1rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float__button {
        width: 55px;
        height: 55px;
    }
}

/* Limitar produtos a 4 por categoria */
.catalogo-card--hidden {
    display: none;
}

/* Botão Ver Todo Catálogo */
.catalogo-grid__button {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.catalogo-grid__see-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #7B2D8E 0%, #5a1f6a 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(123, 45, 142, 0.3);
}

.catalogo-grid__see-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 142, 0.4);
    background: linear-gradient(135deg, #5a1f6a 0%, #3d1447 100%);
}

.catalogo-grid__see-more svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.catalogo-grid__see-more--less {
    background: linear-gradient(135deg, #9B5DB8 0%, #7B4BA1 100%);
}

.catalogo-grid__see-more--less:hover {
    background: linear-gradient(135deg, #7B4BA1 0%, #5a3a80 100%);
}

/* ===== SELETOR DE QUANTIDADE ===== */
.catalogo-card__quantity-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.catalogo-card__quantity-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #7B2D8E;
    background: #fff;
    color: #7B2D8E;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.catalogo-card__quantity-btn:hover {
    background: #7B2D8E;
    color: #fff;
}
.catalogo-card__quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.catalogo-card__quantity-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    min-width: 2rem;
    text-align: center;
}
.catalogo-card__quantity-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

/* ===== CARD FLUTUANTE DO PEDIDO ===== */
.catalogo-order-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
    background: #fff;
    border: 1.5px solid #7B2D8E;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1rem 1.25rem;
    max-width: 320px;
    transform: translateY(120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.catalogo-order-float.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.catalogo-order-float__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}
.catalogo-order-float.is-expanded .catalogo-order-float__header {
    margin-bottom: 0.75rem;
}
.catalogo-order-float__header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.catalogo-order-float__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #7B2D8E;
}
.catalogo-order-float__count {
    background: #7B2D8E;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}
.catalogo-order-float__toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D8E;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.catalogo-order-float__toggle svg {
    width: 20px;
    height: 20px;
}
.catalogo-order-float.is-expanded .catalogo-order-float__toggle {
    transform: rotate(180deg);
}
.catalogo-order-float__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
}
.catalogo-order-float.is-expanded .catalogo-order-float__body {
    max-height: 300px;
    opacity: 1;
}
.catalogo-order-float__list {
    max-height: 120px;
    overflow-y: auto;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #555;
}
.catalogo-order-float__item {
    padding: 0.35rem 0;
    border-bottom: 1px solid #eee;
}
.catalogo-order-float__item:last-child {
    border-bottom: none;
}
.catalogo-order-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.catalogo-order-float__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.catalogo-order-float__btn svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 480px) {
    .catalogo-order-float {
        left: 1rem;
        right: 1rem;
        bottom: 5.5rem;
        max-width: none;
    }
    .catalogo-card__image-wrapper {
        min-height: 200px;
    }
    .catalogo-hero__title {
        font-size: 1.75rem;
    }
}

/* Busca de produtos */
.catalogo-search {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 0.5rem);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.catalogo-search.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.catalogo-search__container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.catalogo-search__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
    text-align: left;
}
.catalogo-search__wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.catalogo-search__icon {
    position: absolute;
    left: 1rem;
    pointer-events: none;
    color: #7B2D8E;
    opacity: 0.7;
}
.catalogo-search__input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.catalogo-search__input::placeholder {
    color: #999;
}
.catalogo-search__input:focus {
    outline: none;
    border-color: #7B2D8E;
    box-shadow: 0 0 0 3px rgba(123, 45, 142, 0.15);
}
.catalogo-search__clear {
    position: absolute;
    right: 0.5rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    border-radius: 8px;
    display: none;
}
.catalogo-search__clear.is-visible {
    display: block;
}
.catalogo-search__clear:hover {
    color: #7B2D8E;
    background: rgba(123, 45, 142, 0.08);
}
.catalogo-card--search-hidden {
    display: none !important;
}
.catalogo-search__empty {
    text-align: center;
    padding: 3rem 1.5rem;
    font-family: 'Inter', sans-serif;
    color: #666;
    display: none;
}
.catalogo-search__empty.is-visible {
    display: block;
}
.catalogo-search__empty strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Modal Orçamento (Nome/Telefone + envio para planilha) */
.catalogo-orcamento-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.catalogo-orcamento-modal.is-open {
    display: flex;
}
.catalogo-orcamento-modal__box {
    background: #fff;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.catalogo-orcamento-modal__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #7B2D8E;
    margin-bottom: 1rem;
}
.catalogo-orcamento-modal__list {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    max-height: 100px;
    overflow-y: auto;
}
.catalogo-orcamento-modal__field {
    margin-bottom: 1rem;
}
.catalogo-orcamento-modal__field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.35rem;
}
.catalogo-orcamento-modal__field input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}
.catalogo-orcamento-modal__field input:focus {
    outline: none;
    border-color: #7B2D8E;
}
.catalogo-orcamento-modal__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.catalogo-orcamento-modal__btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.catalogo-orcamento-modal__btn--cancel {
    background: #f0f0f0;
    color: #555;
}
.catalogo-orcamento-modal__btn--submit {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}
.catalogo-orcamento-modal__btn--submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.catalogo-orcamento-modal__btn--submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}