/* GH Farma Complete Stylesheet - 100% Pixel-Perfect Match to Mobile & Desktop Screenshots */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300..900;1,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --brand-purple: #7c3aed;        /* GH Farma Gradient Purple */
    --brand-purple-dark: #6d28d9;
    --price-purple: #6d28d9;        /* Price text purple R$229,90 */
    --btn-green: #22c55e;           /* Green action button #22c55e */
    --btn-green-hover: #16a34a;
    --badge-blue: #2563eb;          /* Destaque badge vibrant blue */
    --nav-arrow-bg: #a855f7;        /* Purple floating carousel arrows */
    --text-heading: #0f172a;        /* Section main title dark color */
    --text-body: #334155;
    --text-muted: #64748b;
    --bg-light: #ffffff;
    --border-color: #e2e8f0;
    --font-heading: 'Montserrat', 'Open Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html, body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* ----------------------------------------------------
   MOBILE CATEGORIES DRAWER MODAL (MATCHING SCREENSHOT)
---------------------------------------------------- */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(2px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.drawer-panel.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 20px 18px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.drawer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: #334155;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.drawer-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drawer-category-list li {
    margin: 0;
}

.drawer-category-list a {
    display: block;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}

.drawer-category-list a:hover {
    background: #f8fafc;
    color: #7c3aed;
}

/* ----------------------------------------------------
   CART DRAWER MODAL (RIGHT SLIDE - MATCHING SCREENSHOT)
---------------------------------------------------- */
.cart-drawer-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    height: 100dvh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-drawer-panel.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 22px 20px 18px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px 25px 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.cart-empty-state {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.cart-empty-state p {
    font-size: 18px;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

.cart-drawer-items-list {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 15px;
}

.cart-drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.cart-drawer-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
    padding: 4px;
}

.cart-drawer-item-info {
    flex: 1;
}

.cart-drawer-item-info h5 {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 4px;
}

.cart-drawer-item-price {
    font-size: 14px;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 6px;
}

.cart-drawer-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    overflow: hidden;
}

.cart-qty-ctrl button {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 15px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-ctrl span {
    font-size: 13px;
    font-weight: 700;
    padding: 0 6px;
    min-width: 20px;
    text-align: center;
}

.cart-del-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 14px;
}

.cart-drawer-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    padding-bottom: 25px;
    margin-top: auto;
    background: #ffffff;
}

.cart-drawer-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.cart-drawer-subtotal strong {
    font-size: 18px;
    color: #0f172a;
}

/* ----------------------------------------------------
   USER ACCOUNT POPOVER DROPDOWN (MATCHING SCREENSHOT)
---------------------------------------------------- */
.user-dropdown-popover {
    position: absolute;
    top: calc(100% + 14px);
    right: -25px;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 24px;
    width: 240px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.15);
    border: 1px solid #f1f5f9;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.user-dropdown-popover.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 14px 0;
}

.user-dropdown-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 16px;
}

.user-dropdown-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.user-dropdown-links li a {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    display: block;
    transition: color 0.15s;
    text-decoration: none;
}

.user-dropdown-links li a:hover {
    color: #7c3aed;
}

/* ----------------------------------------------------
   IDENTIFIQUE-SE AUTH MODAL (EXACT MATCH TO SCREENSHOT)
---------------------------------------------------- */
.auth-modal-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(4px);
    z-index: 100005 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.auth-modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.auth-modal-box {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 395px;
    padding: 24px 22px 28px 22px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-sizing: border-box;
}

.auth-modal-overlay.active .auth-modal-box {
    transform: scale(1);
}

.auth-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auth-modal-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.auth-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.auth-modal-close:hover {
    color: #0f172a;
}

.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input-group:focus-within {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.auth-input-icon {
    padding-left: 14px;
    padding-right: 10px;
    color: #64748b;
    font-size: 17px;
    display: flex;
    align-items: center;
}

.auth-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 13px 14px 13px 0;
    font-size: 15px;
    color: #1e293b;
    background: transparent;
    font-family: inherit;
}

