:root {
    --gde-primary: #1455d9;
    --gde-primary-dark: #0f3f9f;
    --gde-accent: #00b894;
    --gde-text: #162033;
    --gde-muted: #667085;
    --gde-border: rgba(20, 85, 217, 0.12);
    --gde-bg: #f5f8ff;
    --gde-card: #ffffff;
    --gde-shadow: 0 18px 50px rgba(20, 32, 51, 0.12);
}

.gde-wrapper,
.gde-single-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 40px auto;
    color: var(--gde-text);
    font-family: inherit;
}

.gde-hero {
    position: relative;
    overflow: visible;
    margin-bottom: 28px;
    padding: 42px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(0, 184, 148, 0.20), transparent 35%), linear-gradient(135deg, #0f3f9f 0%, #1455d9 55%, #4c7dff 100%);
    color: #ffffff;
    box-shadow: var(--gde-shadow);
}

.gde-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gde-hero h2,
.gde-single-hero h1 {
    margin: 0 0 12px;
    color: inherit;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    font-weight: 900;
}

.gde-hero p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.gde-search-box {
    position: relative;
    max-width: 680px;
}

.gde-search-input {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border: 0;
    border-radius: 18px;
    outline: none;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
    color: var(--gde-text);
    font-size: 1rem;
}

.gde-search-input:focus {
    box-shadow: 0 0 0 4px rgba(0, 184, 148, 0.25), 0 15px 35px rgba(0, 0, 0, 0.16);
}

.gde-suggestions {
    display: none;
    position: absolute;
    z-index: 50;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.gde-suggestion {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    color: var(--gde-text);
    text-decoration: none;
    border-bottom: 1px solid #eef2f7;
}

.gde-suggestion:hover {
    background: #f8fbff;
}

.gde-suggestion img,
.gde-suggestion-placeholder {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 12px;
    object-fit: cover;
    background: #e8eefb;
}

.gde-suggestion strong,
.gde-suggestion small {
    display: block;
}

.gde-suggestion small {
    color: var(--gde-muted);
}

.gde-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.gde-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--gde-border);
    border-radius: 24px;
    background: var(--gde-card);
    box-shadow: 0 12px 34px rgba(20, 32, 51, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gde-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 85, 217, 0.28);
    box-shadow: var(--gde-shadow);
}

.gde-card-image {
    display: block;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: #eef3fb;
}

.gde-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gde-card:hover .gde-card-image img {
    transform: scale(1.05);
}

.gde-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.gde-card-body h3 {
    margin: 0 0 10px;
    color: var(--gde-text);
    font-size: 1.12rem;
    line-height: 1.2;
    font-weight: 850;
}

.gde-card-info,
.gde-card-excerpt {
    margin: 0 0 10px;
    color: var(--gde-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.gde-address {
    min-height: 38px;
}

.gde-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 44px;
    margin-top: auto;
    padding: 0 18px;
    border: 1px solid var(--gde-primary);
    border-radius: 999px;
    background: var(--gde-primary);
    color: #ffffff !important;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gde-btn:hover {
    transform: translateY(-2px);
    background: var(--gde-primary-dark);
    border-color: var(--gde-primary-dark);
}

.gde-btn-outline {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.56);
}

.gde-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

.gde-empty,
.gde-no-results {
    grid-column: 1 / -1;
    padding: 22px;
    border-radius: 18px;
    background: #ffffff;
    color: var(--gde-muted);
    text-align: center;
}

.gde-single-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 28px;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0f3f9f 0%, #1455d9 55%, #00b894 100%);
    color: #ffffff;
    box-shadow: var(--gde-shadow);
}

.gde-single-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
}

.gde-back {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-weight: 700;
}

