/**
 * Casa Floré - Estilos Principais v2.1
 * Otimizado para imagens 960x1280px
 * Corrigido: Cards sem descrição não esticam mais
 */

:root {
    --primary: #E8A84C;
    --primary-dark: #D4942F;
    --secondary: #2D5A3D;
    --secondary-light: #4A7C5C;
    --cream: #FDF8F3;
    --cream-dark: #F5EDE3;
    --text-dark: #2C2C2C;
    --text-muted: #5A5A5A;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.casa-flore-page {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* Leaf Pattern */
.leaf-pattern {
    position: fixed; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%232D5A3D' d='M40 0c5 15 20 25 20 40s-15 25-20 40c-5-15-20-25-20-40S35 15 40 0z'/%3E%3C/svg%3E");
}

/* =============================================================================
   HEADER
   ============================================================================= */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1rem 2rem; transition: all 0.4s ease;
    background: rgba(45, 90, 61, 0.9); backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { display: flex; align-items: baseline; gap: 0.3rem; opacity: 0.85; transition: opacity 0.4s ease; }
.header.scrolled .logo { opacity: 1; }
.logo-casa { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 300; letter-spacing: 0.3em; color: var(--white); }
.logo-flore { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; font-style: italic; color: var(--primary); }

.header-cta {
    background: rgba(255,255,255,0.15); color: var(--white);
    padding: 0.7rem 1.5rem; border-radius: 30px; font-size: 0.9rem; font-weight: 500;
    transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.header.scrolled .header-cta { background: var(--primary); border-color: var(--primary); }
.header-cta:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.header-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.header-cta-phone {
    display: none;
}

.header-cta-label-mobile {
    display: none;
}

.header-home {
    padding: 0.9rem 0 0;
}

.header-home .header-content {
    padding: 0 2rem 1rem;
}

body.admin-bar .header {
    top: var(--wp-adminbar-offset, 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: var(--wp-adminbar-offset, 46px);
    }
}

.home-category-bar {
    background: rgba(253, 248, 243, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: opacity 0.25s ease, max-height 0.25s ease;
    max-height: 120px;
    overflow: hidden;
}

.header.scrolled .home-category-bar {
    opacity: 0;
    max-height: 0;
    pointer-events: none;
}


.home-category-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 2rem 0.85rem;
}

.home-category-form {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.home-category-search-field {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    min-width: min(420px, 40vw);
    padding: 0 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(45, 90, 61, 0.22);
    background: rgba(255, 255, 255, 0.86);
    color: var(--secondary);
    box-shadow: 0 6px 14px rgba(45, 90, 61, 0.08);
}

.home-category-search-field svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.home-category-search-input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--secondary);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
}

.home-category-search-input::placeholder {
    color: rgba(45, 90, 61, 0.7);
}

.home-category-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.55rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(45, 90, 61, 0.22);
    background: rgba(255, 255, 255, 0.78);
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(45, 90, 61, 0.1);
}

.home-category-search-btn svg {
    width: 17px;
    height: 17px;
}

.home-category-search-btn:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-1px);
}

.home-category-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.home-category-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(45, 90, 61, 0.82);
    border-bottom: 2px solid rgba(45, 90, 61, 0.82);
    transform: translateY(-64%) rotate(45deg);
    pointer-events: none;
}

.home-category-select {
    min-width: min(420px, 34vw);
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(45, 90, 61, 0.2);
    background: rgba(255, 255, 255, 0.88);
    color: var(--secondary);
    padding: 0 2.25rem 0 0.95rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(45, 90, 61, 0.08);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.home-category-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 168, 76, 0.2);
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-category-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: min(85vw, 320px);
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    background: var(--white);
    overflow-y: auto;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    padding: 1.2rem;
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-category-menu.is-open {
    transform: translateX(0);
}

.mobile-category-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0.6rem;
}

.mobile-category-search {
    margin-bottom: 1rem;
}

.mobile-category-title {
    margin: 0.1rem 0 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--secondary);
    line-height: 1.1;
}

.mobile-category-title-search {
    margin: 0.15rem 0 0.6rem;
    font-size: 1.18rem;
}

.mobile-search-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--cream-dark);
    background: var(--cream);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mobile-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 168, 76, 0.2);
    background: var(--white);
}

.mobile-search-results {
    margin-top: 0.6rem;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-search-results.is-open {
    display: flex;
}

.mobile-search-item {
    text-align: left;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-search-item:hover,
.mobile-search-item.active {
    border-color: var(--secondary);
    background: rgba(45, 90, 61, 0.08);
    transform: translateY(-1px);
}

.mobile-search-empty {
    padding: 0.35rem 0.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mobile-menu-close {
    background: rgba(45, 90, 61, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--secondary);
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(45, 90, 61, 0.16);
}

.mobile-category-list {
    list-style: none;
    margin: 0;
    padding: 0 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-category-list a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: var(--cream);
    color: var(--secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-category-list a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* =============================================================================
   HERO SECTION COM SLIDER
   ============================================================================= */
.hero {
    --hero-bottom-padding: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 7.5rem 2rem var(--hero-bottom-padding);
    overflow: hidden;
}

@media (min-width: 601px) {
    .header-home ~ .hero {
        padding-top: calc(var(--home-header-height, 0px) + var(--hero-bottom-padding) - 5rem);
    }

    .hero-text {
        order: 1;
        margin-top: 2.5rem;
    }

    .hero-slider-wrapper {
        order: 2;
        margin-top: 2.5rem;
    }

    .hero-offer-stack {
        display: none !important;
    }

    .payment-banner {
        order: 4;
    }

    .payment-banner {
        margin-top: 0.6rem;
    }
}

.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 70%; height: 150%;
    background: linear-gradient(135deg, var(--primary) 0%, #F4C078 100%);
    border-radius: 0 0 0 50%; opacity: 0.15; z-index: 0;
}

.hero-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 4rem;
    align-items: center; position: relative; z-index: 1;
}

.hero-text { animation: fadeInUp 1s ease forwards; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--cream-dark); padding: 0.5rem 1rem; border-radius: 20px;
    font-size: 1rem; color: var(--secondary); margin: 0 0 1.5rem;
    border: 1px solid rgba(45, 90, 61, 0.1);
}

.hero-badge-mobile {
    display: none;
    margin-bottom: 0;
}

.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--text-dark); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title span { color: var(--primary); font-style: italic; }
.hero-description { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 450px; }

.hero-cta {
    display: inline-flex; align-items: center; gap: 0.8rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white); padding: 1.2rem 2.5rem; border-radius: 50px;
    font-size: 1.1rem; font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
}
.hero-cta:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 35px rgba(45, 90, 61, 0.4); }
.hero-cta svg { width: 24px; height: 24px; }

