/* ============================================================
   CSS Referência - CM Joalheria
   Paleta: Amarelo + Preto | Bootstrap 5.3.8
   Palavra-chave foco: Compra de Ouro em Curitiba
   ============================================================ */

:root {
    /* Cores Principais — Identidade AMARELO + PRETO */
    --cm-primary:        #D4AF37;
    --cm-primary-dark:   #B8960F;
    --cm-primary-light:  #E8C84A;
    --cm-accent-gold:    #F5C842;
    --cm-accent-gold-2:  #D4AF37;
    
    /* Backgrounds */
    --cm-bg-black:       #000000;
    --cm-bg-dark:        #1a1a1a;
    
    /* Textos */
    --cm-text-dark:      #333333;
    --cm-text-body:      #555555;
    --cm-text-heading:   #444444;
    --cm-text-light:     #EEEEEE;
    
    /* Fontes */
    --cm-font:           'Poppins', sans-serif;
}

/* ============================================================
   RESET & BASE (sobrescreve Bootstrap)
   ============================================================ */
body {
    font-family: var(--cm-font);
    color: var(--cm-text-body);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--cm-primary);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--cm-primary-dark);
}

/* ============================================================
   NAVBAR CUSTOM
   ============================================================ */
.navbar {
    background: var(--cm-bg-black) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0;
}

/* Barra fixa — compensa altura para não sobrepor conteúdo */
.backgroundnav.site-header {
    position: relative;
    z-index: 1020;
}

/* Toggler branco (fundo preto) */
.navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.2);
}
.navbar .navbar-toggler-icon {
    filter: invert(1);
}

.navbar .nav-link {
    color: var(--cm-text-light) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.7rem 1.1rem !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--cm-accent-gold) !important;
    background: rgba(212,175,55,0.1);
}
.navbar .nav-link.active {
    font-weight: 600;
}

/* Botão WhatsApp destacado no menu */
.navbar .btn-nav-whatsapp {
    background: var(--cm-primary);
    color: var(--cm-bg-black) !important;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.55rem 1.2rem !important;
    border-radius: 50px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(212,175,55,0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}
.navbar .btn-nav-whatsapp:hover {
    background: var(--cm-accent-gold);
    color: var(--cm-bg-black) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,175,55,0.5);
}
.navbar .btn-nav-whatsapp svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Telefone no menu */
.navbar .nav-phone {
    color: var(--cm-text-light) !important;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}
.navbar .nav-phone:hover {
    color: var(--cm-accent-gold) !important;
}

/* ============================================================
   H1 - PALAVRA-CHAVE FOCO
   ============================================================ */
h1.keyword-foco {
    font-family: var(--cm-font);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

/* ============================================================
   H2 COM PALAVRA-CHAVE FOCO
   ============================================================ */
h2.keyword-foco {
    font-family: var(--cm-font);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cm-primary);
    margin-bottom: 0.25rem;
    display: block;
}
h2.keyword-foco + .subtitulo-maior {
    font-family: var(--cm-font);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--cm-text-heading);
    line-height: 1.25;
    display: block;
    margin-bottom: 1.25rem;
}
.section-dark h2.keyword-foco + .subtitulo-maior,
.bg-dark h2.keyword-foco + .subtitulo-maior {
    color: #fff;
}
.section-dark h2.keyword-foco,
.bg-dark h2.keyword-foco {
    color: var(--cm-accent-gold);
}

/* ============================================================
   H2 SEM PALAVRA-CHAVE FOCO (CSS duplicado, mesma aparência)
   ============================================================ */