.gde-single-location {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.gde-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gde-single-hero-image {
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.gde-single-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gde-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 24px;
    margin-bottom: 24px;
}

.gde-single-card {
    padding: 28px;
    border: 1px solid var(--gde-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(20, 32, 51, 0.08);
}

.gde-single-card h2 {
    margin: 0 0 18px;
    color: var(--gde-text);
    font-size: 1.55rem;
    font-weight: 850;
}

.gde-content,
.gde-contact-card p {
    color: var(--gde-muted);
    line-height: 1.75;
}

.gde-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.gde-socials strong {
    width: 100%;
    color: var(--gde-text);
}

.gde-socials a {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--gde-bg);
    color: var(--gde-primary) !important;
    font-weight: 750;
    text-decoration: none !important;
}

.gde-gallery-section,
.gde-map-section {
    margin-top: 24px;
}

.gde-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gde-gallery-item {
    display: block;
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
    border-radius: 18px;
    background: #eef3fb;
}

.gde-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.gde-gallery-item:hover img {
    transform: scale(1.06);
}

.gde-map iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 18px;
}

.gde-lightbox {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: grid;
    grid-template-columns: 64px 1fr 64px;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    padding: 24px;
    background: rgba(7, 18, 38, 0.92);
    touch-action: pan-y;
    font-family: inherit;
}

.gde-lightbox * {
    box-sizing: border-box;
}

.gde-lightbox-stage {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gde-lightbox-image {
    max-width: min(1100px, 100%) !important;
    max-height: 82vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 18px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45) !important;
    border: 3px solid var(--gde-primary) !important;
    background: #fff !important;
    user-select: none;
    -webkit-user-drag: none;
}

.gde-lightbox-prev,
.gde-lightbox-next,
.gde-lightbox-close {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
    text-transform: none !important;
    text-shadow: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease !important;
}

.gde-lightbox-prev,
.gde-lightbox-next {
    grid-row: 1;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 999px !important;
    background: var(--gde-primary) !important;
    color: #fff !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    padding: 0 0 4px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
    z-index: 2;
}

.gde-lightbox-prev { grid-column: 1; }
.gde-lightbox-next { grid-column: 3; }

.gde-lightbox-prev:hover,
.gde-lightbox-next:hover,
.gde-lightbox-prev:focus,
.gde-lightbox-next:focus {
    transform: scale(1.08) !important;
    background: var(--gde-accent) !important;
    color: #fff !important;
}

.gde-lightbox-counter {
    grid-column: 1 / -1;
    grid-row: 2;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    margin-top: 14px;
    background: var(--gde-primary);
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.gde-lightbox-close {
    position: fixed !important;
    top: 22px !important;
    right: 24px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 999px !important;
    background: var(--gde-primary) !important;
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    padding: 0 0 2px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
    z-index: 3;
}

.gde-lightbox-close:hover,
.gde-lightbox-close:focus {
    background: var(--gde-accent) !important;
    transform: scale(1.08) !important;
}

body.gde-no-scroll {
    overflow: hidden;
}

@media (max-width: 640px) {
    .gde-lightbox {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto;
        padding: 12px;
    }
    .gde-lightbox-stage {
        grid-column: 1;
        grid-row: 1;
    }
    .gde-lightbox-image {
        max-height: 68vh !important;
    }
    .gde-lightbox-prev,
    .gde-lightbox-next {
        grid-row: 2;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        font-size: 30px !important;
    }
    .gde-lightbox-prev {
        grid-column: 1;
        justify-self: start;
        margin-left: 8px !important;
    }
    .gde-lightbox-next {
        grid-column: 1;
        justify-self: end;
        margin-right: 8px !important;
    }
    .gde-lightbox-counter {
        grid-row: 3;
        margin-top: 10px;
    }
    .gde-lightbox-close {
        top: 12px !important;
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 26px !important;
    }
}

@media (max-width: 1100px) {
    .gde-grid,
    .gde-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .gde-grid,
    .gde-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gde-single-hero,
    .gde-single-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .gde-wrapper,
    .gde-single-wrap {
        width: min(100% - 22px, 1180px);
        margin: 24px auto;
    }

    .gde-hero,
    .gde-single-hero,
    .gde-single-card {
        padding: 22px;
        border-radius: 22px;
    }

    .gde-grid,
    .gde-gallery {
        grid-template-columns: 1fr;
    }

    .gde-single-hero-image {
        min-height: 240px;
    }

    .gde-actions,
    .gde-actions .gde-btn {
        width: 100%;
    }
}

/* Header e footer próprios do Guia de Empresas */
.gde-site-header {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    position: relative;
    z-index: 20;
}

.gde-site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px 18px;
    border: 1px solid rgba(20, 85, 217, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(20, 32, 51, 0.10);
    backdrop-filter: blur(14px);
}

.gde-site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gde-text) !important;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-decoration: none !important;
    white-space: nowrap;
}

