/* ============================================================
   Poltroloc - style.css
   Paleta: Verde petróleo #006B5F | Grafite #23272A | Amarelo #F4C542 | Off-white #FAF8F2
   ============================================================ */

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FAF8F2;
    color: #23272A;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CSS Variables ---------------------------------------- */
:root {
    --green:     #006B5F;
    --green-dark:#005248;
    --green-light:#e6f4f2;
    --graphite:  #23272A;
    --yellow:    #F4C542;
    --yellow-dark:#d9a800;
    --offwhite:  #FAF8F2;
    --white:     #ffffff;
    --gray-100:  #f5f4f0;
    --gray-200:  #eae8e3;
    --gray-400:  #b5b0a8;
    --gray-600:  #7a756e;
    --gray-800:  #3d3a35;

    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow:    0 4px 20px rgba(0,0,0,0.09);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

    --transition: 0.2s ease;
    --max-w: 1200px;
}

/* ---- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--graphite);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-desc   { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; }

/* ---- Layout & Containers ---------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.section { padding-block: 80px; }
.section-sm { padding-block: 52px; }
.section-lg { padding-block: 100px; }

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

.text-center { text-align: center; }
.text-center .section-desc { margin-inline: auto; }

/* ---- Buttons ---------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,107,95,0.25);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,107,95,0.35); }

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-yellow {
    background: var(--yellow);
    color: var(--graphite);
    box-shadow: 0 4px 14px rgba(244,197,66,0.3);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-1px); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ---- Header ----------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,248,242,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

.logo-img { height: 52px; width: auto; max-width: 240px; object-fit: contain; }

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.45rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-light); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-cta { font-size: 0.85rem; padding: 0.55rem 1.25rem; }


/* ============================================================
   Mobile Menu — overlay drawer
   ============================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 200;
    overflow: hidden;
    flex-direction: column;
}
.mobile-menu:not([hidden]) { display: flex; }

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 2rem;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0efeb;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    min-height: 64px;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #f5f4f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--graphite);
    flex-shrink: 0;
}
.mobile-menu-close:hover { background: #e8e7e3; }

.mobile-nav-list {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--graphite);
    border-bottom: 1px solid #f5f4f0;
    min-height: 56px;
    transition: background 0.15s, color 0.15s;
}
.mobile-nav-link:hover {
    background: var(--green-light);
    color: var(--green);
}

.mobile-menu-ctas {
    padding: 1.25rem 1.5rem 0;
}

.mobile-menu-contact {
    padding: 1rem 1.5rem 0;
    text-align: center;
}

/* Overlay escuro */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 199;
}
.mobile-overlay:not([hidden]) { display: block; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.4rem;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--graphite);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ------------------------------------------------- */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--offwhite);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,107,95,0.07) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}

.hero-title { margin-bottom: 1.25rem; }
.hero-title strong { color: var(--green); }

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-800);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }
.trust-label { font-size: 0.8rem; color: var(--gray-800); }

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--green-light);
    width: 100%;
    max-width: 480px;
}

/* Slideshow */
.hero-slideshow { position: relative; }
.hero-slide {
    width: 100%;
    height: 520px;
    object-fit: contain;
    padding: 2rem;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active {
    opacity: 1;
    position: relative;
}
.hero-slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(35,39,42,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: var(--green); transform: scale(1.3); }

.hero-badge-float {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
}

.hero-badge-float .dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* ---- Section: Benefícios ---------------------------------- */
.benefits { background: var(--white); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--offwhite);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--green);
}

.benefit-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.benefit-card p  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ---- Section: Produto Destaque ---------------------------- */
.product-highlight { background: var(--offwhite); }

.product-highlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.product-gallery { position: relative; }

.product-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}
.product-main-img img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    padding: 2rem;
}

.product-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--white);
    transition: border-color var(--transition);
    flex-shrink: 0;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active { border-color: var(--green); }
