/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    color: #2d2d2d;
    background: #f8f7f4;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== VARIÁVEIS ===== */
:root {
    --verde:       #3d0c5b;
    --verde-esc:   #2a0840;
    --verde-claro: #f3eaf9;
    --branco:      #ffffff;
    --cinza-claro: #f7f4f9;
    --cinza-medio: #ddd0e8;
    --texto:       #2d2d2d;
    --sombra:      0 2px 12px rgba(0,0,0,.10);
    --radius:      10px;
    --wpp:         #25d366;
    --wpp-esc:     #1da851;
    --secundaria:  #ce0d0c;
    --secundaria-esc: #a50a09;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--branco);
    border-bottom: 1px solid var(--cinza-medio);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,.08);
}
.header-top {
    background: var(--verde-esc);
    color: #fff;
    font-size: 13px;
    padding: .4rem 0;
}
.header-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.header-top a { color: #fff; }
.header-top .sociais { display: flex; gap: .8rem; align-items: center; }
.header-top .sociais a { font-size: 16px; }
.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: .8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: .8rem; }
.logo img { height: 60px; }
.logo-text h1 { font-size: 1.3rem; color: var(--verde-esc); font-weight: 700; }
.logo-text span { font-size: .8rem; color: #666; }

.header-search form {
    display: flex;
    border: 1.5px solid var(--cinza-medio);
    border-radius: 25px;
    overflow: hidden;
}
.header-search input {
    border: none;
    padding: .5rem 1rem;
    font-size: 14px;
    width: 240px;
    outline: none;
    background: #fafafa;
}
.header-search button {
    border: none;
    background: var(--verde);
    color: #fff;
    padding: 0 1rem;
    cursor: pointer;
    font-size: 16px;
}

/* ===== NAV ===== */
.site-nav {
    background: var(--verde);
    border-bottom: 3px solid var(--verde-esc);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0;
}
.nav-inner a {
    color: #fff;
    padding: .75rem 1.2rem;
    font-size: .9rem;
    font-weight: 500;
    display: block;
    transition: background .2s;
    white-space: nowrap;
}
.nav-inner a:hover,
.nav-inner a.active {
    background: var(--verde-esc);
}
.nav-inner .nav-sep { color: rgba(255,255,255,.3); }

/* ===== HERO BANNER ===== */
.hero {
    background: linear-gradient(135deg, var(--verde-esc) 0%, var(--verde) 60%, #5a9e5f 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: .8rem; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.hero p { font-size: 1.1rem; opacity: .9; margin-bottom: 1.8rem; }
.hero .btn-hero {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #fff; color: var(--verde-esc);
    padding: .85rem 2rem; border-radius: 30px;
    font-weight: 700; font-size: 1rem;
    box-shadow: 0 3px 12px rgba(0,0,0,.2);
    transition: transform .2s, box-shadow .2s;
}
.hero .btn-hero:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.25); }

/* ===== CATEGORIAS ===== */
.categorias-section { padding: 3rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section-title {
    font-size: 1.5rem;
    color: var(--verde-esc);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--cinza-medio);
    display: block;
}
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.categoria-card {
    background: var(--branco);
    border: 2px solid var(--cinza-medio);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    cursor: pointer;
}
.categoria-card:hover {
    border-color: var(--verde);
    transform: translateY(-3px);
    box-shadow: var(--sombra);
}
.categoria-card .cat-icon { font-size: 1.8rem; color: var(--verde); margin-bottom: .6rem; }
.categoria-card h3 { font-size: .9rem; color: var(--verde-esc); font-weight: 600; }
.categoria-card .cat-count { font-size: .8rem; color: #888; margin-top: .3rem; }

/* ===== PLANTAS GRID ===== */
.plantas-section { padding: 2rem 1.5rem 4rem; max-width: 1200px; margin: 0 auto; }
.filtros-bar {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    align-items: center;
}
.filtro-btn {
    padding: .45rem 1.1rem;
    border-radius: 20px;
    border: 2px solid var(--cinza-medio);
    background: var(--branco);
    cursor: pointer;
    font-size: .85rem;
    font-weight: 500;
    transition: all .2s;
    color: var(--texto);
}
.filtro-btn:hover,
.filtro-btn.active {
    background: var(--verde);
    border-color: var(--verde);
    color: #fff;
}
.plantas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.4rem;
}
.planta-card {
    background: var(--branco);
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.planta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.planta-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--cinza-claro);
}
.planta-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.planta-card:hover .planta-card-img img { transform: scale(1.07); }
.badge-destaque {
    position: absolute;
    top: .6rem; left: .6rem;
    background: #e8a020;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.badge-categoria {
    position: absolute;
    top: .6rem; right: .6rem;
    background: rgba(58,125,68,.85);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 12px;
    max-width: 120px;
    text-align: center;
    line-height: 1.2;
}
.planta-card-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.planta-card-info h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--verde-esc);
    line-height: 1.3;
}
.planta-card-info .preco {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--verde);
}
.planta-card-info .preco-consulte {
    font-size: .85rem;
    color: #999;
}
.planta-card-actions { display: flex; gap: .5rem; padding: .8rem 1rem 1rem; }
.btn-wpp {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--wpp);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .6rem .8rem;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .1s;
}
.btn-wpp:hover { background: var(--wpp-esc); transform: scale(1.02); }
.btn-wpp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.btn-ver {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cinza-claro);
    color: var(--verde-esc);
    border: none;
    border-radius: 8px;
    padding: .6rem .8rem;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}