.auth-input::placeholder {
    color: #94a3b8;
    font-size: 14.5px;
}

.auth-toggle-pass {
    background: none;
    border: none;
    padding: 0 14px;
    color: #64748b;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.auth-toggle-pass:hover {
    color: #1e293b;
}

.auth-error-msg {
    color: #ef4444;
    font-size: 12.5px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 2px;
}

.auth-btn-continue {
    width: 100%;
    background: #5cb85c;
    background: #48bb78;
    background: #22c55e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 13px;
    margin-top: 16px;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, transform 0.1s;
}

.auth-btn-continue:hover {
    background: #16a34a;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0 16px 0;
    color: #94a3b8;
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-divider span {
    padding: 0 12px;
}

.auth-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-social-btn {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background 0.15s, border-color 0.15s;
}

.auth-social-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.auth-privacy-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin-top: 18px;
    margin-bottom: 0;
    text-align: left;
}

.auth-privacy-text a {
    color: #2563eb;
    text-decoration: underline;
}

/* ----------------------------------------------------
   LOGGED IN USER HEADER STYLING
---------------------------------------------------- */
.header-user-logged-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 4px 10px 4px 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.header-user-logged-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.user-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.user-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.user-greeting {
    font-size: 11.5px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}

.user-subident {
    font-size: 10.5px;
    color: #64748b;
    font-weight: 600;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.badge-account-active {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dcfce7;
    color: #15803d;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid #bbf7d0;
}

.badge-account-active i {
    font-size: 9px;
}

@media (max-width: 480px) {
    .user-subident {
        max-width: 80px;
    }
    .header-user-logged-btn {
        padding: 3px 8px 3px 4px;
        gap: 6px;
    }
}

/* ----------------------------------------------------
   HEADER (MOBILE & DESKTOP 100% MATCH TO PHOTOS)
---------------------------------------------------- */
.main-header {
    background-color: #ffffff;
    border-top: 6px solid #23120b;
    padding: 10px 8px 12px 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    padding: 0 4px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
}

.header-nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hamburger-btn {
    font-size: 23px;
    color: #334155;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 6px;
    margin-left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logo-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.main-logo-img {
    height: 48px;
    width: auto;
    max-height: 54px;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.header-nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.icon-user {
    font-size: 27px;
    color: #1e293b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
}

.cart-icon-box {
    position: relative;
    font-size: 23px;
    color: #1e293b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #6527e0;
    color: #e879f9;
    font-size: 11px;
    font-weight: 800;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SEARCH INPUT */
.search-container {
    margin-top: 10px;
    margin-left: 6px;
    margin-right: 6px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 12px 45px 12px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    font-size: 14px;
    color: #334155;
    outline: none;
}

.search-container input::placeholder {
    color: #94a3b8;
}

.search-container button {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
}

/* ----------------------------------------------------
   HERO BANNER SLIDER & CAROUSEL ARROWS
---------------------------------------------------- */
.banner-section {
    position: relative;
    margin-top: 12px;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.banner-card {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 40%, #3b82f6 100%);
    color: white;
    padding: 25px 20px;
    border-radius: 16px;
    position: relative;
}

.banner-btn-purple {
    display: inline-block;
    background: #7c3aed;
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.arrow-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #8b5cf6;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
    transition: transform 0.2s, background 0.2s;
}
.arrow-btn:hover {
    background: #7c3aed;
    transform: translateY(-50%) scale(1.08);
}
.arrow-btn.prev { left: -8px; }
.arrow-btn.next { right: -8px; }

@media (max-width: 480px) {
    .arrow-btn.prev { left: -4px; }
    .arrow-btn.next { right: -4px; }
}

/* ----------------------------------------------------
   SECTION HEADINGS & SUBTITLES (FOTOS 1 A 5)
---------------------------------------------------- */
.section-heading-block {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 20px;
}

.section-main-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.section-subtitle-text {
    font-size: 13px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.category-subheading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
}

/* ----------------------------------------------------
   PRODUCT HORIZONTAL CAROUSEL (EXACTLY 2 VISIBLE ON MOBILE)
---------------------------------------------------- */
.products-carousel-container {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.products-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 4px 2px 14px 2px;
}

.products-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.product-card {
    flex: 0 0 calc(50% - 6px);
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
    scroll-snap-align: start;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 768px) {
    .product-card {
        flex: 0 0 calc(25% - 15px);
        min-width: calc(25% - 15px);
        max-width: calc(25% - 15px);
        padding: 14px;
        border-radius: 18px;
    }
}

.product-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.badge-destaque {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2563eb;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.35);
    letter-spacing: 0.2px;
}

.product-img-box {
    width: 100%;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    text-decoration: none;
}

@media (min-width: 768px) {
    .product-img-box {
        height: 180px;
    }
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img-box img {
    transform: scale(1.05);
}

.stars-rating {
    color: #e2e8f0;
    font-size: 13px;
    margin-bottom: 6px;
}
.stars-rating .active {
    color: #fbbf24;
}

.product-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.price-main {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: #6d28d9;
    line-height: 1.2;
}

.price-pix {
    font-size: 12.5px;
    font-weight: 800;
    color: #334155;
    margin-bottom: 12px;
}

.price-pix span {
    font-weight: 400;
    color: #64748b;
}

.btn-details {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--btn-green);
    color: white;
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 192, 88, 0.2);
}

.btn-details:hover {
    background: var(--btn-green-hover);
    box-shadow: 0 6px 14px rgba(0, 192, 88, 0.3);
    transform: translateY(-1px);
}

/* ----------------------------------------------------
   SPECIAL ATTENDANCE CARD
---------------------------------------------------- */
.doctor-banner-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* ----------------------------------------------------
   PURPLE PILL BUTTONS (FOTOS 6, 7, 8, 9, 10)
---------------------------------------------------- */
.btn-purple-pill {
    display: inline-block;
    background: #6d28d9;
    color: white;
    padding: 10px 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.25);
    transition: all 0.2s ease;
}
.btn-purple-pill:hover {
    background: #5b21b6;
    transform: translateY(-2px);
}

/* ----------------------------------------------------
   FLOATING WHATSAPP BUTTON (BOTTOM RIGHT)
---------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 18px;
    background-color: #25d366;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 26px;
    }
}

/* ----------------------------------------------------
   BENEFIT CARDS ("CONHEÇA OS BENEFÍCIOS DA GHFARMA")
---------------------------------------------------- */
.benefit-card-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    max-width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.benefit-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    line-height: 0;
}

.benefit-banner-full-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.benefit-card-block:hover .benefit-banner-full-img {
    transform: scale(1.015);
}

.benefit-card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-card-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 90%;
}