.product-thumb:hover { border-color: var(--green); }

.product-info { }
.product-name { font-size: 1rem; color: var(--green); font-weight: 600; margin-bottom: 0.5rem; }
.product-info h2 { margin-bottom: 1rem; }
.product-info .desc { color: var(--gray-600); margin-bottom: 2rem; font-size: 1rem; line-height: 1.7; }

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.spec-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.875rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid var(--gray-200);
}
.spec-label { font-size: 0.75rem; color: var(--gray-600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.spec-value { font-weight: 700; color: var(--graphite); font-size: 1rem; }

.product-pricing { margin-bottom: 1.75rem; }
.pricing-title { font-size: 0.85rem; font-weight: 600; color: var(--gray-600); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-item {
    background: var(--offwhite);
    border-radius: var(--radius-sm);
    padding: 0.625rem 0.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all var(--transition);
}
.price-item:hover, .price-item.selected { background: var(--green); border-color: var(--green); color: var(--white); }
.price-item .days { display: block; font-size: 0.75rem; font-weight: 600; }
.price-item .price { display: block; font-size: 0.85rem; font-weight: 700; }

.price-freight { font-size: 0.82rem; color: var(--gray-600); }
.price-freight strong { color: var(--graphite); }

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

/* ---- Section: Como Funciona ------------------------------- */
.how-it-works { background: var(--white); }

.steps-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step h4 { margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ---- Section: Depoimentos --------------------------------- */
.testimonials { background: var(--offwhite); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--green);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-city { font-size: 0.8rem; color: var(--gray-600); }

/* ---- Section: Blog Posts ---------------------------------- */
.blog-section { background: var(--white); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--offwhite);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.blog-card-img {
    height: 180px;
    background: var(--green-light);
    overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.blog-card-body h4 { margin-bottom: 0.75rem; font-size: 1rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--gray-400); }
.blog-read-more { color: var(--green); font-weight: 600; font-size: 0.85rem; transition: color var(--transition); }
.blog-read-more:hover { color: var(--green-dark); }

/* ---- Section: FAQ ----------------------------------------- */
.faq-section { background: var(--offwhite); }

.faq-list { max-width: 780px; margin: 3rem auto 0; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--graphite);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question.open { color: var(--green); }

.faq-icon { flex-shrink: 0; transition: transform var(--transition); color: var(--green); }
.faq-question.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ---- Section: CTA Banner ---------------------------------- */
.cta-banner {
    background: var(--green);
    color: var(--white);
    padding-block: 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner .section-label { color: var(--yellow); }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin-inline: auto; margin-bottom: 2.25rem; font-size: 1.05rem; }
.cta-banner .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ----------------------------------------------- */
.site-footer {
    background: var(--graphite);
    color: rgba(255,255,255,0.75);
    padding-top: 64px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-link {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}
.footer-logo { height: 52px; width: auto; max-width: 220px; object-fit: contain; display: block; border-radius: 10px; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-top: 1rem; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: 0.5rem; }
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: all var(--transition);
}
.social-link:hover { background: var(--green); color: var(--white); }

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.875rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; }
.footer-contact-list svg { flex-shrink: 0; margin-top: 1px; opacity: 0.6; }
.footer-contact-list a { transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
    padding-block: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ---- WhatsApp Float --------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition);
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.whatsapp-float-text { white-space: nowrap; }

/* ---- Page Hero (inner pages) ------------------------------ */
.page-hero {
    background: var(--graphite);
    color: var(--white);
    padding-top: 120px;
    padding-bottom: 56px;
    text-align: center;
}
.page-hero .section-label { color: var(--yellow); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin-inline: auto; }

/* ---- Blog page -------------------------------------------- */
.blog-page { background: var(--offwhite); padding-block: 64px; }

.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

.blog-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.blog-card-large .blog-card-img { height: 280px; }

/* ---- Post single ------------------------------------------ */
.post-content {
    max-width: 780px;
    margin-inline: auto;
    padding-block: 64px;
}

.post-header { margin-bottom: 2.5rem; }
.post-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; font-size: 0.85rem; color: var(--gray-600); }
.post-cat { color: var(--green); font-weight: 600; }
.post-title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.post-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; }
.post-featured-img img { width: 100%; height: 400px; object-fit: cover; }

.post-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-800);
}
.post-body h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.post-body h3 { margin: 1.5rem 0 0.75rem; }
.post-body p  { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { margin-bottom: 0.4rem; }

/* ---- Produto page ----------------------------------------- */
.product-page { padding-block: 64px; background: var(--offwhite); }

.product-page-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* ---- Contact form ----------------------------------------- */
.contact-page { background: var(--offwhite); padding-block: 64px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p  { color: var(--gray-600); margin-bottom: 2rem; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}
.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.8rem; color: var(--gray-600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail span { color: var(--graphite); font-weight: 500; }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-title { margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.5rem; }
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--graphite);
    background: var(--offwhite);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,107,95,0.1); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; background: var(--green-light); color: var(--green); padding: 1rem; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem; }