.btn-ver:hover { background: var(--cinza-medio); }

/* ===== PÁGINA DA PLANTA ===== */
.planta-detalhe {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem 4rem;
}
.breadcrumb {
    font-size: .85rem;
    color: #888;
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--verde); }
.breadcrumb a:hover { text-decoration: underline; }
.planta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.galeria-principal {
    position: relative;
}
.galeria-main-img {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cinza-claro);
    box-shadow: var(--sombra);
}
.galeria-main-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}
.galeria-nome-foto {
    text-align: center;
    font-size: .82rem;
    color: #777;
    margin-top: .5rem;
    min-height: 1.2em;
}
.galeria-thumbs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .8rem;
}
.galeria-thumbs .thumb {
    width: 72px; height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--cinza-medio);
    cursor: pointer;
    transition: border-color .2s;
    flex-shrink: 0;
}
.galeria-thumbs .thumb:hover,
.galeria-thumbs .thumb.active { border-color: var(--verde); }
.galeria-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.planta-info-detalhe { display: flex; flex-direction: column; gap: 1rem; }
.planta-info-detalhe h1 {
    font-size: 1.6rem;
    color: var(--verde-esc);
    font-weight: 700;
    line-height: 1.3;
}
.planta-categoria-badge {
    display: inline-block;
    background: var(--verde-claro);
    color: var(--verde-esc);
    border: 1px solid #b3ddb7;
    border-radius: 20px;
    padding: .3rem .9rem;
    font-size: .82rem;
    font-weight: 600;
}
.planta-destaque-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e8a020;
    border: 1px solid #f6cc85;
    border-radius: 20px;
    padding: .3rem .9rem;
    font-size: .82rem;
    font-weight: 700;
    margin-left: .4rem;
}
.planta-preco {
    font-size: 2rem;
    font-weight: 700;
    color: var(--verde);
}
.planta-preco-consulte { font-size: 1rem; color: #999; }
.planta-descricao h3,
.planta-genealogia h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--verde-esc);
    margin-bottom: .4rem;
}
.planta-descricao p,
.planta-genealogia p {
    color: #555;
    font-size: .92rem;
    white-space: pre-line;
}
.planta-wpp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: var(--wpp);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: background .2s, transform .1s;
    margin-top: .5rem;
}
.planta-wpp-btn:hover { background: var(--wpp-esc); transform: scale(1.01); }
.planta-wpp-btn svg { width: 26px; height: 26px; fill: #fff; }

/* ===== LIGHTBOX ===== */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 8px; }
#lightbox .lb-nome { color: #ccc; font-size: .85rem; }
#lightbox .lb-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}
#lightbox .lb-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: .5rem .9rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background .2s;
}
#lightbox .lb-nav:hover { background: rgba(255,255,255,.3); }
#lightbox .lb-prev { left: 1rem; }
#lightbox .lb-next { right: 1rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--verde-esc);
    color: rgba(255,255,255,.85);
    padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.footer-sobre h4,
.footer-links h4,
.footer-contato h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .8rem;
}
.footer-sobre p { font-size: .88rem; line-height: 1.7; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: .4rem; }
.footer-links ul li a { font-size: .88rem; transition: color .2s; }
.footer-links ul li a:hover { color: #fff; }
.footer-contato p { font-size: .88rem; margin-bottom: .4rem; }
.footer-sociais { display: flex; gap: .8rem; margin-top: .8rem; }
.footer-sociais a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: background .2s;
}
.footer-sociais a:hover { background: rgba(255,255,255,.3); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 1rem;
    text-align: center;
    font-size: .8rem;
    opacity: .7;
}