.btn-benefit-action {
    display: inline-block;
    background: #facc15;
    color: #0f172a;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.3);
    transition: all 0.2s ease;
}

.btn-benefit-action:hover {
    background: #eab308;
    transform: translateY(-1px);
}

/* ----------------------------------------------------
   FAQ SECTION (ACCORDION)
---------------------------------------------------- */
.faq-section-block {
    margin-top: 35px;
    margin-bottom: 40px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-accordion-item.open {
    border-color: #cbd5e1;
}

.faq-accordion-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    user-select: none;
    background: #ffffff;
}

.faq-accordion-header i {
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.faq-accordion-item.open .faq-accordion-header i {
    transform: rotate(180deg);
}

.faq-accordion-body {
    padding: 0 20px 16px 20px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    display: none;
}

.faq-accordion-item.open .faq-accordion-body {
    display: block;
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION (SLIDER CARDS)
---------------------------------------------------- */
.testimonials-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px 35px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* ----------------------------------------------------
   PAGE HEADER / FOOTER RESETS
---------------------------------------------------- */
.page-hero-banner {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 30px;
    padding-bottom: 40px;
}

/* ----------------------------------------------------
   NEWSLETTER CARD
---------------------------------------------------- */
.newsletter-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 20px;
    margin-top: 35px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
    background: #ffffff;
    color: #1e293b;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    padding-bottom: 40px;
}

/* ----------------------------------------------------
   TOP STRIP BANNER & FULLWIDTH HERO BANNER (MATCHING SCREENSHOT)
---------------------------------------------------- */
.top-strip-banner-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    overflow: hidden;
    background: #1e40af;
    position: relative;
    z-index: 5;
}

