
        body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background-color: #f4f7f5;
            color: #333;
        }

        /* ================= HEADER ================= */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #bfe8d6;
            padding: 12px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        header:hover {
            background-color: #b3e2cf;
        }

        .logo-area img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo-area img:hover {
            transform: scale(1.1);
        }

/* Ícone do utilizador — isolado */
header .user-area .user-icon {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0.85;
    transition: 0.25s ease;
}


        header .user-area .user-icon:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.12);
}


        /* MINI MENU */
  .user-area {
    position: relative;
}

.cart-icon {
    width: 25px;
    height: 25px;
}
/* ===== MENU DO UTILIZADOR ===== */
.user-menu {
    position: absolute;
    top: 55px;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: none;
    min-width: 210px;
    z-index: 5000;
    overflow: hidden;
    border: 1px solid #eef2ef;
}

.user-menu-header {
    padding: 14px 16px 10px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eef2ef;
}

.user-menu-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: 0.15s;
    font-weight: 500;
}

.user-menu-link:hover {
    background: #f0f8f4;
    color: #0f6b4a;
}

.user-menu-logout {
    color: #e05252;
    border-top: 1px solid #eef2ef;
    margin-top: 4px;
}

.user-menu-logout:hover {
    background: #fff5f5;
    color: #c0392b;
}


        /* ================= MENU ================= */
        .menu-principal {
            display: flex;
            gap: 20px;
        }

        .menu-principal a {
            text-decoration: none;
            color: #1f3d2b;
            font-weight: 600;
            position: relative;
            padding: 5px 0;
        }

        .menu-principal a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: #0f6b4a;
            transition: width 0.3s ease;
        }

        .menu-principal a:hover::after {
            width: 100%;
        }

        /* ================= SLIDER ================= */
        .slider {
            position: relative;
            width: 100%;
            height: 550px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
        }

        .slider-texto {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            text-align: center;
            z-index: 2;
        }

        .slider-texto h1 {
            margin: 0;
            font-size: 42px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .slider-texto p {
            font-size: 20px;
            margin-top: 10px;
            font-style: italic;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 30px;
            color: white;
            background: rgba(0,0,0,0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: 0.3s;
        }

        .arrow:hover { background: rgba(0,0,0,0.8); }
        .arrow.left { left: 20px; }
        .arrow.right { right: 20px; }

        /* ================= SECÇÕES DE CONTEÚDO ================= */
        .container {
            max-width: 1100px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .titulo-seccao {
            text-align: center;
            color: #1f3d2b;
            font-size: 32px;
            margin-bottom: 50px;
            position: relative;
        }

        .titulo-seccao::after {
            content: "";
            width: 60px;
            height: 3px;
            background: #0f6b4a;
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* GRID ATIVIDADES */
        .grid-atividades {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .card:hover { transform: translateY(-10px); }

        .card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .card-body {
            padding: 25px;
            text-align: center;
        }

        .card-body h3 {
            color: #1f3d2b;
            margin-bottom: 15px;
        }

        .card-body p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* SOBRE NÓS */
        .sobre-container {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-top: 100px;
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }

        .sobre-texto { flex: 1; }
        .sobre-texto h2 { color: #1f3d2b; font-size: 28px; }

        .sobre-imagem {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 15px 15px 0px #bfe8d6;
        }

        .sobre-imagem img {
            width: 100%;
            display: block;
            transition: 0.5s;
        }

        /* ================= FOOTER ================= */
footer {
    background-color: #1a2e21;
    color: #fff;
    padding: 60px 20px 20px;
    text-align: center;
    margin-top: 100px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h4 {
    color: #bfe8d6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-col-localizacao {
    display: flex;
    flex-direction: row;
    gap: 75px;
    align-items: flex-start;
}

.footer-col-localizacao-texto {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-mapa-lateral {
    flex: 1;
    min-width: 0;
    height: 190px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    align-self: center;
}

.footer-mapa-lateral iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}
/* ================= ICONES DO FOOTER (IMAGENS) ================= */

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #fff;
    font-size: 15px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* deixa o ícone branco */
}

.footer-maps-link {
    display: inline-block;
    margin-top: 10px;
    color: #bfe8d6;
    font-weight: bold;
    text-decoration: none;
}

.footer-maps-link:hover {
    text-decoration: underline;
}

       /* ================= MODAL LOGIN/REGISTO ================= */
/* ================= MODAL LOGIN/REGISTO ================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #fff;
    padding: 36px 36px 28px;
    border-radius: 20px;
    width: 90%;
    max-width: 430px;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: modalEntrar 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
    position: relative;
}

.modal-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0f6b4a, #2f8f6a);
    border-radius: 20px 20px 0 0;
}

@keyframes modalEntrar {
    from { opacity: 0; transform: scale(0.94) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-content h2 {
    margin-top: 0;
    color: #1f3d2b;
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.modal-fechar-btn {
    position: absolute;
    top: 14px; right: 16px;
    background: #f4f7f5;
    border: none;
    border-radius: 50%;
    width: 30px; height: 30px;
    font-size: 13px;
    cursor: pointer;
    color: #666;
    transition: 0.2s;
    display: flex; align-items: center; justify-content: center;
}

.modal-fechar-btn:hover { background: #dde8e2; color: #1f3d2b; }

/* TABS */
.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 999px;
    background: #e8f3ed;
    padding: 4px;
}

.auth-tabs .tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 9px 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #1f3d2b;
    transition: 0.2s;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.auth-tabs .tab.active {
    background: #0f6b4a;
    color: #fff;
}

.auth-form { display: none; }
.auth-form.active { display: block; }

/* STEPS */
.reg-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 0;
}

.reg-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sdot {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #e8f3ed;
    color: #aaa;
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #ddd;
    transition: 0.3s;
}

.reg-step-item.active .sdot {
    background: #0f6b4a;
    color: #fff;
    border-color: #0f6b4a;
}

.reg-step-item.done .sdot {
    background: #bfe8d6;
    color: #0f6b4a;
    border-color: #0f6b4a;
}

.reg-step-item span {
    font-size: 11px;
    color: #aaa;
    font-weight: 600;
}

.reg-step-item.active span { color: #0f6b4a; }

.sline {
    flex: 1;
    height: 2px;
    background: #ddd;
    min-width: 60px;
    margin: 0 6px;
    margin-bottom: 18px;
    transition: 0.3s;
}

.sline.done { background: #0f6b4a; }

/* PASSOS */
.reg-passo { display: none; }
.reg-passo.active {
    display: block;
    animation: passoEntrar 0.25s ease;
}

@keyframes passoEntrar {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* CAMPOS */
.campo-grupo {
    margin-bottom: 12px;
}

.campo-grupo label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.campo-grupo input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #dde8e2;
    border-radius: 9px;
    font-size: 14px;
    font-family: 'Segoe UI', Arial, sans-serif;
    outline: none;
    transition: 0.2s;
    background: #fafcfb;
    box-sizing: border-box;
    color: #333;
}

.campo-grupo input:focus {
    border-color: #0f6b4a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15,107,74,0.08);
}

.campo-grupo input::placeholder { color: #bbb; }

/* PASSWORD */
.campo-pw {
    position: relative;
    display: flex;
    align-items: center;
}

.campo-pw input { padding-right: 42px; }

.btn-ver-pw {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: 0.2s;
    line-height: 1;
}

.btn-ver-pw:hover { color: #0f6b4a; }
.btn-ver-pw.ativo { color: #0f6b4a; }

/* BOTÕES */
.btn-auth {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 9px;
    border: none;
    background: #0f6b4a;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.btn-auth:hover { background: #0c5a3e; }

.btn-auth-outline {
    padding: 12px 20px;
    margin-top: 8px;
    border-radius: 9px;
    border: 1.5px solid #dde8e2;
    background: #fff;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.btn-auth-outline:hover { background: #f4f7f5; }

.link-trocar {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 14px;
    margin-bottom: 0;
}

.link-trocar span {
    color: #0f6b4a;
    font-weight: 600;
    cursor: pointer;
}

.link-trocar span:hover { text-decoration: underline; }

.auth-links {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #0f6b4a;
}

.auth-links span { cursor: pointer; transition: 0.2s ease; }
.auth-links span:hover { color: #0c5a3e; }
.auth-links .divider { color: #999; cursor: default; }
/* AVISO INLINE MODAL */
#aviso-modal {
    display: none;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    animation: slideIn 0.3s ease;
}
/* ===== ÍCONES ANTES DOS TÍTULOS DO FOOTER ===== */

.footer-title-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
}

        /* NOTIFICAÇÕES */
        .notificacao {
            position: fixed;
            top: 90px;
            right: 20px;
            background: #d4f8d4;
            color: #0f6b4a;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            font-weight: 600;
            display: none;
            z-index: 5000;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
/* ================= FORMULÁRIOS (CAIXA, INPUTS, BOTÕES) ================= */

.formulario-estiloso {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.formulario-estiloso label {
    font-weight: bold;
    margin-top: 15px;
}

.formulario-estiloso input,
.formulario-estiloso select,
.formulario-estiloso textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

.btn-enviar {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.btn-enviar:hover {
    background: #115a2a;
}

.subtitulo {
    margin-top: 25px;
    font-size: 20px;
    color: #555;
}

.descricao-form {
    margin-bottom: 20px;
    color: #555;
}

/* ================= PASSO A PASSO (3 PONTOS + LINHAS) ================= */

.progress-steps {
    text-align: center;
    margin-bottom: 20px;
}

.dot-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

.dot.active {
    background: #4CAF50;
}

.line {
    width: 40px;
    height: 3px;
    background: #ccc;
}

.line.active {
    background: #4CAF50;
}

.progress-label {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

/* ================= PÁGINA DE SUCESSO ================= */

.success-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.success-card {
    background: #ffffff;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 0.6s ease-out;
}

.success-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: bold;
}

.success-card h1 {
    font-size: 28px;
    color: #1f3d2b;
    margin-bottom: 15px;
}

.success-text {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.btn-download,
.btn-back {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    border: none;
    display: inline-block;
}

.btn-download {
    background: #1f3d2b;
    color: #fff;
}

.btn-download:hover {
    background: #2e5a3f;
}

.btn-back {
    background: #ccc;
    color: #333;
}

.btn-back:hover {
    background: #b5b5b5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

        @media (max-width: 768px) {
            .sobre-container { flex-direction: column; }
            .menu-principal { display: none; }
        }
        .header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.cart-icon-area {
    display: flex;
    align-items: center;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #0f6b4a;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  /* ================= sucesso a forms ================= */
    .toast-acesso-negado {
    position: fixed;
    top: 80px; /* mais abaixo para não tapar o ícone */
    right: 20px;
    background: rgba(255, 77, 77, 0.95);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    animation: slideIn 0.4s ease-out, fadeOut 0.5s ease-in 2.5s forwards;
}

/* ================= LOJA / BRINDES - VERSÃO MELHORADA ================= */
.loja-hero {
    background: linear-gradient(135deg, #1a2e21 0%, #0f6b4a 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.loja-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/img/slide2.jpg') center/cover no-repeat;
    opacity: 0.1;
}
.loja-hero-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}
.loja-hero-badge {
    display: inline-block;
    background: rgba(191,232,214,0.2);
    border: 1px solid rgba(191,232,214,0.4);
    color: #bfe8d6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.loja-hero h1 {
    font-size: 46px;
    color: #fff;
    font-weight: 900;
    margin: 0 0 16px;
}
.loja-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0;
}

.loja-container {
    max-width: 1200px;
    margin: 50px auto 100px;
    padding: 0 20px;
}



.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

/* CARD */
.produto-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.13);
}

/* IMAGEM */
.produto-img-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f4f7f5;
}

.produto-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produto-card:hover .produto-img-wrap img {
    transform: scale(1.06);
}

/* OVERLAY "Ver produto" */
.produto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 107, 74, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produto-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #fff;
    padding: 10px 22px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.produto-card:hover .produto-overlay {
    opacity: 1;
}

/* BOTÃO FRENTE/COSTAS NO CARD */
.btn-toggle-card {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.92);
    color: #0f6b4a;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    white-space: nowrap;
    transition: 0.2s;
}

.btn-toggle-card:hover {
    background: #0f6b4a;
    color: #fff;
}

/* INFO DO PRODUTO */
.produto-info {
    padding: 18px 20px 22px;
}

.produto-info h3 {
    margin: 0 0 6px;
    color: #1f3d2b;
    font-size: 17px;
    font-weight: 700;
}

.produto-info .preco {
    font-size: 19px;
    font-weight: 800;
    color: #0f6b4a;
    margin: 0 0 14px;
}

.btn-carrinho {
    width: 100%;
    padding: 11px;
    background: #1f3d2b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-carrinho:hover {
    background: #0f6b4a;
}

/* ================= MODAL PRODUTO ================= */

.modal-produto {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 20px;
    animation: fadeInModal 0.25s ease;
}

.modal-produto.aberto {
    display: flex;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-produto-content {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUpModal 0.3s ease;
}

@keyframes slideUpModal {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.modal-fechar {
    position: absolute;
    top: 16px;
    right: 18px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.modal-fechar:hover {
    background: #ddd;
}

.modal-produto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-imagem-area {
    background: #f4f7f5;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-imagem-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 550px;
}

.modal-detalhes {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-detalhes h2 {
    font-size: 26px;
    color: #1f3d2b;
    margin: 0 0 10px;
    font-weight: 800;
}

.modal-preco {
    font-size: 28px;
    font-weight: 900;
    color: #0f6b4a;
    margin: 0 0 20px;
}

.modal-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* TAMANHOS */
.tamanhos-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 25px;
}

.tam {
    width: 48px;
    height: 48px;
    border: 2px solid #ccc;
    background: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    color: #333;
}

.tam:hover {
    border-color: #0f6b4a;
    color: #0f6b4a;
}

.tam.selecionado {
    background: #0f6b4a;
    border-color: #0f6b4a;
    color: #fff;
}

.btn-modal-carrinho {
    width: 100%;
    padding: 15px;
    background: #0f6b4a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.3px;
}

.btn-modal-carrinho:hover {
    background: #1f3d2b;
    transform: scale(1.02);
}

/* RESPONSIVO */
@media (max-width: 700px) {
    .modal-produto-grid {
        grid-template-columns: 1fr;
    }
    .modal-imagem-area {
        border-radius: 20px 20px 0 0;
        max-height: 280px;
    }
    .modal-detalhes {
        padding: 25px 20px;
    }
}
.modal-setas {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.modal-setas button {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.modal-setas button:hover {
    background: #0f6b4a;
    color: #fff;
}
/*carrinho*/
/* ================= CARRINHO ================= */

.carrinho-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.carrinho-vazio {
    text-align: center;
    padding: 80px 20px;
    color: #777;
    font-size: 18px;
}

.btn-voltar-loja {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #0f6b4a;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.carrinho-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.carrinho-itens {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carrinho-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.carrinho-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.carrinho-item-info {
    flex: 1;
}

.carrinho-item-info h3 {
    margin: 0 0 8px;
    color: #1f3d2b;
    font-size: 18px;
}

.carrinho-preco {
    color: #0f6b4a;
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 10px;
}

.carrinho-quantidade {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.btn-qty {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    transition: 0.2s;
}

.btn-qty:hover {
    background: #0f6b4a;
    color: #fff;
}

.carrinho-subtotal {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.btn-remover {
    font-size: 22px;
    text-decoration: none;
    opacity: 0.6;
    transition: 0.2s;
}

.btn-remover:hover {
    opacity: 1;
}

/* RESUMO */
.carrinho-resumo {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    position: sticky;
    top: 100px;
}

.carrinho-resumo h2 {
    color: #1f3d2b;
    margin: 0 0 20px;
    font-size: 22px;
}

.resumo-linha {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 14px;
    background: #0f6b4a;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
    transition: 0.2s;
}

.btn-checkout:hover {
    background: #1f3d2b;
}

.btn-continuar {
    display: block;
    text-align: center;
    color: #0f6b4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn-continuar:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .carrinho-grid {
        grid-template-columns: 1fr;
    }
}

/* Entrada suave */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Desaparecer aos 3 segundos */
@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; transform: translateX(40px); }
}

/* ================= FORMULÁRIOS - PÁGINA ================= */

.forms-hero {
    background: linear-gradient(135deg, #1f3d2b 0%, #0f6b4a 100%);
    padding: 80px 20px;
    text-align: center;
}

.forms-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.forms-titulo {
    font-size: 48px;
    color: #fff;
    font-weight: 900;
    margin: 0 0 20px;
}

.forms-subtitulo {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}

.forms-container {
    max-width: 1000px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.form-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.form-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.form-card:hover .form-card-img img {
    transform: scale(1.08);
}

.form-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0f6b4a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.form-card-body h3 {
    font-size: 22px;
    color: #1f3d2b;
    font-weight: 800;
    margin: 0 0 12px;
}

.form-card-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin: 0 0 25px;
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1f3d2b;
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s ease, gap 0.2s ease;
}

.form-btn:hover {
    background: #0f6b4a;
    gap: 15px;
}

@media (max-width: 768px) {
    .forms-titulo { font-size: 32px; }
    .forms-grid { grid-template-columns: 1fr; }
}
/* checkout */
/* ================= CHECKOUT ================= */

.checkout-container {
    max-width: 1200px;
    margin: 40px auto 100px;
    padding: 0 20px;
}

.checkout-header {
    margin-bottom: 40px;
}

.checkout-voltar {
    color: #0f6b4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.checkout-voltar:hover { text-decoration: underline; }

.checkout-header h1 {
    color: #1f3d2b;
    font-size: 32px;
    margin: 15px 0 25px;
}

/* STEPS */
.checkout-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 10px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}

.step.active { opacity: 1; }

.step-num {
    width: 32px;
    height: 32px;
    background: #0f6b4a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-label {
    font-weight: 600;
    color: #1f3d2b;
    font-size: 14px;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #0f6b4a;
    margin: 0 15px;
    max-width: 60px;
    opacity: 0.3;
}

/* GRID */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* SECÇÕES */
.checkout-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.checkout-section h2 {
    color: #1f3d2b;
    font-size: 20px;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* DADOS SÓCIO */
.dados-socio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dado-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #f8faf9;
    padding: 12px 16px;
    border-radius: 10px;
}

.dado-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
}

.dado-valor {
    font-size: 15px;
    color: #1f3d2b;
    font-weight: 600;
}

/* MÉTODOS PAGAMENTO */
.metodo-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 12px;
}

.metodo-card input { display: none; }

.metodo-card.selected {
    border-color: #0f6b4a;
    background: #f0faf5;
}

.metodo-icon { font-size: 28px; }

.metodo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.metodo-info strong { color: #1f3d2b; font-size: 16px; }
.metodo-info span { color: #888; font-size: 13px; }

.metodo-check {
    width: 24px;
    height: 24px;
    background: #0f6b4a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* MB INFO BOX */
.mb-info-box {
    background: #f0faf5;
    border: 1px solid #bfe8d6;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
}

.mb-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #1f3d2b;
}

.mb-info-box p {
    font-size: 14px;
    color: #555;
    margin: 0 0 15px;
    line-height: 1.6;
}

.mb-exemplo {
    display: flex;
    gap: 15px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
}

.mb-campo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.mb-campo span {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.mb-campo strong {
    font-size: 18px;
    color: #1f3d2b;
    letter-spacing: 1px;
}

.mb-nota {
    font-size: 13px !important;
    color: #0f6b4a !important;
    font-weight: 600;
    margin: 0 !important;
}

/* BOTÃO CONFIRMAR */
.btn-confirmar {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #0f6b4a, #1f3d2b);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(15,107,74,0.3);
}

.btn-confirmar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(15,107,74,0.4);
}

/* RESUMO DIREITA */
.checkout-resumo {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.checkout-resumo h2 {
    color: #1f3d2b;
    font-size: 18px;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.resumo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.resumo-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.resumo-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.resumo-item-info strong { color: #1f3d2b; font-size: 14px; }
.resumo-tamanho, .resumo-qty { font-size: 12px; color: #999; }

.resumo-preco {
    font-weight: 700;
    color: #0f6b4a;
    font-size: 15px;
}

.resumo-total-linha {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.gratis { color: #0f6b4a; font-weight: 600; }

.resumo-total-final {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: #1f3d2b;
    padding-top: 15px;
    border-top: 2px solid #eee;
    margin-top: 5px;
}

.checkout-garantias {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.garantia {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================= SUCESSO ENCOMENDA ================= */

.sucesso-container {
    max-width: 800px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

.sucesso-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.sucesso-icon {
    font-size: 70px;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.sucesso-card h1 {
    font-size: 32px;
    color: #1f3d2b;
    margin: 0 0 15px;
}

.sucesso-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* REFERÊNCIA MB */
.mb-referencia-box {
    background: #f0faf5;
    border: 2px solid #bfe8d6;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.mb-referencia-box h2 {
    color: #1f3d2b;
    font-size: 20px;
    margin: 0 0 20px;
    text-align: center;
}

.mb-dados {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mb-dado {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mb-dado span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.mb-dado strong {
    font-size: 22px;
    color: #1f3d2b;
    letter-spacing: 2px;
    font-weight: 900;
}

.mb-dado.destaque strong { color: #0f6b4a; font-size: 26px; }

.btn-copiar {
    background: #f0f0f0;
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.btn-copiar:hover { background: #e0e0e0; }

.mb-aviso {
    background: #fff3cd;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #856404;
    text-align: center;
}

/* INSTRUÇÕES */
.instrucoes-box {
    background: #f8faf9;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.instrucoes-box h3 {
    color: #1f3d2b;
    margin: 0 0 20px;
}

.instrucoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.instrucao {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.instrucao-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #0f6b4a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.instrucao p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* BOTÕES SUCESSO */
.sucesso-botoes {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-continuar-compras {
    padding: 14px 25px;
    background: #f0f0f0;
    color: #333;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-continuar-compras:hover { background: #e0e0e0; }

.btn-imprimir {
    padding: 14px 25px;
    background: #1f3d2b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-imprimir:hover { background: #0f6b4a; }

@media (max-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .dados-socio { grid-template-columns: 1fr; }
    .mb-dados { flex-direction: column; }
    .instrucoes-grid { grid-template-columns: 1fr; }
    .sucesso-botoes { flex-direction: column; }
}
/* ================= ÁREA DE CONTA DO SÓCIO ================= */

.conta-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 100px;
    padding: 0 20px;
    align-items: start;
}

/* SIDEBAR */
.conta-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 24px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #e8ede9;
    position: sticky;
    top: 110px;
}

.conta-avatar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 20px;
    border-bottom: 1px solid #eef2ef;
    margin-bottom: 16px;
}

.conta-avatar-circulo {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #0f6b4a;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.conta-avatar-nome {
    font-size: 14px;
    font-weight: 700;
    color: #1f3d2b;
    line-height: 1.2;
}

.conta-avatar-sub {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.conta-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.conta-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.15s;
}

.conta-nav-link:hover {
    background: #f0f8f4;
    color: #1f3d2b;
}

.conta-nav-link.active {
    background: #e8f5ee;
    color: #0f6b4a;
    font-weight: 700;
}

.conta-nav-link svg { flex-shrink: 0; opacity: 0.7; }
.conta-nav-link.active svg { opacity: 1; }

.conta-logout {
    display: block;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #e05252;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.15s;
    border-top: 1px solid #eef2ef;
    padding-top: 16px;
    margin-top: 14px;
}

.conta-logout:hover { background: #fff5f5; }

/* CONTEUDO */
.conta-conteudo { min-width: 0; }

.conta-secao-titulo {
    font-size: 22px;
    font-weight: 700;
    color: #1f3d2b;
    margin-bottom: 20px;
}

.conta-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #e8ede9;
}

.conta-alerta-ok {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 10px;
    padding: 12px 16px;
    color: #065f46;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 18px;
}

/* PERFIL */
.perfil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.perfil-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #f8faf9;
    padding: 12px 14px;
    border-radius: 10px;
}

.perfil-label {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.perfil-valor {
    font-size: 15px;
    color: #1f3d2b;
    font-weight: 600;
}

/* EDITAR */
.editar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.editar-grid .campo-grupo input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #dde8e2;
    border-radius: 9px;
    font-size: 14px;
    font-family: 'Segoe UI', Arial, sans-serif;
    outline: none;
    transition: 0.2s;
    background: #fafcfb;
    box-sizing: border-box;
    color: #333;
}

.editar-grid .campo-grupo input:focus {
    border-color: #0f6b4a;
    box-shadow: 0 0 0 3px rgba(15,107,74,0.08);
}

/* BOTÃO VERDE */
.conta-btn-verde {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    background: #0f6b4a;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.conta-btn-verde:hover { background: #1f3d2b; }

/* ENCOMENDAS */
.enc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.enc-num { font-size: 15px; font-weight: 700; color: #1f3d2b; }
.enc-data { font-size: 12px; color: #999; margin-top: 2px; }
.enc-total { font-size: 16px; font-weight: 700; color: #0f6b4a; }

.enc-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.enc-pendente { background: #fef3c7; color: #92400e; }
.enc-pago     { background: #d1fae5; color: #065f46; }
.enc-entregue { background: #dbeafe; color: #1e40af; }
.enc-cancelado{ background: #fee2e2; color: #991b1b; }

.enc-itens {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.enc-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.enc-item img {
    width: 50px; height: 50px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f4f1;
}

.enc-item-nome { font-size: 14px; font-weight: 600; color: #1f3d2b; }
.enc-item-sub  { font-size: 12px; color: #999; margin-top: 2px; }

/* VAZIO */
.conta-vazio {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ede9;
}

.conta-vazio p { margin: 16px 0 20px; font-size: 15px; }

@media (max-width: 768px) {
    .conta-wrapper { grid-template-columns: 1fr; }
    .perfil-grid, .editar-grid { grid-template-columns: 1fr; }
    .conta-sidebar { position: static; }
}
/* ================= CARDS CLICÁVEIS ================= */
.card-clicavel {
    cursor: pointer;
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.card-clicavel:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,107,74,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #fff;
    padding: 9px 22px;
    border-radius: 30px;
}

.card-clicavel:hover .card-overlay {
    opacity: 1;
}

/* ================= MODAL DETALHE ================= */
.modal-detalhe-fundo {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.modal-detalhe-fundo.aberto {
    display: flex;
    animation: fadeInModal 0.25s ease;
}

.modal-detalhe-content {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 860px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    animation: slideUpModal 0.3s ease;
}

.modal-detalhe-fechar {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.modal-detalhe-fechar:hover { background: #ddd; }

.modal-detalhe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.modal-detalhe-img {
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.modal-detalhe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-detalhe-texto {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-detalhe-texto h2 {
    font-size: 26px;
    color: #1f3d2b;
    font-weight: 800;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 16px;
}

.modal-detalhe-texto h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0f6b4a;
}

.modal-detalhe-texto p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
}

.modal-detalhe-texto p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
    .modal-detalhe-grid { grid-template-columns: 1fr; }
    .modal-detalhe-img { border-radius: 20px 20px 0 0; max-height: 240px; }
    .modal-detalhe-texto { padding: 24px 20px; }
}
/* ================= GESTÃO CINEGÉTICA ================= */

.gestao-hero {
    background: linear-gradient(135deg, #1a2e21 0%, #0f6b4a 100%);
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gestao-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/img/slide1.jpg') center/cover no-repeat;
    opacity: 0.12;
}

.gestao-hero-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.gestao-hero-badge {
    display: inline-block;
    background: rgba(191,232,214,0.2);
    border: 1px solid rgba(191,232,214,0.4);
    color: #bfe8d6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.gestao-hero h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 900;
    margin: 0 0 18px;
}

.gestao-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0;
}

/* CONTAINER */
.gestao-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px 100px;
}

/* SECÇÃO INTRO */
.gestao-secao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.gestao-secao-texto h2 {
    font-size: 30px;
    color: #1f3d2b;
    font-weight: 800;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 16px;
}

.gestao-secao-texto h2::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: #0f6b4a;
}

.gestao-secao-texto p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
}

.gestao-info-pills {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.gestao-pill {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: #f0f8f4;
    border: 1px solid #bfe8d6;
    border-radius: 10px;
    padding: 10px 16px;
}

.gestao-pill-label {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gestao-pill-valor {
    font-size: 15px;
    font-weight: 700;
    color: #0f6b4a;
}

/* PLACEHOLDER DE IMAGEM */
.gestao-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: #e8f0eb;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #bfe8d6;
    color: #999;
    gap: 6px;
}

.gestao-img-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

.gestao-img-placeholder small {
    font-size: 12px;
    color: #bbb;
}

.gestao-secao-img {
    height: 320px;
}

/* DIVISOR */
.gestao-divisor {
    height: 1px;
    background: #e8ede9;
    margin: 50px 0;
}

/* TÍTULOS CENTRADOS */
.gestao-titulo-centro {
    text-align: center;
    font-size: 30px;
    color: #1f3d2b;
    font-weight: 800;
    margin: 0 0 12px;
}

.gestao-subtitulo-centro {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin: 0 0 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ATIVIDADES */
.gestao-atividades {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.gestao-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gestao-card-invertido {
    direction: rtl;
}

.gestao-card-invertido > * {
    direction: ltr;
}

.gestao-card-img {
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
}

.gestao-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.gestao-card-corpo {
    padding: 8px 0;
}

.gestao-card-num {
    font-size: 13px;
    font-weight: 800;
    color: #0f6b4a;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.gestao-card-corpo h3 {
    font-size: 22px;
    color: #1f3d2b;
    font-weight: 800;
    margin: 0 0 16px;
}

.gestao-card-corpo p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
}

.gestao-card-corpo p:last-child { margin-bottom: 0; }

/* DOCUMENTOS */
.gestao-docs { margin-top: 20px; }

.gestao-docs-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.gestao-doc-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e8ede9;
    border-radius: 12px;
    padding: 18px 22px;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.gestao-doc-card:hover {
    border-color: #0f6b4a;
    box-shadow: 0 4px 16px rgba(15,107,74,0.1);
    transform: translateY(-2px);
}

.gestao-doc-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.gestao-doc-info { flex: 1; }

.gestao-doc-titulo {
    font-size: 15px;
    font-weight: 700;
    color: #1f3d2b;
}

.gestao-doc-sub {
    font-size: 13px;
    color: #999;
    margin-top: 3px;
}

.gestao-doc-btn {
    font-size: 13px;
    font-weight: 700;
    color: #0f6b4a;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .gestao-hero h1 { font-size: 32px; }
    .gestao-secao { grid-template-columns: 1fr; }
    .gestao-card { grid-template-columns: 1fr; }
    .gestao-card-invertido { direction: ltr; }
}
/* ===== BOTÃO AGENDAR FOOTER ===== */
.footer-agendar-btn {
    margin-top: 12px;
    padding: 9px 18px;
    background: #0f6b4a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: inline-block;
}

.footer-agendar-btn:hover { background: #1f3d2b; }

/* ================= GALERIA ================= */
.galeria-hero {
    background: linear-gradient(135deg, #1a2e21 0%, #0f6b4a 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.galeria-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/img/slide2.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.galeria-hero-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.galeria-hero-badge {
    display: inline-block;
    background: rgba(191,232,214,0.2);
    border: 1px solid rgba(191,232,214,0.4);
    color: #bfe8d6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.galeria-hero h1 {
    font-size: 46px;
    color: #fff;
    font-weight: 900;
    margin: 0 0 16px;
}

.galeria-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0;
}

.galeria-container {
    max-width: 1200px;
    margin: 50px auto 100px;
    padding: 0 20px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.galeria-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.galeria-item:hover img {
    transform: scale(1.06);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,107,74,0.5);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.galeria-vazia {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 16px;
}

.aviso {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.5;
}
.aviso-warning {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    color: #856404;
}
.aviso-erro {
    background: #fdecea;
    border-left: 4px solid #dc3545;
    color: #721c24;
}
.clube-secao-divider {
    height: 1px;
    background: #e4ede8;
    margin: 80px 0 0;
}

.direcao-destaque {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 40px auto 0;
}

.direcao-card-principal {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 30px 20px 24px;
    text-align: center;
    border: 1px solid #e8f0eb;
}

.direcao-foto-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid #bfe8d6;
    background: #f0f8f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direcao-foto-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.direcao-foto-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.direcao-badge-cargo {
    font-size: 11px;
    font-weight: 700;
    color: #0f6b4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.direcao-nome-principal {
    font-size: 15px;
    font-weight: 700;
    color: #1f3d2b;
}

@media (max-width: 768px) {
    .direcao-destaque {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}