.hero-offer-stack {
    grid-column: 1 / -1;
    display: grid;
    gap: 1rem;
    margin-top: -0.15rem;
    animation: fadeInUp 0.9s ease 0.2s forwards;
    opacity: 0;
}

.hero-offer-panel {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(45, 90, 61, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    padding: clamp(1.1rem, 2.2vw, 1.8rem);
    text-align: center;
}

.hero-offer-title {
    margin: 0 auto 0.95rem;
    max-width: 900px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.45rem, 2.9vw, 2.35rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-word-highlight {
    color: var(--secondary);
    font-weight: 700;
}

.hero-offer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2f6d49 100%);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(45, 90, 61, 0.34);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(45, 90, 61, 0.4);
    filter: saturate(1.08);
}

.hero-offer-cta svg {
    width: 24px;
    height: 24px;
}

.hero-google-rating {
    margin-top: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.hero-google-stars {
    color: #fbbc05;
    letter-spacing: 0.12em;
    font-size: 1.05rem;
}

.hero-google-score {
    color: var(--text-dark);
    font-weight: 700;
}

.hero-google-separator {
    color: rgba(44, 44, 44, 0.45);
    margin: 0 0.2rem;
}

.hero-google-link,
.hero-google-proof {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
    transition: opacity 0.2s ease;
}

.hero-google-link {
    color: #b9842f;
}

.hero-google-proof {
    color: #b9842f;
}

.hero-google-label {
    color: #b9842f;
    font-weight: 600;
}

.hero-google-link-full {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.hero-google-link-full .hero-google-score {
    color: var(--text-dark);
}

.hero-google-link-full .hero-google-label {
    color: #1a73e8;
    font-weight: 600;
}

.hero-google-score + .hero-google-link,
.hero-google-score + .hero-google-label {
    margin-left: 0.6rem;
}

.hero-google-total {
    color: var(--text-muted);
    font-size: 0.94em;
}

.hero-google-link:hover,
.hero-google-proof:hover {
    opacity: 0.85;
}

.hero-offer-links-title {
    margin: 0.1rem 0 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2.05rem, 3.2vw, 3rem);
    line-height: 1.05;
    color: var(--text-dark);
}

.hero-offer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-offer-link {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: 22px;
    border: 1px solid rgba(45, 90, 61, 0.12);
    background: rgba(250, 244, 235, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.15rem 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-offer-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.hero-offer-link-pill {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.hero-offer-link-primary .hero-offer-link-pill,
.hero-offer-link-secondary .hero-offer-link-pill {
    background: linear-gradient(135deg, var(--secondary) 0%, #2f6d49 100%);
}

.hero-offer-link-text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--text-muted);
}

/* Payment Banner */
.payment-banner {
    grid-column: 1 / -1;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.payment-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: center;
    text-align: center;
    padding: 1.1rem 1.6rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(232, 168, 76, 0.18) 0%, rgba(45, 90, 61, 0.12) 100%);
    border: 1px solid rgba(45, 90, 61, 0.16);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.payment-banner-text p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.payment-banner-text p + p {
    margin-top: 0.35rem;
    color: var(--text-muted);
}

/* Hero Slider */
.hero-slider-wrapper {
    position: relative; animation: fadeInRight 1s ease 0.3s forwards; opacity: 0;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRightSoft {
    from {
        opacity: 0;
        transform: translate3d(96px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-slider {
    position: relative; width: 100%; height: 500px;
    border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
}

.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
}

.hero-slider-wrapper::after {
    content: ''; position: absolute; top: -20px; right: -20px;
    width: 100%; height: 100%; border: 3px solid var(--primary);
    border-radius: 20px; z-index: -1;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}

.hero-slider-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.5); cursor: pointer;
    transition: all 0.3s ease; border: 2px solid rgba(255,255,255,0.8);
}

.hero-slider-dot.active {
    background: var(--primary); width: 30px; border-radius: 6px;
}

/* =============================================================================
   FEATURES
   ============================================================================= */
.features { padding: 2rem 2rem; background: var(--white); position: relative; }
.features-container { max-width: 1000px; margin: 0 auto; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    text-align: center; padding: 2rem; background: var(--cream);
    border-radius: 20px; transition: all 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.feature-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #F4C078 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 2rem;
}
.feature-icon svg { width: 36px; height: 36px; fill: var(--white); }
.feature-card h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* =============================================================================
   ABOUT
   ============================================================================= */
.about { padding: 6rem 2rem; position: relative; }
.about-container { max-width: 900px; margin: 0 auto; text-align: center; }

.section-label {
    display: inline-block; font-size: 0.85rem; color: var(--secondary);
    text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem; font-weight: 500;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 1.5rem; line-height: 2rem; }

.about-text { font-size: 1.2rem; color: var(--text-muted); line-height: 1.8; max-width: 700px; margin: 0 auto; }
.about-text em { color: var(--primary-dark); font-style: normal; font-weight: 500; }
.about-text-spaced { padding: 1rem 0; }
.about-text-link a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

/* =============================================================================
   PRODUCTS / CAROUSEL - OTIMIZADO PARA 960x1280 - CORRIGIDO
   ============================================================================= */
.products-section { padding: 5rem 2rem; background: var(--white); }
.products-container { max-width: 1200px; margin: 0 auto; }
.products-header { text-align: center; margin-bottom: 3rem; }

.carousel-wrapper {
    position: relative;
    overflow: hidden; /* só corta lateral */
}

.carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
    will-change: transform;
 	align-items: stretch;
}

.carousel-card {
    flex: 0 0 calc((100% - (1.5rem * 2)) / 3);
    min-width: 0;
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 0;
    /* Remove max-height se existir */
}

.carousel-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Imagem do card otimizada para 960x1280 (aspect ratio 3:4) */
.carousel-image {
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.carousel-card:hover .carousel-image img { transform: scale(1.05); }

.carousel-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

.carousel-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.carousel-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
	display: -webkit-box;
    -webkit-line-clamp: 3; /* ajuste aqui (2-4) */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-info p:empty {
  display: none;
}

.carousel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
    margin-top: auto;
}

.price-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    line-height: 1.2;
}

.carousel-price-old,
.produto-price-old,
.produto-single-price-old {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.68;
}

.carousel-price { font-size: 1.1rem; font-weight: 600; color: var(--secondary); }

.carousel-btn {
    background: var(--secondary); color: var(--white);
    padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 500;
    transition: all 0.3s ease;
}
.carousel-btn:hover { background: var(--secondary-light); transform: scale(1.05); }

.produto-selo-esgotado {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(41, 28, 24, 0.9);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.carousel-status-esgotado,
.produto-status-esgotado,
body.single-produto_flore .produto-single-status-esgotado {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.82rem;
    border-radius: 999px;
    background: #f4dfda;
    color: #8b3528;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.carousel-card.is-esgotado,
.produto-card.is-esgotado {
    background: #f4f3f0;
}

.carousel-card.is-esgotado:hover,
.produto-card.is-esgotado:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.carousel-card.is-esgotado .carousel-image img,
.produto-card.is-esgotado .produto-image img {
    filter: grayscale(34%);
    opacity: 0.7;
}

.carousel-card.is-esgotado .carousel-image::after,
.produto-card.is-esgotado .produto-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 20, 0.2);
    pointer-events: none;
}

/* Carousel Controls */
.carousel-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }

.carousel-arrow {
    width: 50px; height: 50px; background: var(--cream); border: 2px solid var(--secondary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease; color: var(--secondary); font-size: 1.2rem;
}
.carousel-arrow:hover { background: var(--secondary); color: var(--white); }

.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
    width: 10px; height: 10px; background: var(--cream-dark);
    border-radius: 50%; cursor: pointer; transition: all 0.3s ease;
}
.carousel-dot.active { background: var(--secondary); width: 30px; border-radius: 10px; }

.carousel-desc-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 0.4rem;
}