.top-strip-banner-img {
    width: 100%;
    max-height: 80px;
    object-fit: cover;
    display: block;
}

.top-strip-benefits-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(90deg, #1e40af 0%, #2563eb 50%, #1e40af 100%);
    color: #ffffff;
    padding: 10px 15px;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.top-strip-benefits-bar::-webkit-scrollbar { display: none; }

.strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    flex-shrink: 0;
}
.strip-item i {
    font-size: 18px;
    color: #facc15;
}

/* HERO BANNER FULLWIDTH (SEM BORDAS PRO LADO) */
.hero-slider-fullwidth {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background: #ffffff;
}

.hero-slides-wrapper {
    width: 100%;
    position: relative;
}

.hero-slide-item {
    display: none;
    width: 100%;
}
.hero-slide-item.active {
    display: block;
}

.hero-slide-item img {
    width: 100%;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

/* DEFAULT HIGH-FIDELITY HERO SLIDE (MATCHING SCREENSHOT) */
.hero-slide-default {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 25%, #ffffff 50%, #f8fafc 100%);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 25px 20px;
    overflow: hidden;
}

.hero-default-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 6px;
}
.hero-default-sub {
    font-size: 13px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 14px;
}
.hero-default-btn {
    display: inline-block;
    background: #6d28d9;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 800;
    padding: 9px 24px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.4);
}

/* FLOATING PURPLE ARROW BUTTONS (MATCHING SCREENSHOT) */
.hero-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #8b5cf6;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
    transition: transform 0.15s, background 0.15s;
}
.hero-arrow-btn:hover {
    background: #7c3aed;
    transform: translateY(-50%) scale(1.05);
}
.hero-arrow-btn.hero-prev { left: 10px; }
.hero-arrow-btn.hero-next { right: 10px; }

.hero-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 18px;
}
.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #94a3b8;
    display: inline-block;
}
.hero-dot.active {
    background: #64748b;
}

/* PROMO CARD CAROUSEL (3s AUTO ROTATE & ARROWS) */
.promo-slider-container {
    position: relative;
    margin-top: 14px;
    margin-bottom: 24px;
}

.promo-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.promo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-dot.active {
    background: #8b5cf6;
    width: 18px;
    border-radius: 10px;
}

.promo-slider-viewport {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.promo-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.promo-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 16px 52px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-icon-box {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon-bg {
    position: absolute;
    width: 36px;
    height: 40px;
    right: 2px;
    bottom: 2px;
    background: #facc15;
    border-radius: 6px;
    z-index: 1;
}

.promo-icon-symbol {
    position: relative;
    z-index: 2;
    color: #e11d48;
    font-size: 24px;
}

.promo-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #8b5cf6;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.promo-arrow-btn:hover {
    background: #7c3aed;
    transform: translateY(-50%) scale(1.05);
}

.promo-arrow-btn.promo-prev { left: 10px; }
.promo-arrow-btn.promo-next { right: 10px; }

.promo-card-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2px;
    line-height: 1.25;
}

.promo-card-sub {
    font-size: 12px;
    color: #64748b;
    line-height: 1.35;
    margin: 0;
}


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

/* ====================================================
   LOGIN LANDING SCREEN (100% MATCH TO PHOTO 1)
   ==================================================== */
.login-landing-body-page {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
}

.login-landing-header {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 20px;
    width: 100%;
}