.gde-site-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gde-primary), var(--gde-accent));
    color: #ffffff;
    font-size: 0.92rem;
    box-shadow: 0 10px 24px rgba(20, 85, 217, 0.24);
}

.gde-site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.gde-site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--gde-muted) !important;
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gde-site-nav a:hover {
    transform: translateY(-1px);
    background: var(--gde-bg);
    color: var(--gde-primary) !important;
}

.gde-site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 28px;
}

.gde-site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 18px;
    border: 1px solid rgba(20, 85, 217, 0.12);
    border-radius: 22px;
    background: linear-gradient(135deg, #0f3f9f 0%, #1455d9 100%);
    box-shadow: 0 16px 42px rgba(20, 32, 51, 0.12);
}

.gde-site-footer-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
}

.gde-site-footer-inner a {
    color: #ffffff !important;
    font-weight: 850;
    text-decoration: none !important;
}

.gde-site-footer-inner a:hover {
    text-decoration: underline !important;
}

@media (max-width: 720px) {
    .gde-site-header {
        width: min(100% - 22px, 1180px);
        margin-top: 18px;
    }

    .gde-site-header-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
    }

    .gde-site-brand {
        justify-content: center;
    }

    .gde-site-nav {
        justify-content: center;
        gap: 8px;
    }

    .gde-site-nav a {
        min-height: 36px;
        padding: 0 11px;
        font-size: 0.9rem;
        background: #f7faff;
    }

    .gde-site-footer {
        width: min(100% - 22px, 1180px);
        margin-bottom: 22px;
    }
}

/* Header/footer premium V2 — pensado para páginas feitas com Elementor */
.gde-elementor-friendly,
.gde-elementor-friendly * {
    box-sizing: border-box;
}

.gde-site-header.gde-elementor-friendly {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 24px;
    padding: 0;
    font-family: inherit;
}

.gde-site-header-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 84px;
    padding: 14px 16px 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92)) padding-box,
        linear-gradient(135deg, rgba(20, 85, 217, 0.30), rgba(0, 184, 148, 0.30)) border-box;
    box-shadow: 0 18px 55px rgba(15, 31, 68, 0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.gde-site-header-shell::before {
    content: "";
    position: absolute;
    inset: 10px auto auto 18px;
    width: 120px;
    height: 38px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 184, 148, 0.18), transparent 68%);
    pointer-events: none;
}

.gde-site-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: #101828 !important;
    text-decoration: none !important;
}

.gde-site-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1455d9 0%, #00b894 100%);
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 950;
    letter-spacing: -0.02em;
    box-shadow: 0 14px 32px rgba(20, 85, 217, 0.28);
}

.gde-site-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.05;
}

.gde-site-brand-text strong {
    color: #101828;
    font-size: 1.08rem;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.gde-site-brand-text small {
    color: #667085;
    font-size: 0.76rem;
    font-weight: 750;
}

.gde-site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.gde-site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    color: #344054 !important;
    font-size: 0.94rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gde-site-nav a:hover,
.gde-site-nav a:focus {
    transform: translateY(-2px);
    background: #1455d9;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(20, 85, 217, 0.24);
    outline: none;
}

.gde-site-nav a:nth-child(4) {
    background: rgba(0, 184, 148, 0.11);
    color: #027a63 !important;
}

.gde-site-nav a:nth-child(4):hover,
.gde-site-nav a:nth-child(4):focus {
    background: #00b894;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(0, 184, 148, 0.24);
}

.gde-site-footer.gde-elementor-friendly {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 28px;
    padding: 0;
    font-family: inherit;
}

.gde-site-footer-shell {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 86px;
    padding: 22px 26px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(0, 184, 148, 0.34), transparent 34%),
        linear-gradient(135deg, #071226 0%, #0f3f9f 58%, #1455d9 100%);
    color: #ffffff;
    box-shadow: 0 18px 55px rgba(15, 31, 68, 0.18);
}

.gde-site-footer-shell::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.gde-site-footer-shell > span {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    font-weight: 850;
}

.gde-site-footer-shell p {
    position: relative;
    z-index: 1;
    margin: 0;
}

.gde-site-footer-shell a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.gde-site-footer-shell a:hover,
.gde-site-footer-shell a:focus {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.20);
    outline: none;
}