/* ===== SLIDER / CAROUSEL ===== */
.slider-wrap {
    position: relative;
    overflow: hidden;
    background: #1a0030;
    max-height: 480px;
}
.slider-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.slide {
    min-width: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.slide-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    background: linear-gradient(90deg, rgba(61,12,91,.7) 0%, rgba(61,12,91,.2) 60%, transparent 100%);
}
.slide-caption h2 { font-size: 2.2rem; color: #fff; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.4); margin-bottom: .5rem; max-width: 500px; }
.slide-caption p  { color: rgba(255,255,255,.9); font-size: 1rem; margin-bottom: 1.2rem; max-width: 420px; }
.slide-caption a  {
    display: inline-block;
    background: var(--secundaria);
    color: #fff;
    padding: .65rem 1.6rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: .9rem;
    transition: background .2s, transform .1s;
    align-self: flex-start;
}
.slide-caption a:hover { background: var(--secundaria-esc); transform: scale(1.03); }
.slider-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.2);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,.4); }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-dots {
    position: absolute;
    bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: .5rem;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none; cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.slider-dot.active { background: #fff; transform: scale(1.3); }

/* ===== BANNER ESG ===== */
.esg-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 220px;
    margin: 3rem 0 0;
    overflow: hidden;
}
.esg-banner-img { overflow: hidden; }
.esg-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.esg-banner-texto {
    background: #4a9bb5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3rem;
    color: #fff;
}
.esg-banner-texto h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: .5rem; }
.esg-banner-texto p  { font-size: .95rem; opacity: .9; margin-bottom: 1.2rem; }
.esg-banner-texto a {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: .5rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: .9rem;
    transition: background .2s, color .2s;
    align-self: flex-start;
}
.esg-banner-texto a:hover { background: #fff; color: #4a9bb5; }

/* ===== SOBRE PAGE ===== */
.sobre-page { max-width: 900px; margin: 3rem auto; padding: 0 1.5rem 5rem; }
.sobre-page h1 { font-size: 2rem; color: var(--verde-esc); margin-bottom: .5rem; }
.sobre-epigrafe { font-style: italic; color: #777; border-left: 4px solid var(--verde); padding-left: 1rem; margin-bottom: 2rem; font-size: 1rem; }
.sobre-conteudo { font-size: .97rem; line-height: 1.9; color: #444; white-space: pre-line; }
.sobre-conteudo p { margin-bottom: 1.2rem; }

/* ===== ESG PAGE ===== */
.esg-page { max-width: 900px; margin: 3rem auto; padding: 0 1.5rem 5rem; }
.esg-page h1 { font-size: 2rem; color: var(--verde-esc); margin-bottom: 1rem; }
.esg-page .esg-intro { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 2rem; }
.esg-realizacoes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.esg-card { background: var(--verde-claro); border: 1px solid var(--cinza-medio); border-radius: var(--radius); padding: 1.5rem; }
.esg-card .esg-num { font-size: 2.5rem; font-weight: 800; color: var(--verde); }
.esg-card p { color: #555; font-size: .9rem; margin-top: .3rem; }

/* ===== BLOG ===== */
.blog-page { max-width: 1100px; margin: 2rem auto; padding: 0 1.5rem 5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: var(--branco); border-radius: var(--radius); box-shadow: var(--sombra); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.13); }
.post-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cinza-claro); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 1.2rem; }
.post-card-body .post-data { font-size: .78rem; color: #aaa; margin-bottom: .4rem; }
.post-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--verde-esc); margin-bottom: .5rem; line-height: 1.3; }
.post-card-body p { font-size: .85rem; color: #666; line-height: 1.6; margin-bottom: .8rem; }
.post-card-body a.leia-mais { font-size: .82rem; font-weight: 700; color: var(--verde); }
.post-card-body a.leia-mais:hover { text-decoration: underline; }

/* Página do post */
.post-single { max-width: 820px; margin: 2rem auto; padding: 0 1.5rem 5rem; }
.post-single h1 { font-size: 1.9rem; color: var(--verde-esc); margin-bottom: .4rem; line-height: 1.3; }
.post-single .post-data { font-size: .82rem; color: #aaa; margin-bottom: 1.5rem; }
.post-single .post-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; max-height: 400px; }
.post-single .post-img img { width: 100%; object-fit: cover; }
.post-single .post-body { font-size: .97rem; line-height: 1.9; color: #444; white-space: pre-line; }

/* ===== DICAS ===== */
.dicas-page { max-width: 1100px; margin: 2rem auto; padding: 0 1.5rem 5rem; }
.dicas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dica-card { background: var(--branco); border-radius: var(--radius); box-shadow: var(--sombra); overflow: hidden; }
.dica-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.dica-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.dica-card-body { padding: 1rem; }
.dica-card-body h3 { font-size: .95rem; font-weight: 700; color: var(--verde-esc); margin-bottom: .4rem; }
.dica-card-body p  { font-size: .83rem; color: #666; line-height: 1.6; }

/* ===== MENSAGEM VAZIA ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #aaa;
    grid-column: 1 / -1;
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .categorias-grid { grid-template-columns: repeat(2, 1fr); }
    .planta-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .header-main { flex-wrap: wrap; }
    .header-search input { width: 150px; }
    .nav-inner { overflow-x: auto; }
    .hero h2 { font-size: 1.7rem; }
    .categorias-grid { grid-template-columns: repeat(2, 1fr); }
    .plantas-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
}
@media (max-width: 380px) {
    .plantas-grid { grid-template-columns: 1fr; }
}