.login-landing-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-landing-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.login-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.login-landing-security {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-security-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.login-security-text span {
    font-weight: 600;
    color: #64748b;
}

.login-security-text strong {
    font-weight: 800;
    color: #475569;
}

.login-security-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #60b246;
    color: #60b246;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.login-landing-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 80px 20px;
}

.login-landing-card {
    width: 100%;
    max-width: 440px;
    text-align: center;
    margin: 0 auto;
}

.auth-section-block {
    padding: 8px 0;
}

.auth-block-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #475569;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.auth-block-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0 auto 24px auto;
    max-width: 320px;
    line-height: 1.45;
}

.btn-auth-action-solid {
    width: 100%;
    max-width: 290px;
    height: 48px;
    background-color: #60b246;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: inherit;
}

.btn-auth-action-solid:hover {
    background-color: #529d3a;
}

.btn-auth-action-solid:active {
    transform: scale(0.98);
}

.auth-landing-divider {
    width: 100%;
    max-width: 380px;
    height: 1px;
    background-color: #e2e8f0;
    margin: 38px auto;
}

.btn-auth-action-outline {
    width: 100%;
    max-width: 290px;
    height: 48px;
    background-color: #ffffff;
    color: #60b246;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #60b246;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: inherit;
}

.btn-auth-action-outline:hover {
    background-color: #f0fdf4;
}

.btn-auth-action-outline:active {
    transform: scale(0.98);
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* ====================================================
   IDENTIFIQUE-SE MODAL (100% MATCH TO PHOTO 2)
   ==================================================== */
.auth-modal-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(3px);
    z-index: 100000 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 16px;
    box-sizing: border-box;
}

.auth-modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.auth-modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 410px;
    border-radius: 8px;
    padding: 24px 22px 20px 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-16px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-sizing: border-box;
}

.auth-modal-overlay.active .auth-modal-box {
    transform: translateY(0);
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.auth-modal-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #475569;
    margin: 0;
}

.auth-modal-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.15s;
}

.auth-modal-close:hover {
    color: #1e293b;
}

.auth-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0 12px;
    height: 48px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.auth-input-group:focus-within {
    border-color: #60b246;
    box-shadow: 0 0 0 3px rgba(96, 178, 70, 0.18);
}

.auth-input-icon {
    color: #64748b;
    font-size: 17px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #1e293b;
    font-family: inherit;
}

.auth-input::placeholder {
    color: #94a3b8;
}

.auth-toggle-pass {
    background: none;
    border: none;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

.auth-toggle-pass:hover {
    color: #334155;
}

.auth-error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 12px;
    text-align: left;
}

.auth-btn-continue {
    width: 100%;
    height: 48px;
    background-color: #60b246;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    margin-top: 16px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.auth-btn-continue:hover {
    background-color: #529d3a;
}

.auth-btn-continue:active {
    transform: scale(0.99);
}

.auth-modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #64748b;
    font-size: 13.5px;
    margin: 22px 0 16px 0;
}

.auth-modal-divider::before,
.auth-modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-modal-divider span {
    padding: 0 10px;
    color: #64748b;
    font-size: 13px;
}

.auth-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-social-btn {
    width: 100%;
    height: 46px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s;
    text-decoration: none;
    font-family: inherit;
}

.auth-social-btn:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
}

.auth-social-icon {
    flex-shrink: 0;
}

.auth-privacy-text {
    font-size: 12.5px;
    color: #475569;
    margin-top: 16px;
    line-height: 1.45;
    text-align: left;
}

.auth-privacy-text a {
    color: #2563eb;
    text-decoration: underline;
}

.auth-privacy-text a:hover {
    color: #1d4ed8;
}

/* ====================================================
   REGISTRATION PAGE (CADASTRO.PHP)
   ==================================================== */
.register-card {
    max-width: 480px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 36px 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.register-header-box {
    margin-bottom: 24px;
    text-align: center;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-field-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.auth-field-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
}

.register-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 14px;
    color: #64748b;
}

.register-link-login {
    color: #60b246;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.15s;
}