h2.sem-keyword {
    font-family: var(--cm-font);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cm-primary);
    margin-bottom: 0.25rem;
    display: block;
}
h2.sem-keyword + .subtitulo-maior {
    font-family: var(--cm-font);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--cm-text-heading);
    line-height: 1.25;
    display: block;
    margin-bottom: 1.25rem;
}
.section-dark h2.sem-keyword + .subtitulo-maior,
.bg-dark h2.sem-keyword + .subtitulo-maior {
    color: #fff;
}
.section-dark h2.sem-keyword,
.bg-dark h2.sem-keyword {
    color: var(--cm-accent-gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
    min-height: 600px;
    position: relative;
    overflow: hidden;
}
#hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#hero .hero-overlay { display: none; } /* removido */
#hero .hero-overlay-old {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.68) 100%);
}
#hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}
#hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--cm-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================================
   BOTÕES WHATSAPP
   ============================================================ */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    color: #fff !important;
}
.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Botão WhatsApp dark (seções claras) */
.btn-whatsapp-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-whatsapp-dark:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.45);
    color: #fff !important;
}
.btn-whatsapp-dark svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ============================================================
   BOTÕES TELEFONE
   ============================================================ */
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-phone:hover {
    background: #fff;
    color: #000 !important;
    transform: translateY(-2px);
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
    background: linear-gradient(90deg, var(--cm-bg-black) 0%, var(--cm-bg-dark) 100%);
    border-bottom: 2px solid var(--cm-primary);
}
.promo-bar h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}
.promo-bar p {
    color: var(--cm-accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.promo-bar .btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cm-primary);
    color: var(--cm-bg-black) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1;
    text-decoration: none;
    border: none;
}
.promo-bar .btn-promo svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: block;
}
.promo-bar .btn-promo:hover {
    background: var(--cm-accent-gold);
    color: var(--cm-bg-black) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

/* ============================================================
   CARDS CUSTOM
   ============================================================ */
.card-beneficio {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 1px solid #E5E5E5;
    text-align: center;
    height: 100%;
}
.card-beneficio:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--cm-primary);
}
.card-beneficio .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}
.card-beneficio .card-icon svg {
    flex-shrink: 0;
}
.card-beneficio h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cm-text-heading);
    margin-bottom: 0.6rem;
}
.card-beneficio p {
    font-size: 0.87rem;
    color: var(--cm-text-body);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card de Passo */
.card-passo {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border-left: 4px solid var(--cm-primary);
    transition: all 0.3s ease;
    height: 100%;
}
.card-passo:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.card-passo .passo-numero {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--cm-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}
.card-passo h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cm-text-heading);
    margin-bottom: 0.25rem;
}
.card-passo p {
    font-size: 0.87rem;
    color: var(--cm-text-body);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================================
/* ============================================================
   SELO GOOGLE 5.0
   ============================================================ */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 8px 18px;
    margin-bottom: 1rem;
}
.google-rating-badge .google-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}
.google-rating-badge .google-stars svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.google-rating-badge .google-score {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1;
}
.google-rating-badge .google-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1;
}
.google-rating-badge .google-logo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Versão escura para seções claras */
.google-rating-badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-radius: 50px;
    padding: 10px 20px;
}
.google-rating-badge-dark .google-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}
.google-rating-badge-dark .google-stars svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.google-rating-badge-dark .google-score {
    color: #333;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1;
}
.google-rating-badge-dark .google-label {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1;
}
.google-rating-badge-dark .google-logo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   ITENS QUE COMPRAMOS
   ============================================================ */
.grid-itens-compramos {
    list-style: none;
    padding: 0;
    margin: 0;
}
.grid-itens-compramos li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    color: var(--cm-text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.grid-itens-compramos li:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.18);
}
.grid-itens-compramos li .icon-item {
    color: var(--cm-accent-gold);
    font-size: 1rem;
}

/* ============================================================
   FAQ ACCORDION CUSTOMIZAÇÃO
   ============================================================ */
.accordion-button {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: var(--cm-text-heading) !important;
    background: #fff !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--cm-primary) !important;
    background: #fff !important;
}
.accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}
.accordion-button:focus {
    border-color: var(--cm-primary) !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2) !important;
}
.accordion-item {
    border: 1px solid #E5E5E5;
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
.accordion-body {
    font-size: 0.9rem;
    color: var(--cm-text-body);
    line-height: 1.7;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #E5E5E5;
    height: 100%;
}
.testimonial-card .testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cm-primary);
    flex-shrink: 0;
}
.testimonial-card .testi-name {
    font-weight: 600;
    color: var(--cm-text-heading);
    font-size: 0.95rem;
}
.testimonial-card .testi-label {
    font-size: 0.8rem;
    color: #888;
}
.testimonial-card .testi-text {
    font-size: 0.9rem;
    color: var(--cm-text-body);
    line-height: 1.6;
    font-style: italic;
}
.testimonial-card .testi-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 0.5rem;
}
.testimonial-card .testi-stars svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ============================================================
   STATS
   ============================================================ */