/* só aplica clamp quando o JS decidir */
.carousel-desc.is-clamped .carousel-desc-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2 linhas */
  overflow: hidden;
}

/* expandido */
.carousel-card.is-desc-open .carousel-desc-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* botão */
.carousel-desc-toggle {
  display: none; /* começa escondido */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--secondary);
}
.carousel-desc-toggle:hover {
  text-decoration: underline;
}

/* View Catalog Button */
.view-catalog { text-align: center; margin-top: 2.5rem; }
.catalog-btn {
    display: inline-flex; align-items: center; gap: 0.8rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
    color: var(--white); padding: 1rem 2rem; border-radius: 50px;
    font-size: 1rem; font-weight: 500; transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(232, 168, 76, 0.35);
}
.catalog-btn:hover { transform: translateY(-3px); background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-light) 100%); }

/* No Image Placeholder */
.no-image {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%); font-size: 3rem;
}

/* =============================================================================
   PRODUTOS GRID (OUTRAS OPCOES) - OTIMIZADO PARA 960x1280 - CORRIGIDO
   ============================================================================= */
.produtos-section { padding: 3rem 2rem; background: var(--cream); min-height: 60vh; }
.produtos-container { max-width: 1200px; margin: 0 auto; }
.produtos-header { text-align: center; margin-bottom: 3rem; }

.produtos-loading {
    display: none;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.produtos-loading-spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(45, 90, 61, 0.2);
    border-top-color: var(--secondary);
    animation: produtosSpinner 0.9s linear infinite;
}

@keyframes produtosSpinner {
    to { transform: rotate(360deg); }
}

body.produto-busca-pendente .produtos-loading {
    display: flex;
}

body.produto-busca-pendente .categoria-filter,
body.produto-busca-pendente .categoria-select-wrapper,
body.produto-busca-pendente .produtos-grid,
body.produto-busca-pendente .produtos-pagination,
body.produto-busca-pendente .no-products {
    display: none !important;
}

/* Filtro de Categorias */
.categoria-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.categoria-btn {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.categoria-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.categoria-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* Select de categorias - escondido no desktop */
.categoria-select-wrapper {
    display: none;
}

.categoria-select-label {
    display: block;
}

.categoria-select-shell {
    position: relative;
}

.categoria-select-shell::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
    opacity: 0.85;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Cards com mesma altura na linha */
}

.produto-card {
    background: var(--white); border-radius: 20px;
    overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Mesma altura que os outros cards na linha */
}
.produto-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.produto-card-highlight {
    box-shadow: 0 0 0 3px rgba(232, 168, 76, 0.45), var(--shadow-lg);
    animation: produtoHighlight 1.8s ease;
}