.register-link-login:hover {
    color: #529d3a;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .register-card {
        padding: 24px 18px;
        border: none;
        box-shadow: none;
    }
}

/* ====================================================
   1.000 AVALIAÇÕES DE CLIENTES (AUTO SLIDE 3s)
   ==================================================== */
.store-reviews-section {
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding: 0 10px;
}

.store-reviews-summary-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 8px 18px;
    margin: 0 auto 22px auto;
    width: fit-content;
}

.store-reviews-score-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0f172a;
    font-size: 14px;
}

.score-stars {
    color: #fbbf24;
    display: inline-flex;
    gap: 2px;
    font-size: 13px;
}

.store-reviews-count-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
}

.store-reviews-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.review-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
.review-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #8b5cf6;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
    z-index: 10;
    transition: all 0.2s ease;
}

.review-nav-arrow:hover {
    background: #7c3aed;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.5);
}

.review-nav-arrow.review-prev { left: -14px; }
.review-nav-arrow.review-next { right: -14px; }

@media (max-width: 600px) {
    .review-nav-arrow.review-prev { left: -10px; }
    .review-nav-arrow.review-next { right: -10px; }
}

.store-review-active-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 24px 22px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.store-review-active-card.review-fade-in {
    animation: fadeInReview 0.35s ease forwards;
}

.store-review-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.store-review-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.avatar-fem {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

.avatar-masc {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.store-review-user-meta {
    text-align: center;
}

.store-review-user-name {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.store-review-user-city {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.store-review-badges-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.store-review-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

.store-review-date-text {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.store-review-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.stars-gold {
    color: #fbbf24;
    font-size: 17px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.store-review-verified-label {
    display: none;
}

.store-review-comment-body {
    position: relative;
    padding: 0 10px;
    margin-bottom: 16px;
    text-align: center;
}

.quote-icon-start {
    display: none;
}

.store-review-comment-body p {
    font-size: 14px;
    color: #334155;
    line-height: 1.65;
    margin: 0;
    font-style: normal;
}

.store-review-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    padding-top: 10px;
    border-top: 1px dashed #f1f5f9;
}

.store-review-counter {
    font-weight: 700;
    color: #7c3aed;
}

.store-review-pulse-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #059669;
    font-weight: 600;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.btn-all-reviews-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #6d28d9;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.btn-all-reviews-modal:hover {
    background: #5b21b6;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
}

/* ====================================================
   MODAL TODAS AS 1.000 AVALIAÇÕES
   ==================================================== */
.all-reviews-modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 620px;
    max-height: 88vh;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
}

.all-reviews-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.all-reviews-modal-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.reviews-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 14px;
    height: 42px;
    margin: 14px 0;
}

.reviews-search-box i {
    color: #94a3b8;
    font-size: 14px;
}

.reviews-search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 13.5px;
    color: #1e293b;
    font-family: inherit;
}

.all-reviews-modal-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-review-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    text-align: left;
}

.modal-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ====================================================
   FOOTER ACCORDION (INTERACTIVE & EXPANDABLE)
   ==================================================== */
.footer-accordion-item {
    border-bottom: 1px solid #f1f5f9;
}

.footer-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.footer-accordion-header:hover {
    color: #6d28d9;
}

.footer-accordion-icon {
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.footer-accordion-item.active .footer-accordion-icon {
    transform: rotate(45deg);
    color: #6d28d9;
}

.footer-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-accordion-content {
    padding: 4px 0 20px 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.7;
}

.footer-accordion-content a {
    color: #6d28d9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-accordion-content a:hover {
    color: #4c1d95;
    text-decoration: underline;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-list li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-weight: 500;
    font-size: 13px;
}

.footer-links-list li a:hover {
    color: #6d28d9;
    transform: translateX(3px);
}

.footer-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
}

@media (min-width: 600px) {
    .footer-info-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #334155;
}

.footer-info-card i {
    color: #6d28d9;
    font-size: 15px;
}