.form-error { display: none; background: #fee2e2; color: #dc2626; padding: 1rem; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem; }

/* ---- Prose pages (política, termos) ----------------------- */
.prose-page { background: var(--offwhite); padding-block: 64px; }
.prose-content { max-width: 800px; margin-inline: auto; }
.prose-content h2 { margin: 2.5rem 0 1rem; font-size: 1.35rem; }
.prose-content h3 { margin: 1.75rem 0 0.75rem; font-size: 1.1rem; }
.prose-content p  { margin-bottom: 1rem; color: var(--gray-800); line-height: 1.8; }
.prose-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-content li { margin-bottom: 0.4rem; color: var(--gray-800); }
.prose-content a  { color: var(--green); }

/* ---- 404 -------------------------------------------------- */
.error-page { text-align: center; padding-block: 120px; }
.error-page h1 { font-size: 7rem; color: var(--gray-200); line-height: 1; margin-bottom: 0.5rem; }
.error-page h2 { margin-bottom: 1rem; }
.error-page p  { color: var(--gray-600); margin-bottom: 2rem; }

/* ---- Sobre page ------------------------------------------- */
.about-intro { background: var(--white); }
.about-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-img { border-radius: var(--radius-xl); overflow: hidden; background: var(--green-light); }
.about-img img { width: 100%; height: 460px; object-fit: cover; }

.differentials { background: var(--offwhite); }
.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.diff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}
.diff-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.diff-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.diff-card p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ---- Serviços page ---------------------------------------- */
.services-page { background: var(--offwhite); padding-block: 64px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 1.25rem;
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-card h4 { margin-bottom: 0.4rem; }
.service-card p  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ---- Pricing table ---------------------------------------- */
.pricing-table { background: var(--white); padding-block: 64px; }
.pricing-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.pricing-card {
    background: var(--offwhite);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    min-width: 170px;
    transition: all var(--transition);
}
.pricing-card:hover, .pricing-card.featured {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}
.pricing-card .days-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.65; }
.pricing-card .days-num   { font-size: 2.2rem; font-weight: 800; line-height: 1.1; margin-block: 0.25rem; }
.pricing-card .days-suffix{ font-size: 0.85rem; }
.pricing-card .price-val  { font-size: 1.5rem; font-weight: 800; margin-top: 0.75rem; }
.pricing-card .price-sub  { font-size: 0.78rem; opacity: 0.6; margin-top: 0.2rem; }
.pricing-card:hover .days-label,
.pricing-card.featured .days-label { opacity: 0.75; }