.highlight-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}
.highlight-box .highlight-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cm-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.highlight-box .highlight-label {
    font-size: 0.95rem;
    color: var(--cm-text-body);
    font-weight: 500;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
    position: relative;
    padding: 5rem 0;
    text-align: center;
}
.cta-final .cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.cta-final .cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
}
.cta-final .cta-content {
    position: relative;
    z-index: 2;
}
.cta-final h2 {
    color: #fff !important;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.cta-final .cta-subtitle {
    font-size: 1.15rem;
    color: var(--cm-text-light);
    margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--cm-bg-black);
    color: var(--cm-text-light);
}
#footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
#footer p,
#footer a {
    font-size: 0.87rem;
    color: #BBB;
    line-height: 1.7;
}
#footer a:hover {
    color: var(--cm-primary);
}
#footer .footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}
#footer .footer-contact-link:hover {
    color: var(--cm-primary);
}
#copyrights {
    border-top: 1px solid rgba(255,255,255,0.08);
}
#copyrights a {
    color: #888;
    font-size: 0.8rem;
    text-decoration: none;
}
#copyrights a:hover {
    color: var(--cm-primary);
}

/* ============================================================
   SEÇÃO DARK
   ============================================================ */
.section-dark {
    background: #1a1a1a;
    color: var(--cm-text-light);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 992px) {
    h1.keyword-foco { font-size: 2.25rem; }
    h2.keyword-foco + .subtitulo-maior,
    h2.sem-keyword + .subtitulo-maior { font-size: 1.75rem; }
    #hero { min-height: 480px; }
}

@media (max-width: 768px) {
    h1.keyword-foco { font-size: 1.8rem; }
    h2.keyword-foco + .subtitulo-maior,
    h2.sem-keyword + .subtitulo-maior { font-size: 1.5rem; }
    #hero { min-height: 400px; }
    #hero .hero-subtitle { font-size: 1rem; }
    .cta-final h2 { font-size: 1.75rem; }
    .cta-final .cta-subtitle { font-size: 1rem; }
}

@media (max-width: 576px) {
    .btn-whatsapp, .btn-phone {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   LINKTREE / CONTATO
   ============================================================ */
.linktree-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 3rem;
}
.linktree-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.4);
    margin-bottom: 0.75rem;
}
.linktree-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.15rem;
}
.linktree-subtitle {
    font-size: 0.85rem;
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.linktree-bio {
    font-size: 0.9rem;
    color: #aaa;
    max-width: 320px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}
.linktree-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    border: 1px solid transparent;
}
.linktree-btn:hover {
    transform: translateY(-2px);
}
.linktree-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.linktree-btn .btn-arrow {
    margin-left: auto;
    opacity: 0.5;
    width: 16px;
    height: 16px;
}

.btn-whats {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whats:hover { background: #1DA851; color: #fff; box-shadow: 0 6px 22px rgba(37,211,102,0.45); }

.btn-phone {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.15);
}
.btn-phone:hover { background: rgba(255,255,255,0.18); color: #fff; }

.btn-address {
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
    border-color: rgba(212,175,55,0.3);
}
.btn-address:hover { background: rgba(212,175,55,0.25); color: #F5C842; }

.btn-email {
    background: rgba(255,255,255,0.08);
    color: #ddd;
    border-color: rgba(255,255,255,0.1);
}
.btn-email:hover { background: rgba(255,255,255,0.14); color: #fff; }

.btn-site {
    background: rgba(255,255,255,0.06);
    color: #ccc;
    border-color: rgba(255,255,255,0.08);
}
.btn-site:hover { background: rgba(255,255,255,0.12); color: #fff; }

.linktree-footer {
    text-align: center;
    margin-top: 1.5rem;
}
.linktree-footer a {
    color: #666;
    font-size: 0.75rem;
    text-decoration: none;
}
.linktree-footer a:hover { color: #D4AF37; }

.google-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 50px;
    padding: 6px 14px;
    margin-bottom: 1.5rem;
}
.google-badge-mini svg { width: 14px; height: 14px; }
.google-badge-mini span { color: #F5C842; font-size: 0.75rem; font-weight: 600; }

@media (max-width: 480px) {
    .linktree-container { padding: 1.5rem 1rem 2rem; }
    .linktree-title { font-size: 1.2rem; }
}

/* Força alinhamento do menu à direita */
#navbarSupportedContent {
    flex-grow: 0 !important;
    margin-left: auto !important;
}
#navbarSupportedContent .navbar-nav {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.35) 100%);
}