@keyframes produtoHighlight {
    0% { transform: scale(1); }
    30% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

/* Imagem do produto otimizada para 960x1280 */
.produto-image {
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Efeito de hover apenas no desktop (com mouse) */
@media (hover: hover) and (pointer: fine) {
    .produto-image img {
        transition: transform 0.5s ease;
    }
    .produto-card:hover .produto-image img {
        transform: scale(1.05);
    }
}

.produto-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1; /* Preenche o espaço restante */
}

.produto-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    min-height: 2.8em; /* Altura para 2 linhas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.produto-info > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Descrição expansível nos produtos */
.produto-desc {
    margin-bottom: 1rem;
}

.produto-desc-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 0.4rem;
    /* Desktop: mostra até 2 linhas por padrão */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* Expandido */
.produto-card.is-desc-open .produto-desc-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* Botão de toggle - escondido no desktop por padrão */
.produto-desc-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
}

.produto-desc-toggle:hover {
    text-decoration: underline;
}

/* Mostra botão no desktop quando há truncamento */
.produto-desc.is-clamped .produto-desc-toggle {
    display: block;
}

/* Hint de descrição - escondido no desktop */
.produto-desc-hint {
    display: none;
}

.produto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
    margin-top: auto; /* Sempre no fundo do card */
}

.produto-price-old { font-size: 0.95rem; }

.produto-price { font-size: 1.2rem; font-weight: 600; color: var(--secondary); }

.produto-btn {
    background: var(--secondary); color: var(--white);
    padding: 0.6rem 1.2rem; border-radius: 20px; font-size: 0.9rem; font-weight: 500;
    transition: all 0.3s ease;
}
.produto-btn:hover { background: var(--secondary-light); transform: scale(1.05); }

.no-products { text-align: center; padding: 3rem; color: var(--text-muted); font-size: 1.1rem; grid-column: 1 / -1; }

.produtos-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.produtos-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.produtos-pagination .page-numbers li {
    margin: 0;
}

.produtos-pagination .page-numbers a,
.produtos-pagination .page-numbers span {
    min-width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid var(--cream-dark);
    background: var(--white);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.8rem;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.produtos-pagination .page-numbers a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.produtos-pagination .page-numbers .current {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--white);
}

.produtos-pagination .page-numbers .dots {
    border-color: transparent;
    background: transparent;
}

/* =============================================================================
   GALLERY
   ============================================================================= */
.gallery { padding: 5rem 2rem; background: var(--cream); }
.gallery-container { max-width: 1200px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 3rem; }

.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px); gap: 1rem;
}

.gallery-item {
    position: relative; overflow: hidden; border-radius: 16px; cursor: pointer;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.gallery-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s ease; z-index: 1;
}
.gallery-item:hover::before { opacity: 1; }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
    color: white; z-index: 2;
}
.gallery-caption h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 0.3rem; }
.gallery-caption p { font-size: 0.85rem; opacity: 0.9; }

/* =============================================================================
   INFO SECTION
   ============================================================================= */
.info {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white); position: relative; overflow: hidden;
}

.info::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M50 0c10 20 30 35 30 50s-20 35-30 50c-10-15-30-35-30-50S40 20 50 0z'/%3E%3C/svg%3E");
}

.info-container {
    max-width: 600px; margin: 0 auto;
    position: relative; z-index: 1;
}

.info-block { text-align: center; }

.hours-simple {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.address-content { font-size: 1.1rem; line-height: 1.8; display: flex; flex-direction: column; align-items: center; }
.address-content p { margin-bottom: 0.8rem !important; }
.address-content a { color: var(--primary); transition: opacity 0.3s; }
.address-content a:hover { opacity: 0.8; }
.address-content .contact-link { display: inline-flex; align-items: center; gap: 0.5rem; }
.address-content .contact-link svg { flex-shrink: 0; }

.hybrid-notice {
    background: rgba(255,255,255,0.1); padding: 1rem 1.5rem; border-radius: 12px;
    margin-top: 1.5rem; display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem;
}
.hybrid-notice span { font-size: 1.2rem; }

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta-section { padding: 6rem 2rem; text-align: center; }
.cta-container { max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text-dark); margin-bottom: 1rem; line-height: 2rem; }
.cta-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }

.main-cta {
    display: inline-flex; align-items: center; gap: 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white); padding: 1.3rem 3rem; border-radius: 50px;
    font-size: 1.2rem; font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.main-cta:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 20px 40px rgba(37, 211, 102, 0.45); }
.main-cta svg { width: 28px; height: 28px; }

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer { background: var(--text-dark); color: var(--white); padding: 3rem 2rem; text-align: center; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-casa { color: var(--white); }
.footer-logo .logo-flore { color: var(--primary); }
.footer-text { opacity: 0.7; font-size: 0.9rem; }

.footer-social { display: flex; justify-content: center; gap: 1rem; margin: 1.5rem 0; }
.footer-social a {
    width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.2rem; transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-social a svg { width: 22px; height: 22px; }

/* =============================================================================
   WHATSAPP FLOAT
   ============================================================================= */
.whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; width: 65px; height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-float 2s ease-in-out infinite;
}

@keyframes pulse-float {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); animation: none; }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* =============================================================================
   PAGE HEADER
   ============================================================================= */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 6.2rem 2rem 2rem; text-align: center; color: var(--white); position: relative;
}

.page-header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M50 0c10 20 30 35 30 50s-20 35-30 50c-10-15-30-35-30-50S40 20 50 0z'/%3E%3C/svg%3E");
}

.page-header-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.3rem; line-height: 1.08; }
.page-header p { font-size: 1.2rem; opacity: 0.9; margin: 0 auto 0.35rem; line-height: 1.3; }