/* ---- Utilities -------------------------------------------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }

.text-green   { color: var(--green); }
.text-yellow  { color: var(--yellow); }
.text-gray    { color: var(--gray-600); }
.bg-white     { background: var(--white); }
.bg-offwhite  { background: var(--offwhite); }
.bg-green     { background: var(--green); color: var(--white); }

.rounded { border-radius: var(--radius); }
.shadow  { box-shadow: var(--shadow); }

/* ---- Alert/Notification ----------------------------------- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error   { background: #fee2e2; color: #991b1b; }
.alert-info    { background: var(--green-light); color: var(--green); }

/* ====== RESPONSIVE ========================================= */

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .product-highlight-inner { gap: 3rem; }
    .about-intro-inner { gap: 3rem; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    /* Show hero image on tablet but smaller */
    .hero-image { display: flex; justify-content: center; margin-top: 1.5rem; }
    .hero-img-wrap { max-width: 360px; }
    .hero-slide { height: 340px; }
    .hero-badge-float { display: none; }

    .product-highlight-inner { grid-template-columns: 1fr; }
    .about-intro-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .product-page-inner { grid-template-columns: 1fr; }

    .steps-list { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-main-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: repeat(5, 1fr); }
    .prod-card-full { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* ── Nav mobile full-screen overlay ── */
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        padding: 80px 1.5rem 2rem;
        overflow-y: auto;
        z-index: 98;
    }
    .main-nav.open {
        display: flex !important;
        flex-direction: column;
    }
    .main-nav .nav-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0;
        width: 100%;
    }
    .main-nav .nav-list li { width: 100%; border-bottom: 1px solid #f0f0f0; }
    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem 0.5rem;
        display: block;
        width: 100%;
        border-radius: 0;
        color: var(--graphite);
    }
    .nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-light); border-radius: 8px; }

    .hamburger { display: flex; z-index: 100; position: relative; }
    .header-cta-text { display: none; }
    .header-cta { padding: 0.55rem 0.75rem; font-size: 0.8rem; }

    /* Sections */
    .section { padding-block: 48px; }
    .section-lg { padding-block: 64px; }
    .container { padding-inline: 1.25rem; }

    /* Hero mobile */
    .hero-section { padding-top: 88px; padding-bottom: 48px; }
    .hero-inner { gap: 2rem; }
    .hero-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero-image { display: flex; justify-content: center; }
    .hero-img-wrap { max-width: 100%; }
    .hero-slide { height: 280px; }
    .hero-badge-float { display: none; }
    .hero-trust { gap: 0.5rem; }
    .trust-item { font-size: 0.75rem; padding: 0.35rem 0.75rem; }

    /* Grids */
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .steps-list { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; }
    .hero-trust { flex-wrap: wrap; gap: 0.5rem; }

    /* Products */
    .product-specs { grid-template-columns: 1fr 1fr; }
    .price-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
    .price-item { padding: 0.6rem 0.4rem; }
    .price-item .days { font-size: 0.72rem; }
    .price-item .price { font-size: 0.9rem; }
    .pricing-cards { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
    .pricing-card { min-width: 130px; padding: 1.25rem 0.75rem; }

    /* Prod page */
    .prod-card-gallery { padding: 1rem; }
    .prod-card-info { padding: 1.25rem; }
    .prod-gallery-main { aspect-ratio: 4/3; }
    .gallery-arrow { width: 34px; height: 34px; }

    /* Blog */
    .blog-filters { gap: 0.4rem; }
    .filter-btn { padding: 0.4rem 0.875rem; font-size: 0.8rem; }

    /* Lightbox */
    .lightbox-nav { width: 40px; height: 40px; }

    /* WhatsApp */
    .whatsapp-float-text { display: none; }
    .whatsapp-float { padding: 0.875rem; border-radius: 50%; bottom: 20px; right: 16px; }

    /* Page hero */
    .page-hero { padding-top: 100px; padding-bottom: 40px; }
    .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    /* CTA banner */
    .cta-banner { padding-block: 48px; }
    .cta-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    /* Layout */
    .container { padding-inline: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .service-card { flex-direction: column; }

    /* Buttons */
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; justify-content: center; }
    .cta-banner .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-banner .cta-actions .btn { width: 100%; justify-content: center; }

    /* Prices */
    .price-grid { grid-template-columns: repeat(2, 1fr); gap: 0.35rem; }
    .pricing-cards { flex-direction: column; align-items: center; }
    .pricing-card { width: 100%; max-width: 280px; }

    /* Hero */
    .hero-title { font-size: 1.75rem; }
    .hero-trust { gap: 0.4rem; }
    .trust-item { font-size: 0.72rem; }

    /* Blog card */
    .blog-card-img { height: 180px; }

    /* Section titles */
    .section-title { font-size: clamp(1.3rem, 5vw, 1.75rem); }

    /* Product card full */
    .prod-card-gallery { padding: 0.75rem; }
    .prod-gallery-main { aspect-ratio: 1/1; }
    .prod-thumb-btn { width: 48px; height: 40px; }

    /* Forms */
    .contact-form-card { padding: 1.5rem 1rem; }

    /* FAQ */
    .faq-question { font-size: 0.9rem; padding: 1rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.25rem; }
}