@media (max-width: 900px) {
    .gde-site-header-shell {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        min-height: auto;
    }

    .gde-site-brand {
        justify-content: center;
    }

    .gde-site-nav {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .gde-site-header.gde-elementor-friendly,
    .gde-site-footer.gde-elementor-friendly {
        width: min(100% - 22px, 1180px);
    }

    .gde-site-header-shell {
        border-radius: 22px;
        padding: 16px;
    }

    .gde-site-brand-text small {
        display: none;
    }

    .gde-site-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .gde-site-nav a {
        width: 100%;
        min-height: 44px;
        background: #f4f7ff;
        font-size: 0.9rem;
    }

    .gde-site-nav a:last-child {
        grid-column: 1 / -1;
    }

    .gde-site-footer-shell {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        border-radius: 22px;
    }
}

/* ======================================================================
 * Avaliações
 * ==================================================================== */

.gde-stars {
    display: inline-flex;
    gap: 2px;
    line-height: 1;
    vertical-align: middle;
}
.gde-stars .gde-star {
    font-size: 1rem;
    color: #d6dae3;
    line-height: 1;
}
.gde-stars .gde-star-full { color: #f4b400; }
.gde-stars .gde-star-half {
    background: linear-gradient(90deg, #f4b400 50%, #d6dae3 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.gde-stars-lg .gde-star { font-size: 1.6rem; }

.gde-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    font-size: 0.88rem;
    color: #475467;
}
.gde-card-rating .gde-card-rating-num {
    font-weight: 800;
    color: #101828;
}
.gde-card-rating small { color: #98a2b3; }

/* Seção dentro da página da empresa */
.gde-avaliacoes-section { margin-top: 24px; }
.gde-avaliacoes-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.gde-avaliacoes-head h2 { margin: 0; }
.gde-avaliacoes-resumo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7faff;
    padding: 8px 14px;
    border-radius: 14px;
}
.gde-avaliacoes-media {
    font-size: 1.6rem;
    font-weight: 900;
    color: #101828;
    letter-spacing: -0.02em;
}
.gde-avaliacoes-total { color: #475467; font-weight: 700; font-size: 0.9rem; }
.gde-avaliacoes-empty-resumo { margin: 0; color: #667085; font-style: italic; }

.gde-avaliacoes-lista {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gde-avaliacao-item {
    border: 1px solid #eaecf0;
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
}
.gde-avaliacao-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.gde-avaliacao-autor { color: #101828; font-weight: 800; }
.gde-avaliacao-data { color: #98a2b3; font-size: 0.82rem; margin-left: auto; }
.gde-avaliacao-comentario { margin: 4px 0 0; color: #344054; line-height: 1.55; }

/* Formulário */
.gde-form-avaliacao {
    margin-top: 18px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
    border: 1px solid #eaecf0;
}
.gde-form-avaliacao h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: #101828;
}
.gde-form-aviso {
    margin: 0 0 18px;
    color: #475467;
    font-size: 0.92rem;
}
.gde-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.gde-form-row label,
.gde-form-textarea {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.gde-form-row label span,
.gde-form-textarea span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #344054;
}
.gde-form-avaliacao input[type="text"],
.gde-form-avaliacao input[type="email"],
.gde-form-avaliacao textarea {
    width: 100%;
    padding: 11px 13px;
    border-radius: 10px;
    border: 1px solid #d0d5dd;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: #101828;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.gde-form-avaliacao input:focus,
.gde-form-avaliacao textarea:focus {
    outline: none;
    border-color: var(--gde-primary, #1455d9);
    box-shadow: 0 0 0 3px rgba(20, 85, 217, 0.12);
}

/* Estilos de estrelas movidos para o final do arquivo para melhor manutenção */

.gde-form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}
/* Botão de envio - força cores do plugin sobre tema */
button.gde-btn,
button.gde-btn-enviar,
.gde-form-card button.gde-btn,
.gde-form-avaliacao button.gde-btn,
.gde-form-avaliacao .gde-btn-enviar {
    cursor: pointer !important;
    border: 0 !important;
    background: var(--gde-primary, #1455d9) !important;
    background-color: var(--gde-primary, #1455d9) !important;
    color: #fff !important;
    font-weight: 800 !important;
    border-radius: 999px !important;
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(20, 85, 217, 0.22) !important;
    transition: transform 0.12s, box-shadow 0.12s, background 0.12s !important;
    text-decoration: none !important;
}
button.gde-btn:hover,
button.gde-btn-enviar:hover,
.gde-form-card button.gde-btn:hover,
.gde-form-avaliacao button.gde-btn:hover {
    background: var(--gde-accent, #00b894) !important;
    background-color: var(--gde-accent, #00b894) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}
button.gde-btn[disabled] {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}
.gde-form-msg {
    font-size: 0.9rem;
    font-weight: 700;
}
.gde-form-msg.is-success { color: #0a7a3b !important; }
.gde-form-msg.is-error { color: #b42318 !important; }

@media (max-width: 640px) {
    .gde-form-row { grid-template-columns: 1fr; }
    .gde-avaliacoes-head { flex-direction: column; align-items: flex-start; }
}

/* ======================================================================
 * Cards de formulário (Anuncie / Minha empresa)
 * ==================================================================== */

.gde-form-card {
    margin: 20px auto;
    padding: 26px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eaecf0;
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.06);
    max-width: 880px;
}
.gde-form-card h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
    color: #101828;
    border-bottom: 1px solid #eef0f4;
    padding-bottom: 8px;
}
.gde-form-card h3:not(:first-child) { margin-top: 22px; }

.gde-form-card input[type="text"],
.gde-form-card input[type="email"],
.gde-form-card input[type="url"],
.gde-form-card input[type="password"],
.gde-form-card textarea {
    width: 100% !important;
    padding: 11px 13px !important;
    border-radius: 10px !important;
    border: 1px solid #d0d5dd !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    background: #fff !important;
    color: #101828 !important;
    box-shadow: none !important;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.gde-form-card input:focus,
.gde-form-card textarea:focus {
    outline: none !important;
    border-color: var(--gde-primary, #1455d9) !important;
    box-shadow: 0 0 0 3px rgba(20, 85, 217, 0.12) !important;
}

.gde-form-anuncie .gde-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.gde-form-anuncie label,
.gde-form-anuncie .gde-form-textarea {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.gde-form-anuncie label span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #344054;
}

/* Inputs de arquivo (foto destaque / galeria) */
.gde-form-anuncie .gde-form-file {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.gde-form-anuncie .gde-form-file input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 1.5px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #344054;
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.gde-form-anuncie .gde-form-file input[type="file"]:hover,
.gde-form-anuncie .gde-form-file input[type="file"]:focus {
    border-color: var(--gde-primary, #1455d9);
    background: #eff4ff;
    outline: none;
}
.gde-form-anuncie .gde-form-file input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 8px 14px;
    border: 0;
    border-radius: 8px;
    background: var(--gde-primary, #1455d9);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.gde-minha-empresa-lista {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}
.gde-minha-empresa-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
    padding: 18px 22px !important;
    margin: 0 !important;
    max-width: none !important;
}
.gde-minha-empresa-row .gde-actions {
    display: flex;
    gap: 10px;
}
.gde-btn-secondary {
    background: #eef2ff !important;
    background-color: #eef2ff !important;
    color: var(--gde-primary, #1455d9) !important;
    box-shadow: none !important;
}
.gde-btn-secondary:hover {
    background: #dde4ff !important;
    background-color: #dde4ff !important;
    color: var(--gde-primary, #1455d9) !important;
}

@media (max-width: 640px) {
    .gde-form-anuncie .gde-form-row { grid-template-columns: 1fr; }
    .gde-minha-empresa-row { flex-direction: column; align-items: flex-start !important; }
    .gde-minha-empresa-row .gde-actions { width: 100%; }
    .gde-minha-empresa-row .gde-actions .gde-btn { flex: 1; text-align: center; }
}

/* ======================================================================
 * Segmento (taxonomia)
 * ==================================================================== */

.gde-card-image {
    position: relative;
    display: block;
}
.gde-card-segmento {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--gde-primary, #1455d9);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.14);
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

.gde-suggestion-segmento {
    display: inline-block;
    margin-top: 2px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(20, 85, 217, 0.10);
    color: var(--gde-primary, #1455d9);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-right: 6px;
}

/* ======================================================================
 * Banner "Plano escolhido" na página /anuncie/
 * ==================================================================== */

.gde-plano-banner {
    max-width: 880px;
    margin: 20px auto 0;
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gde-primary, #1455d9) 0%, var(--gde-accent, #00b894) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 16px 36px rgba(20, 85, 217, 0.18);
}
.gde-plano-banner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gde-plano-banner-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}
.gde-plano-banner-nome {
    font-size: 1.4rem;
    font-weight: 950;
    letter-spacing: -0.02em;
}
.gde-plano-banner-link {
    display: inline-flex !important;
    align-items: center !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    color: #fff !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    font-size: 0.88rem !important;
    transition: background 0.15s !important;
}
.gde-plano-banner-link:hover {
    background: rgba(255, 255, 255, 0.30) !important;
    color: #fff !important;
}

/* ======================================================================
 * Área de conta no header (Minha empresa / Sair)
 * ==================================================================== */

.gde-site-account {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: 6px !important;
    padding-left: 12px !important;
    border-left: 1px solid rgba(17, 24, 39, 0.10) !important;
}
.gde-site-account-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 39px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--gde-primary, #1455d9), var(--gde-accent, #00b894)) !important;
    color: #fff !important;
    font-weight: 850 !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(20, 85, 217, 0.22) !important;
    transition: transform 0.12s, box-shadow 0.12s !important;
}
.gde-site-account-link:hover,
.gde-site-account-link:focus {
    color: #fff !important;
    transform: translateY(-1px) !important;
    text-decoration: none !important;
}
.gde-site-account-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0.85rem;
}
.gde-site-account-name {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.gde-site-account-logout {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 39px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: #f4f6fb !important;
    color: #475467 !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
    text-decoration: none !important;
    transition: background 0.15s !important;
}
.gde-site-account-logout:hover {
    background: #e7ecf4 !important;
    color: #344054 !important;
    text-decoration: none !important;
}

@media (max-width: 880px) {
    .gde-site-header-shell {
        flex-wrap: wrap !important;
    }
    .gde-site-account {
        order: 3 !important;
        margin: 8px 0 0 !important;
        padding: 0 !important;
        border-left: 0 !important;
        width: 100% !important;
        justify-content: center !important;
    }
}


/* ===== Estilos para Plano Atual e Upgrade ===== */

.gde-plano-current-box {
    animation: slideInDown 0.3s ease-out;
}

.gde-plano-upgrade-box {
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gde-plano-card {
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gde-plano-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.gde-plano-card.gde-plano-destaque {
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.25);
}

.gde-plano-card .gde-plano-nome {
    color: #1f2937;
    font-weight: 600;
}

.gde-plano-card .gde-plano-valor {
    color: #0284c7;
    font-weight: 700;
}

.gde-plano-card .gde-lista-check li {
    display: flex;
    align-items: flex-start;
    color: #4b5563;
}

.gde-plano-card .gde-lista-check li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 6px;
    flex-shrink: 0;
}

/* Responsivo para planos */
@media (max-width: 768px) {
    .gde-planos-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gde-plano-current-box,
    .gde-plano-upgrade-box {
        padding: 14px 16px !important;
    }
}

/* Animação suave para mudanças de plano */
.gde-edit-upgrade-fields {
    transition: all 0.3s ease-in-out;
}

.gde-upgrade-profissional,
.gde-upgrade-premium {
    transition: all 0.3s ease-in-out;
}


/* ===== PRODUTOS E CATÁLOGO ===== */

.gde-produtos-section {
    margin-top: 28px;
}

.gde-produtos-section h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--gde-text);
}

.gde-produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.gde-produto-card {
    display: flex;
    flex-direction: column;
    background: var(--gde-card);
    border: 1px solid var(--gde-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gde-produto-card:hover {
    box-shadow: 0 8px 24px rgba(20, 85, 217, 0.15);
    transform: translateY(-2px);
}

.gde-produto-imagem {
    width: 100%;
    height: 160px;
    background: var(--gde-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gde-produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gde-produto-card:hover .gde-produto-imagem img {
    transform: scale(1.05);
}

.gde-produto-sem-imagem {
    font-size: 2.5rem;
    color: #d1d5db;
}

.gde-produto-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px;
}

.gde-produto-nome {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gde-text);
    line-height: 1.3;
}

.gde-produto-descricao {
    margin: 0 0 10px;
    font-size: 0.8rem;
    color: var(--gde-muted);
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gde-produto-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.gde-produto-valor {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gde-primary);
}

.gde-btn-pequeno {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
}

/* ===== CARRINHO FLUTUANTE ===== */

.gde-carrinho-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 360px;
    max-height: 80vh;
    background: var(--gde-card);
    border: 1px solid var(--gde-border);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(20, 32, 51, 0.25);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gde-carrinho-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gde-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--gde-primary), var(--gde-primary-dark));
    color: white;
    border-radius: 12px 12px 0 0;
}

.gde-carrinho-titulo {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.gde-carrinho-fechar {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.gde-carrinho-fechar:hover {
    opacity: 0.8;
}

.gde-carrinho-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.gde-carrinho-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--gde-bg);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.gde-carrinho-item-info {
    flex: 1;
}

.gde-carrinho-item-nome {
    margin: 0;
    font-weight: 600;
    color: var(--gde-text);
}

.gde-carrinho-item-valor {
    margin: 4px 0 0;
    color: var(--gde-primary);
    font-weight: 600;
}

.gde-carrinho-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
    background: white;
    border: 1px solid var(--gde-border);
    border-radius: 4px;
    padding: 2px 4px;
}

.gde-carrinho-item-qty button {
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gde-primary);
    font-weight: bold;
    transition: opacity 0.2s;
}

.gde-carrinho-item-qty button:hover {
    opacity: 0.7;
}

.gde-carrinho-item-qty span {
    width: 20px;
    text-align: center;
    font-weight: 600;
}

.gde-carrinho-remover {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}

.gde-carrinho-remover:hover {
    background: #dc2626;
}

.gde-carrinho-vazio {
    padding: 20px;
    text-align: center;
    color: var(--gde-muted);
    font-size: 0.9rem;
}

.gde-carrinho-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--gde-border);
    background: var(--gde-bg);
    border-radius: 0 0 12px 12px;
}

.gde-carrinho-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--gde-text);
}

.gde-carrinho-total-valor {
    font-size: 1.2rem;
    color: var(--gde-primary);
}

.gde-carrinho-finalizar {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #25d366, #1fa857);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    font-size: 0.9rem;
}

.gde-carrinho-finalizar:hover {
    opacity: 0.9;
}

.gde-carrinho-finalizar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Badge do carrinho (botão flutuante) */
.gde-carrinho-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #1fa857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    color: white;
    font-size: 1.8rem;
}

.gde-carrinho-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.gde-carrinho-contador {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
}

.gde-notif {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #101828;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 10002;
    animation: slideInUp 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 768px) {
    .gde-produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gde-produto-imagem {
        height: 130px;
    }

    .gde-produto-info {
        padding: 12px;
    }

    .gde-produto-nome {
        font-size: 0.9rem;
    }

    .gde-produto-descricao {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .gde-produto-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .gde-produto-valor {
        font-size: 1rem;
        text-align: left;
    }

    .gde-btn-pequeno {
        width: 100% !important;
        text-align: center;
        padding: 8px 12px !important;
    }

    .gde-carrinho-flutuante {
        width: calc(100% - 20px);
        max-height: 60vh;
        bottom: 80px;
        right: 10px;
    }

    .gde-carrinho-badge {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gde-produtos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gde-produto-card {
        flex-direction: row;
    }

    .gde-produto-imagem {
        width: 100px;
        min-width: 100px;
        height: auto;
        min-height: 100px;
    }

    .gde-produto-info {
        padding: 10px 12px;
        flex: 1;
        min-width: 0;
    }

    .gde-produto-descricao {
        -webkit-line-clamp: 2;
        margin-bottom: 8px;
    }

    .gde-produto-footer {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
    }

    .gde-produto-valor {
        font-size: 0.95rem;
        text-align: left;
    }

    .gde-btn-pequeno {
        width: 100% !important;
        padding: 8px 10px !important;
        font-size: 0.78rem !important;
        white-space: nowrap;
        text-align: center;
        display: block;
        box-sizing: border-box;
    }

    .gde-carrinho-flutuante {
        width: calc(100% - 16px);
        bottom: 70px;
        right: 8px;
    }
}
/* ===== AVALIAÇÕES: ESTRELAS EM AMARELO NO HOVER E CLIQUE ===== */

/* 1. Estado Base (Cinza) */
/* Estilos de Estrelas Corrigidos */
.gde-form-stars {
    display: inline-flex !important;
    gap: 6px !important;
    background: transparent !important;
    border: none !important;
    padding: 5px 0 !important;
}
.gde-form-stars .gde-form-star {
    color: #d6dae3 !important;
    font-size: 2.2rem !important;
    line-height: 1 !important;
    transition: color 0.15s ease, transform 0.15s ease !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}
.gde-form-stars .gde-form-star:hover,
.gde-form-stars .gde-form-star.is-hover {
    color: #f4b400 !important;
    transform: scale(1.2) !important;
}
.gde-form-stars .gde-form-star.is-active {
    color: #f4b400 !important;
}

/* =================================================================
   Barra de Segmentos
   ================================================================= */
.gde-segmentos-bar {
    margin-bottom: 28px;
    padding: 0;
}
.gde-segmentos-filter {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 260px;
    margin: 0 auto 14px;
}
.gde-segmentos-search {
    width: 100%;
    padding: 10px 16px;
    border: 1.5px solid var(--gde-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gde-text);
    background: var(--gde-card);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.gde-segmentos-search:focus {
    border-color: var(--gde-primary);
    box-shadow: 0 0 0 3px rgba(20, 85, 217, 0.1);
}
.gde-segmentos-search::placeholder {
    color: var(--gde-muted);
    opacity: 0.7;
    padding-left: 0;
}
.gde-segmentos-search-icon {
    position: static;
    transform: none;
    color: var(--gde-muted);
    pointer-events: none;
    z-index: 2;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    flex-shrink: 0;
}
.gde-segmentos-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0 4px;
}
.gde-segmento-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--gde-card);
    border: 2px solid var(--gde-border);
    border-radius: 50px;
    color: var(--gde-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}
.gde-segmento-btn:hover,
.gde-segmento-btn:focus,
.gde-segmento-btn-active {
    background: var(--gde-primary);
    color: #ffffff;
    border-color: var(--gde-primary);
    box-shadow: 0 6px 20px rgba(20, 85, 217, 0.25);
    transform: translateY(-2px);
}
.gde-segmento-emoji {
    font-size: 1.3rem;
    line-height: 1;
}
.gde-segmento-nome {
    line-height: 1.2;
}

/* Responsivo */
@media (max-width: 768px) {
    .gde-segmentos-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .gde-segmento-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* =================================================================
   Página de Arquivo de Segmento
   ================================================================= */
.gde-segmento-archive-header {
    text-align: center;
    padding: 40px 20px 30px;
}
.gde-segmento-archive-header .gde-segmento-emoji-big {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}
.gde-segmento-archive-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gde-text);
    margin: 0 0 8px;
}
.gde-segmento-archive-header p {
    color: var(--gde-muted);
    font-size: 1rem;
    margin: 0;
}