.back-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--primary); margin-top: 0.35rem; font-weight: 500; transition: all 0.3s ease;
}
.back-link:hover { transform: translateX(-5px); }

.home-category-bar-produtos {
    border-top: 0;
}

.page-header + .home-category-bar-produtos {
    position: relative;
    z-index: 5;
}

.produtos-section .categoria-filter,
.produtos-section .categoria-select-wrapper {
    display: none !important;
}

@media (min-width: 601px) {
    .page-header h1 {
        margin-bottom: 0.55rem;
    }

    .page-header p {
        margin: 0 auto 0.7rem;
        line-height: 1.38;
    }

    .back-link {
        margin-top: 0.55rem;
    }

    .home-category-bar-produtos .home-category-bar-inner {
        padding-top: 0.95rem;
    }

    .produtos-section .produto-image img {
        object-position: center 42%;
    }
}


/* =============================================================================
   SOBRE O PROPRIETÁRIO
   ============================================================================= */
.owner-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.owner-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 168, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.owner-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.owner-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.owner-image-wrapper {
    position: relative;
}

.owner-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.owner-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--secondary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3);
}

.owner-text h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.owner-title {
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.owner-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.owner-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.owner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.owner-cta svg {
    width: 20px;
    height: 20px;
}

/* =============================================================================
   RESPONSIVE - TABLET
   ============================================================================= */
@media (max-width: 600px) {
    .header-home {
        padding: 1rem 2rem;
    }

    .header .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0.75rem;
        padding: 0;
    }

    .header .logo {
        justify-self: center;
    }

    .header .header-cta-group {
        justify-self: end;
    }

    .header .header-cta {
        padding: 0.55rem 0.85rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .header .header-cta-phone {
        display: inline-flex;
    }

    .header .header-cta-label-desktop {
        display: none;
    }

    .header .header-cta-label-mobile {
        display: inline;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .home-category-bar {
        display: none;
    }

    .mobile-menu-backdrop,
    .mobile-category-menu {
        display: block;
    }

    .hero {
        padding-top: 6rem;
    }

    body.admin-bar .hero {
        padding-top: calc(6rem);
    }

    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin: 0 auto 2rem; }
    .hero-slider-wrapper { order: -1; }
    .hero-offer-stack { order: 1; margin-top: 0.25rem; }
    .hero-text { order: 2; }
    .payment-banner { order: 3; }
    .hero-slider { height: 400px; }
    .hero-slider-wrapper::after { display: none; }
    .hero-offer-panel {
        border-radius: 24px;
        padding: 1.2rem 1.1rem;
    }
    .hero-offer-title {
        font-size: clamp(1.5rem, 4.5vw, 2.1rem);
    }
    .hero-offer-links {
        gap: 0.85rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    /* Produtos: 2 colunas no tablet */
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
        .carousel-card { flex-basis: calc((100% - 1.5rem) / 2); }
    .owner-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    .owner-image-wrapper {
        margin: 0 auto;
    }
    .owner-image {
        width: 150px;
        height: 150px;
    }
    .header-cta-whatsapp {
        display: none;
    }
}

/* =============================================================================
   RESPONSIVE - MOBILE
   ============================================================================= */
@media (max-width: 600px) {
    .hero-content {
        row-gap: 0;
    }
    .header { padding: 1rem; }
    .header-home { padding: 1rem; }
    .header .logo { gap: 0.2rem; }
    .header .logo-casa { font-size: 1.25rem; letter-spacing: 0.2em; }
    .header .logo-flore { font-size: 1.5rem; }
    .header-cta-group { gap: 0.4rem; }
    .header-cta { padding: 0.5rem 0.75rem; font-size: 0.75rem; }
    .hero-slider {
        height: 380px;
        position: relative;
        isolation: isolate;
        border-radius: 0;
        border-bottom: 0;
        box-shadow: none;
        background: #F3EEEA;
    }
    .hero-slide img {
        display: block;
        object-position: center 22%;
    }
    .hero-slider::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: -5px;
        height: calc(100% + 5px);
        background: linear-gradient(
            to bottom,
            rgba(243, 238, 234, 0) 0%,
            rgba(243, 238, 234, 0.1) 10%,
            rgba(243, 238, 234, 0.2) 20%,
            rgba(243, 238, 234, 0.3) 30%,
            rgba(243, 238, 234, 0.4) 40%,
            rgba(243, 238, 234, 0.5) 50%,
            rgba(243, 238, 234, 0.6) 60%,
            rgba(243, 238, 234, 0.7) 70%,
            rgba(243, 238, 234, 0.8) 80%,
            rgba(243, 238, 234, 1) 90%,
            rgba(243, 238, 234, 1) 100%
        );
        pointer-events: none;
        z-index: 2;
    }
    .hero-slider-dots {
        display: none;
    }
    .hero {
        padding-top: calc(var(--home-header-height, 74px));
        --hero-bottom-padding: 2.2rem;
    }

    body.admin-bar .hero {
        padding-top: calc(var(--home-header-height, 74px));
    }
    .hero-slider-wrapper,
    .hero-offer-stack {
        width: calc(100% + 4rem);
        max-width: calc(100% + 4rem);
        margin-left: -2rem;
        margin-right: -2rem;
    }
    .hero-badge-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: stretch;
        gap: 0.45rem;
        order: -2;
        position: relative;
        z-index: 6;
        width: calc(100% + 4rem);
        max-width: calc(100% + 4rem);
        margin: 0 -2rem 0;
        padding: 0.8rem 1rem 0.8rem;
        font-size: 0.9rem;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background: rgba(253, 248, 243, 0.9);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        text-decoration: none;
        color: var(--secondary);
    }
    .hero-badge-mobile::before,
    .hero-badge-mobile::after {
        content: '';
        flex: 1 1 auto;
        min-width: 22px;
        max-width: 78px;
        height: 1px;
        background: rgba(45, 90, 61, 0.28);
    }
    .hero-badge-mobile > span[aria-hidden="true"] {
        margin-right: 0.1rem;
    }
    .hero-badge-mobile:hover {
        opacity: 0.92;
    }
    .hero-slider-wrapper {
        margin-top: -1px;
    }
    .hero-description {
        margin: 0 auto 0;
    }
    .hero-text .hero-badge {
        display: none;
    }
    .hero-offer-stack {
        order: 1;
        gap: 1.05rem;
        margin-top: -14.8rem;
        position: relative;
        z-index: 3;
        padding: 0.35rem 0 1rem;
        background: linear-gradient(
            to bottom,
            rgba(243, 238, 234, 0.01) 0%,
            rgba(243, 238, 234, 0.02) 38%,
            rgba(243, 238, 234, 0.08) 52%,
            rgba(243, 238, 234, 0.2) 64%,
            rgba(243, 238, 234, 0.45) 74%,
            rgba(243, 238, 234, 0.68) 82%,
            rgba(243, 238, 234, 0.86) 90%,
            rgba(243, 238, 234, 0.95) 96%,
            rgba(243, 238, 234, 1) 100%
        );
    }
    .hero-offer-stack::after {
        display: none;
    }
    .hero-text {
        order: 2;
        margin-top: 2rem;
    }
    .payment-banner { order: 3; margin-top: 1rem; }
    .hero-offer-panel {
        position: relative;
        border-radius: 0;
        padding: 0.2rem 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
    }
    .hero-offer-panel::before {
        display: none;
    }
    .hero-offer-panel::after {
        display: none;
    }
    .hero-offer-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.56rem, 6vw, 1.85rem);
        font-weight: 500;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0.25rem 0 1.8rem;
        padding: 0.72rem 1rem;
        padding-left: calc(1.5rem + env(safe-area-inset-left, 0px));
        padding-right: calc(1.5rem + env(safe-area-inset-right, 0px));
        box-sizing: border-box;
        background: rgba(236, 227, 214, 0.9);
        border-radius: 0;
        box-shadow: 0 8px 18px rgba(44, 44, 44, 0.08);
        line-height: 1.06;
        letter-spacing: 0.01em;
        animation: slideInFromRightSoft 2.9s cubic-bezier(0.22, 1, 0.36, 1) 1.5s both;
        will-change: transform, opacity;
    }
    .hero-offer-title .hero-word-highlight {
        font-weight: 600;
    }
    .hero-offer-cta {
        width: fit-content;
        max-width: 100%;
        padding: 0.72rem 1.55rem;
        font-size: 0.95rem;
    }
    .hero-google-rating {
        width: fit-content;
        margin: 1.25rem auto 0;
        padding: 0.34rem 0.78rem;
        background: rgba(236, 227, 214, 0.58);
        border-radius: 999px;
        box-shadow: 0 6px 16px rgba(44, 44, 44, 0.07);
        font-size: 0.92rem;
        gap: 0.25rem;
    }
    .hero-offer-links-title {
        font-size: clamp(1.25rem, 5.6vw, 1.55rem);
        white-space: nowrap;
        line-height: 1.05;
        margin-top: 1rem;
    }
    .hero-offer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        width: calc(100% - 18px);
        max-width: 360px;
        margin: 0 auto;
    }
    .hero-offer-link {
        border-radius: 18px;
        padding: 0.85rem 0.85rem 1rem;
        background: rgba(248, 241, 231, 0.9);
        border: 1px solid rgba(45, 90, 61, 0.14);
        backdrop-filter: blur(5px);
        box-shadow: 0 10px 20px rgba(28, 31, 29, 0.12);
    }
    .hero-offer-link-pill {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.45rem 0.6rem;
    }
    .hero-offer-link-text {
        text-align: center;
        font-size: 0.85rem;
        line-height: 1.3;
    }
    .payment-banner-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem 1.2rem;
    }
    .payment-banner-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    .payment-banner-text p {
        font-size: 0.95rem;
    }

    /* Info section no mobile */
    .info { padding: 2rem 1.5rem; }
    .hours-simple { font-size: 1rem; margin-bottom: 1rem; }
    .address-content p { margin-bottom: 0.5rem !important; }
    .hybrid-notice { margin-top: 1rem; padding: 0.8rem 1rem; }

    /* Page Header - compacto no mobile */
    .page-header {
        padding: 5rem 1.5rem 1.35rem;
    }
    .page-header h1 {
        margin-bottom: 0.15rem;
        line-height: 1.04;
    }
    .page-header p {
        display: none;
    }
    .back-link {
        margin-top: 0.2rem;
    }

    /* Redução de espaçamento entre seções para mobile */
    .about,
    .owner-section,
    .gallery,
    .info,
    .cta-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .products-section { padding: 2rem 2rem; }
    .products-header { margin-bottom: 1.5rem; }
    .hero-content { gap: 0; }

    /* Produtos section - menos espaço superior */
    .produtos-section {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* Features: mantém 2 colunas no mobile, com ajustes de espaçamento */
    .features { padding: 1.5rem 1rem; }
    .features-grid { gap: 1rem; }
    .feature-card { padding: 1.5rem 1rem; }
    .feature-icon { width: 60px; height: 60px; margin-bottom: 1rem; }
    .feature-icon svg { width: 30px; height: 30px; }
    .feature-card h3 { font-size: 1.1rem; }
    .feature-card p { font-size: 0.85rem; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
    .whatsapp-float { width: 55px; height: 55px; bottom: 1.5rem; right: 1.5rem; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .carousel-card {
        flex-basis: 100%;
    }
    .carousel-arrow { display: none !important; }

    /* Filtro de categorias no mobile - esconde botões, mostra select */
    .categoria-filter {
        display: none;
    }
    .categoria-select-wrapper {
        display: block;
        margin: 0.9rem 2rem 1.35rem;
        padding: 0;
    }
    .categoria-select-label {
        margin: 0 0 0.45rem;
        padding-left: 0.3rem;
        font-family: 'Outfit', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.09em;
        color: rgba(45, 90, 61, 0.82);
        line-height: 1;
    }
    .categoria-select-shell::after {
        right: 1.05rem;
        width: 0.52rem;
        height: 0.52rem;
    }
    .categoria-select {
        width: 100%;
        min-height: 50px;
        padding: 0.82rem 2.65rem 0.82rem 1rem;
        font-size: 0.97rem;
        line-height: 1.3;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        color: var(--secondary);
        background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
        border: 1.5px solid rgba(45, 90, 61, 0.52);
        border-radius: 14px;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: none;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
        white-space: nowrap;
        text-overflow: ellipsis;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .categoria-select:hover {
        border-color: rgba(45, 90, 61, 0.72);
        background: #ffffff;
    }
    .categoria-select:focus,
    .categoria-select:focus-visible {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(232, 168, 76, 0.23), 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    /* Produtos: 2 colunas no mobile */
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .produto-card {
        border-radius: 12px;
        height: 100%; /* Garante mesma altura */
    }
    .produtos-pagination .page-numbers {
        gap: 0.4rem;
    }
    .produtos-pagination .page-numbers a,
    .produtos-pagination .page-numbers span {
        min-width: 2.2rem;
        height: 2.2rem;
        font-size: 0.85rem;
    }
    .produto-info {
        padding: 0.8rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .produto-info h4 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
        min-height: 2.6em; /* Altura fixa para 2 linhas */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Descrição no mobile - apenas hint, texto escondido */
    .produto-desc {
        margin-bottom: 0.5rem;
    }
    .produto-desc-text {
        display: none; /* Esconde texto no mobile */
    }
    /* Esconde botão no mobile */
    .produto-desc-toggle {
        display: none !important;
    }
    /* Hint visível apenas no mobile */
    .produto-desc-hint {
        display: block;
        font-size: 0.75rem;
        color: var(--text-muted);
        font-style: italic;
    }
    .produto-footer {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 0.5rem;
        margin-top: auto;
    }
    .produto-price {
        font-size: 0.85rem;
    }
    .produto-price-old {
        font-size: 0.72rem;
    }
    .produto-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
    .produto-image {
        cursor: pointer;
    }
	
	 .carousel-card .carousel-image {
    position: relative;
  }

  .carousel-card .carousel-image .carousel-arrow-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;

    /* NOVO VISUAL */
    background: rgba(255, 255, 255, 0.9);
    color: #111;

    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 600;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    z-index: 5;
    cursor: pointer;
    user-select: none;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .carousel-card .carousel-image .carousel-arrow-overlay.left {
    left: 10px;
  }
  .carousel-card .carousel-image .carousel-arrow-overlay.right {
    left: auto;
    right: 10px;
  }

  .carousel-card .carousel-image .carousel-arrow-overlay:active {
    transform: translateY(-50%) scale(0.92);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  /* esconde controles padrão no mobile */
  .carousel-controls {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
    .hero-offer-title {
        animation: none !important;
    }
}

/* =============================================================================
   RESPONSIVE - MOBILE EXTRA PEQUENO
   ============================================================================= */
@media (max-width: 400px) {
    .feature-card { padding: 1.2rem 0.8rem; }
    .feature-card h3 { font-size: 1rem; }
    .feature-card p { font-size: 0.8rem; }
}

/* Utilitários */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }

.casa-flore-page .entry-content,
.casa-flore-page .page-content { max-width: none; margin: 0; padding: 0; }

/* =============================================================================
   LIGHTBOX - EXPANDIR IMAGEM
   ============================================================================= */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    animation: lightboxZoomIn 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.lightbox-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: none;
}

.lightbox-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.lightbox-title {
    text-align: center;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-top: 1rem;
}

.lightbox-price {
    text-align: center;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 0.35rem;
}

.lightbox-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.lightbox-info {
    padding: 0 1rem;
    max-width: 100%;
}

/* Lightbox no mobile */
@media (max-width: 600px) {
    .lightbox-content img {
        max-height: 50vh;
    }
    .lightbox-title {
        font-size: 1.1rem;
        margin-top: 0.75rem;
    }
    .lightbox-price {
        font-size: 0.95rem;
        margin-top: 0.25rem;
    }
    .lightbox-description {
        font-size: 0.85rem;
        margin-top: 0.4rem;
    }
}

/* Ícones de ação na imagem do produto */
.produto-image-actions {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.produto-action-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.produto-action-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.produto-action-btn svg {
    width: 16px;
    height: 16px;
    stroke: #2D5A3D;
}

.produto-action-btn:hover svg {
    stroke: #E8A84C;
}

/* Botão de dimensões (texto) */
.dimensoes-btn {
    width: auto;
    height: auto;
    border-radius: 14px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #2D5A3D;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-right: auto;
}

.dimensoes-btn:hover {
    color: #E8A84C;
    transform: scale(1.05);
}

/* Botão de zoom (lupa) - só aparece no mobile */
.zoom-btn {
    display: none;
    margin-left: auto;
}

/* Quando só tem um botão (zoom), centraliza à direita */
.produto-image-actions:not(:has(.dimensoes-btn)) {
    justify-content: flex-end;
}

/* Mobile */
@media (max-width: 600px) {
    .produto-image {
        cursor: pointer;
    }

    .zoom-btn {
        display: flex;
    }

    .produto-action-btn {
        width: 28px;
        height: 28px;
    }

    .dimensoes-btn {
        width: auto;
        height: auto;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.95);
    }

    .produto-action-btn svg {
        width: 14px;
        height: 14px;
    }
}


/* SINGLE PRODUTO - layout refinado */
body.single-produto_flore {
    background:
        radial-gradient(circle at 12% 8%, rgba(232, 168, 76, 0.18), transparent 38%),
        radial-gradient(circle at 88% 18%, rgba(74, 124, 92, 0.14), transparent 32%),
        linear-gradient(180deg, #f9f6f1 0%, #f6fbf8 45%, #ffffff 100%);
}

body.single-produto_flore .wp-site-blocks {
    min-height: 0;
}

body.single-produto_flore main.wp-block-group {
    max-width: min(980px, calc(100% - 2.4rem));
    margin: clamp(1rem, 2.2vw, 1.8rem) auto 1.2rem !important;
    padding: clamp(0.9rem, 2vw, 1.25rem) !important;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(45, 90, 61, 0.12);
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(20, 40, 28, 0.1);
    backdrop-filter: blur(2px);
}

body.single-produto_flore .wp-block-post-title {
    max-width: 760px;
    margin: 0 auto 1.2rem !important;
    font-size: clamp(2rem, 4.4vw, 3.05rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #1f3026;
}

body.single-produto_flore .produto-single-back-wrap {
    max-width: 760px;
    margin: 0 auto 0.85rem;
}

body.single-produto_flore .produto-single-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(45, 90, 61, 0.28);
    background: rgba(255, 255, 255, 0.92);
    color: #2d5a3d;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.single-produto_flore .produto-single-back-btn:hover {
    background: #2d5a3d;
    color: #ffffff;
    border-color: #2d5a3d;
}

body.single-produto_flore .wp-block-post-featured-image {
    max-width: 760px;
    margin: 0 auto !important;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(45, 90, 61, 0.12);
    box-shadow: 0 18px 40px rgba(17, 34, 24, 0.14);
}

body.single-produto_flore .wp-block-post-featured-image img {
    display: block;
    width: 100%;
    height: auto;
}

body.single-produto_flore .entry-content.wp-block-post-content {
    max-width: 760px;
    margin: 1rem auto 0 !important;
    padding: 0 !important;
    display: grid;
    gap: 0.95rem;
}

body.single-produto_flore .entry-content.wp-block-post-content > .produto-single-extra {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
}

body.single-produto_flore .produto-single-extra {
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    border: 1px solid rgba(45, 90, 61, 0.2);
    border-radius: 16px;
    padding: 1.1rem 1.25rem 1.15rem;
}

body.single-produto_flore .produto-single-subtitle {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    color: #1f3026;
}

body.single-produto_flore .produto-single-desc {
    margin: 0 0 0.8rem;
    color: #2f3a32;
    line-height: 1.65;
    font-size: 1.02rem;
}

body.single-produto_flore .produto-single-price-wrap {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

body.single-produto_flore .produto-single-price-old {
    font-size: 1rem;
    opacity: 0.62;
}

body.single-produto_flore .produto-single-price {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d5a3d;
}

body.single-produto_flore .produto-single-status-esgotado {
    margin: 0.1rem 0 0;
    align-self: flex-start;
}

body.single-produto_flore .produto-single-actions {
    margin-top: 0.85rem;
}

body.single-produto_flore .produto-single-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.15rem;
    border-radius: 999px;
    background: #2d5a3d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 16px rgba(45, 90, 61, 0.2);
}

body.single-produto_flore .produto-single-cta:hover {
    background: #1f4029;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(31, 64, 41, 0.26);
}

/* Oculta metadados e navegacao padrao do post no produto */
body.single-produto_flore .wp-block-group.has-accent-4-color.has-small-font-size,
body.single-produto_flore .wp-block-post-author,
body.single-produto_flore .wp-block-post-author-name,
body.single-produto_flore .wp-block-post-date,
body.single-produto_flore .wp-block-post-navigation-link,
body.single-produto_flore .wp-block-separator,
body.single-produto_flore .wp-block-query,
body.single-produto_flore .wp-block-query-title,
body.single-produto_flore .wp-block-post-template,
body.single-produto_flore .wp-block-comments,
body.single-produto_flore .wp-block-post-comments-form,
body.single-produto_flore .wp-site-blocks > footer,
body.single-produto_flore footer.wp-block-template-part,
body.single-produto_flore .footer,
body.single-produto_flore main.wp-block-group > .wp-block-group.alignwide {
    display: none !important;
}

@media (max-width: 800px) {
    body.single-produto_flore main.wp-block-group {
        max-width: calc(100% - 1.2rem);
        margin: 0.8rem auto 1rem !important;
        padding: 0.85rem !important;
        border-radius: 14px;
    }

    body.single-produto_flore .wp-block-post-title {
        margin-bottom: 0.85rem !important;
        font-size: clamp(1.65rem, 7vw, 2.25rem);
    }

    body.single-produto_flore .wp-block-post-featured-image,
    body.single-produto_flore .produto-single-extra {
        border-radius: 12px;
    }

    body.single-produto_flore .produto-single-extra {
        padding: 1rem;
    }
}

/* ARCHIVE PRODUTOS - manter apenas listagem + paginação */
body.post-type-archive-produto_flore .wp-site-blocks > footer,
body.post-type-archive-produto_flore footer.wp-block-template-part,
body.post-type-archive-produto_flore .footer {
    display: none !important;
}

/* Fallback: garante visibilidade do bloco principal do single produto */
body.single-produto_flore main.wp-block-group {
    display: block !important;
}

body.single-produto_flore main.wp-block-group > .wp-block-group.alignfull,
body.single-produto_flore .wp-block-post-title,
body.single-produto_flore .wp-block-post-featured-image,
body.single-produto_flore .entry-content.wp-block-post-content {
    display: block !important;
}