/* Touch targets — ensure minimum 44px for all interactive elements on mobile */
@media (max-width: 768px) {
    .btn { min-height: 44px; }
    .nav-link { min-height: 44px; display: flex; align-items: center; }
    .filter-btn { min-height: 40px; display: inline-flex; align-items: center; }
    .faq-question { min-height: 48px; }
    .prod-thumb-btn { min-width: 44px; min-height: 40px; }
    .gallery-arrow { min-width: 40px; min-height: 40px; }
    .social-link { width: 44px; height: 44px; }
}

/* ============================================================
   Produtos Page — galeria, lightbox, tags de categoria
   ============================================================ */

/* Tags de produto */
.prod-cat-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.25rem;
}
.prod-destaque-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--graphite);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.25rem;
    margin-left: 0.4rem;
}

/* Card de produto full-width */
.prod-card-full {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

/* Galeria do produto */
.prod-card-gallery {
    background: var(--green-light);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.prod-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.5);
    aspect-ratio: 4/3;
}

.prod-gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
}
.prod-gallery-slide.active { display: block; }

.prod-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}
.prod-gallery-img:hover { transform: scale(1.02); }

/* Setas de navegação da galeria */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    transition: background 0.15s, transform 0.15s;
    color: var(--graphite);
}
.gallery-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }

.gallery-counter {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(35,39,42,0.55);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    z-index: 2;
}

/* Miniaturas */
.prod-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.prod-thumb-btn {
    width: 64px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.15s, transform 0.15s;
    flex-shrink: 0;
}
.prod-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumb-btn.active { border-color: var(--green); transform: scale(1.05); }
.prod-thumb-btn:hover { border-color: var(--green-dark); }

/* Info do produto */
.prod-card-info {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Lightbox */
.lightbox-overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
}
#lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    cursor: pointer;
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    z-index: 1;
}
.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: block;
}
.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    z-index: 2;
}

/* Responsive produto cards */
@media (max-width: 900px) {
    .prod-card-full { grid-template-columns: 1fr; }
    .prod-card-info { padding: 1.5rem; }
    .prod-card-gallery { padding: 1rem; }
}
@media (max-width: 600px) {
    .prod-gallery-main { aspect-ratio: 1/1; }
    .prod-thumb-btn { width: 52px; height: 44px; }
    .lightbox-nav { width: 40px; height: 40px; }
}

/* ============================================================
   Seção poltrona (home) — responsivo
   ============================================================ */
.poltrona-section .section-title { margin-bottom: 0.5rem; }

@media (max-width: 900px) {
    .poltrona-section [style*="grid-template-columns:1.2fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}
@media (max-width: 480px) {
    .poltrona-section [style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.4rem !important;
    }
}
