html {
  scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: #f6f6f6!important;
    color: #333;
    background-image: url("../../assets/images/fundo-geral.png")!important;
	background-repeat: no-repeat!important;
}
h1 {
	font-size: 22px !important;
}
h2 {
	font-size: 22px !important;
    color: #00a500;
}
h3 {
	font-size: 18px !important;
}
header {
	background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 99;
}
/*MINHAS QUESTÕES*/

/*2 CAIXAS*/
.info-medica {
    padding: 80px 0px;
    background-color: #ffffff;
    text-align: center;
    border-top: solid 1px #cdcdcd;
}

.info-medica-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.info-box {
  background-color: #f1f1f1;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  border: 1px solid #ccc;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.info-box2 {
    background-color: #f1f1f1;
    border-radius: 12px;
    padding: 95px 35px 95px 35px;
    max-width: 500px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 19px;
    font-weight: 500;
    text-align: center;
}
.info-box h3 {
  font-size: 20px !important;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.info-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.botao-cadastro {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 7px 7px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 20px;
}

.botao-cadastro:hover {
  background-color: #ff6c00;
  color: #000;
  text-decoration: none;
}

.info-imagem img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.info-medica-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.info-medica-titulo h2 {
  font-size: 28px !important;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.info-medica-titulo .linha {
  flex: 1;
  height: 1px;
  background-color: #333;
  max-width: 100px;
}

@media (max-width: 768px) {
  .info-medica-container {
    flex-direction: column;
  }

  .info-box {
    text-align: center;
    margin: 20px;
  }
  .info-imagem img {
    max-width: 90%;
}
}
/*2 CAIXAAS*/

/*RODAPÉ*/
.rodape {
  background-color: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.rodape-container {
  max-width: 900px;
  margin: 0 auto;
}

.logo-rodape {
  max-width: 280px;
  margin-bottom: 20px;
}

.btn-sobre {
  display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.btn-sobre:hover {
  background-color: #00a500;
  color: #000;
  text-decoration: none; 
}

.rodape p {
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0;
}

.direitos a {
  color: #0066cc;
  text-decoration: none;
}

.direitos a:hover {
  text-decoration: underline;
}
/*RODAPÉ*/


/*TIJOLINHOS*/

.open-section {
    text-align: center;
    padding: 20px 0px;
    font-family: 'Segoe UI', sans-serif;
}

.open-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.open-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.open-btn:hover {
  background-color: #f0f0f0;
}

.icon {
  display: flex;
  align-items: center;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.accordion-toggle {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.accordion-toggle:hover {
  color: #00a500;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0 20px;
    margin-top: 10px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.accordion-content ul {
  margin: 20px 0;
  padding-left: 0;
  list-style-type: none;
}

.accordion-content li {
  margin: 10px 0;
  font-size: 15px;
  text-align: left;
}

/*TIJOLINHOS*/

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.top-bar h1 {
  font-size: 22px;
  font-weight: bold;
}

.search-box {
  position: relative;
  width: 250px;
}

.search-box i {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #999;
}

.search-box input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border-radius: 25px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.question-table {
  width: 100%;
  border-collapse: collapse;
}

.question-table thead {
  border-bottom: 1px solid #ccc;
}

.question-table th {
  text-align: left;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
}

.question-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 14px;
}

.question-table a {
  color: #f15a29;
  text-decoration: none;
}

.question-table a:hover {
  text-decoration: underline;
}

.delete-icon {
  color: #888;
  cursor: pointer;
  text-align: right;
  float: right;
}

/*MINHAS QUESTÕES*/

/* Estilo padrão */
#sticky-title {
  transition: all 0.3s ease-in-out;
  background: white; /* ou a cor do fundo da sua página */
  z-index: 9999;
}

/* Quando fixo no topo */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/*MENU DORPDOWN*/
.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    background: #494949;
    color: #fff;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    margin-left: 3px;
    width: 96%;
    font-weight: 600;
    font-size: 16px;
}

.dropbtn {
    background-color: #fff;
    color: #00a500;
    border: 2px solid #00a500;
    padding: 8px 14px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropbtn:hover {
  background-color: #00a500;
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
  top: 100%;
  left: 0;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  color: #333;
    padding: 10px 17px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
    margin-right: 0px;
    font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #00a500;
  color: #fff
}

.dropdown:hover .dropdown-content {
  display: block;
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px 5px 20px;
}
.container-topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px 5px 20px;
    background: #ffffff;
    max-width: 100% !important;
}
.container-resultado {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background: white;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    border: solid 1px #d3d3d3;
    margin-bottom: 25px;
    margin-top: 15px;
}
.segura {
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}
.thumb {
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out;
    width: 85%;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.fundo-branco {
    background-color: #fff;
    text-align: center;
    padding-top: 50px;
}

.apps {
    text-align: center;
    padding-top: 50px;
}

/* Efeito de Zoom ao passar o mouse */
.thumb:hover {
    transform: scale(1.1);
}

h1 {
    font-size: 26px !important;
    margin-bottom: 20px !important;
    margin-top: 40px !important;
}

.fina {
    font-family: 'Montserrat';
    font-size: 21px !important;
}
.laranja {
    font-size: 16px !important;
    margin-top: 20px;
    background: #00a500;
    color: #fff;
    padding: 4px;
    border-radius: 5px;
    float: left;
    margin-top: 11px !important;
}

.fixo {
    position: fixed;
    top: 525px;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: #e5e5e5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(0%);
    opacity: 100;
}
.logo {

    margin-top: 25px;
    text-align: center;
}

.highlight {
    color: #00a500;
    font-family: 'Montserrat';
}

nav a {
    text-decoration: none;
    color: #333;
    margin-right: 15px;
}

.btn-assinar {
    background: #ffffff;
    color: #00a500;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 5px;
    border: solid 2px;
}
.btn-assinar:hover {
    background: #00a500;
    color: #fff;
}
.btn-login {
    background: #00a500;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}
.search-section {
    text-align: center;
    margin: 25px 0 0px 0;
}

input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px !important;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1)
}

.search-btn {
    padding: 17px 15px 13px 15px;
    background: #fff;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.search-btn:hover {
    background: #00a500;
}
.categories {
    text-align: center;
    padding: 20px;
}

.grid {
    display: flex;
    justify-content: center;
    gap: 40px 0px;
    flex-wrap: wrap;
    max-width: 990px;
    width: 100%;
    margin: auto;
    margin-top: 20px;
}

.card {
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px !important;
}

.download {
    text-align: center;
    padding: 40px;
}

.store-buttons button {
    margin: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.app-store {
    background: black;
    color: white;
}

.google-play {
    background: #00a500;
    color: white;
}

footer {
    border-top: 1px solid #c3c3c3;
    background-color: #f1f1f1;
    text-align: center;
    padding-top: 30px;
}


/* Contêiner do carrossel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

/* Área que desliza */
.carousel-slide {
    display: flex;
    gap: 20px;
    animation: slide 10s linear infinite;
    white-space: nowrap;
}

/* Itens do carrossel */
.carousel-slide img {
    /* Ajuste conforme necessário */
    height: auto;
    background: #fff;
}

.content-list {
	display: flex;
    gap: 2px;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
	margin-bottom: 50px;
}
.titulo-categoria {
    width: 100%;
    background: #656565;
    padding: 4px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    margin-top: 5px;
}
 /* Estilos adicionais para melhorar a exibição */
 .resultado-resposta {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
} 
/* 
.referencias {
	margin-top: 20px;
    font-size: 0.9em;
    font-style: italic;
    border-top: solid 1px #bdbdbd;
}
.referencias ul {
    list-style-type: none;
    padding-left: 0;
}
.referencias li {
    margin-bottom: 10px;
} */
.fechar {
    text-align: center;
    background: #ff6c00;
    float: right;
    margin-bottom: 60px;
    width: 162px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    padding: 5px;
    margin-left: 30px;
    color: #fff;
    cursor: pointer;
}
.fechar:hover {
    background: #000;
}

/*ACORDEON*/
.accordion {
    background-color: #ffffff;
    color: #000000;
    padding: 5px 10px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: background-color 0.3s;
    font-size: 14px;
    border: solid 1px #c7c7c7;
    border-radius: 5px;
    margin-bottom: 5px;
        }
        .accordion:hover {
            background-color: #00a500;
			color: #fff;
        }
        .panel {
            padding: 0 15px;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.3s ease-out;
        }
        .panel ul {
            list-style: none;
            padding: 10px 0;
        }
        .panel ul li {
    padding: 5px 10px;
    background: #fff;
    margin-bottom: 5px;
    border: solid 1px #959595;
    border-radius: 5px;
    width: 100%;
    font-size: 14px;
        }

.panel ul li:hover {
    border: solid 1px #00a500;
        }

/* Animação do slide */
@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}



/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
	.content-list {
    max-width: 90%;
}
	.panel ul li {
    width: 92%;
}
	.container-resultado {
        width: 80%
    }
	
	.img-mobile {
        width: 90%;
        margin-top: -25px;
	}
    .img-mobile-topo{
        width: 75%!important;
        margin-top: 12px;
	}
    nav {
        margin-top: 10px;
    }

    input {
        /* width: 65%; */
    }

    .grid {
        flex-direction: column;
        align-items: center;
    }

    .card {
      width: 100%;
      margin-bottom: 20px;
    }
	.fina {
    font-size: 22px;
}
	.categories {
    margin-top: 0px;
}
	.container {
    /* display: flex
; */
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px 5px 20px;
    background: #f6f6f6;
    /* max-width: 61% !important; */
}
}

/*MENU LATERAL*/
.menu-container {
    position: sticky;
    max-height: 100vh;
    overflow-y: auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 5px;
    margin: 20px;
    margin-top: 8px;
    top: 68px;
	font-size: 14px;
    }
.menu-container a.ativo {
    background: #00a500;
	color: #fff
}
    .menu-container ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .menu-container li {
      margin: 8px 0;
    }

    .menu-container a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    display: block;
    padding: 6px 10px;
    border-radius: 5px;
    margin-bottom: -10px;
    border-bottom: solid 1px #dee2e6;
    margin-top: 10px;
    }

    .menu-container a:hover {
      background: #00a500;
      color: white;
    }

    .content-section {
      padding: 60px 20px;
      border-bottom: 1px solid #ddd;
    }

    @media (max-width: 768px) {
      .menu-container {
        position: static;
        width: 100%;
        margin: 0;
        padding: 10px;
        overflow-x: auto;
      }

      .menu-container ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
      }

      .menu-container li {
        margin: 0 8px;
      }
    }

.payment-radio .form-check-input {
    -webkit-appearance: radio;
    appearance: radio;
}

/* ===== Estilo local sem interferir na lógica ===== */
  body { background:#f8f9fa; }
  .cart-title { color:#00a500; font-size:30px; text-align:center; margin-bottom:30px; }

  .cart-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 325px;
  }
  .cart-item h5 {
    margin: 0;
    font-weight: 600;
    color: #08ad07;
}
  .cart-item p { margin:0; color:#6c757d; }
  .cart-item > div { margin:6px 0; }

  .card { border-radius:10px; }
  .cart-summary { display:flex; gap:20px; margin-bottom:20px; }
  .cart-summary .card { flex:1; }

  .btn-finalizar {
    background: #00a500 !important;
    border-color: #00a500 !important;
    width: 100%;
    padding: 15px !important;
    font-size: 18px !important;
    border-radius: 7px !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: .2s !important;
}
  .btn-finalizar:hover { background:#008c00; border-color:#008c00; }

  @media (max-width: 768px) {
    .cart-summary { flex-direction:column; }
  }

/*NOVO CARRINHO*/
  :root{
    --primary-blue: #303030;
    --accent-green: #17A300;
    --accent-green-2: #0b8b5c;
    --bg: #f5f8fb;
    --card-bg: #ffffff;
    --muted: #6b7280;
    --danger: #e04b4b;
    --shadow: 0 10px 24px rgba(16,24,40,0.06);
    --radius: 14px;
  }

  
  .cart-wrap {
    margin: 36px auto;
    max-width: 1120px;
    padding: 0 16px;
  }

  /* Header / Logo area (opcional - seguindo o anexo) */
  .top-brand {
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom: 18px;
  }
.brand-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(90deg, #00A500, #01C851); /* verde premium degradê */
    border-radius: 12px; /* bordas arredondadas */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}
.brand-badge i {
    font-size: 22px;
    color: #fff;
}

  .brand-title { font-weight:700; font-size:1.5rem; color:var(--primary-blue); }
  .brand-sub { font-size:1.0rem; color:var(--muted); margin-top:2px; }

  /* Grid: left (lista) e right (resumo) */
  .cart-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
  }

  /* Left big card */
  .card-left {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
  }

  .card-left h3 {
    margin: 0 0 18px 0;
    font-size: 1.05rem;
    color: var(--primary-blue);
  }

  /* item list */
  .cart-item {
    display: flex;
    gap: 18px;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 20px #ced4da;
    margin-bottom: 14px;
    border: 1px solid rgba(31, 36, 111, 0.03);
    width: 100%;
    flex-direction: row;
    align-items: center;;
  }

  .item-avatar {
    width:100px;
    height:80px;
    background: #f3f5f7;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#8a8f96;
    font-weight:700;
    font-size:0.95rem;
    flex-shrink:0;
  }

  .item-info {
    flex:1;
    min-width:0;
  }
  .item-info h5 {
    margin: 0;
    color: #00ab0f;
    font-size: 1.20rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .item-info p {
    margin:6px 0 0 0;
    color:var(--muted);
    font-size:0.88rem;
  }

  /* controls: quantity & price & remove */
  .item-controls {
    display:flex;
    align-items:center;
    gap:18px;
  }

  .qty-control {
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    color:#111827;
  }
  .qty-btn {
    width:28px;
    height:28px;
    border-radius:6px;
    border:1px solid rgba(31,36,111,0.06);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    user-select:none;
    background:transparent;
  }
  .qty-number { min-width:18px; text-align:center; }

  .item-price {
    font-weight:800;
    color:var(--primary-blue);
    font-size:1rem;
    min-width:110px;
    text-align:right;
  }

  .item-remove {
    margin-left: 12px;
    color: #ffffff;
    background: #f33838;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    padding: 5px;
    border-radius: 5px;
  }
    .item-remove:hover {
    text-decoration: none;
	background: #ff0000;
	color: #fff;
  }

  /* Right card (summary) */
  .card-right {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
  }
  .summary-title { font-weight:700; font-size:1rem; color:var(--primary-blue); margin-bottom:12px; }

  .summary-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; color:var(--muted); font-size:0.95rem; }
  .summary-row.total { font-size:1.18rem; font-weight:800; color:var(--primary-blue); margin-top:8px; }

  .coupon-wrap { display:flex; gap:12px; margin-top:12px; }
  .coupon-wrap .form-control { border-radius:10px; height:44px; background:#fbfdff; border:1px solid rgba(31,36,111,0.06); }
  .coupon-apply {
    background: var(--accent-green);
    color:#fff;
    border:none;
    height:44px;
    padding:0 14px;
    border-radius:10px;
    font-weight:700;
  }
  .coupon-apply:disabled { opacity:0.6; cursor:not-allowed; }

  .checkout-btn {
    display:block;
    width:100%;
    text-align:center;
    margin-top:16px;
    padding:14px 16px;
    border-radius:12px;
    border:none;
    color:#fff;
    font-weight:800;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-green-2));
    box-shadow: 0 8px 26px rgba(11,139,92,0.14);
  }
   .checkout-btn:hover {
    color: #FFFFFF;
	text-decoration: none;
	background: linear-gradient(346deg, #24ff00, #50af8c);
    box-shadow: -1px -1px 9px 3px rgb(0 113 71 / 39%);
  }

  .small-note { margin-top:12px; color:#8a8f96; font-size:0.86rem; }

  /* responsive */
  @media (max-width: 992px) {
    .cart-grid { grid-template-columns: 1fr; }
    .card-right { order: 2; margin-top: 10px; }
  }
  
  @media (max-width: 768px) {
    .top-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-direction: column;
    }
	.cart-item {
    display: flex;
    gap: 18px;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 20px #ced4da;
    margin-bottom: 14px;
    border: 1px solid rgba(31, 36, 111, 0.03);
    width: 100%;
    flex-direction: column;
    align-items: center;
    }
  }
  /*NOVO CARRINHO*/

  /*NOVO CARRINHO CHECKOUT*/
  .checkout-wrap{margin:36px auto;max-width:900px;padding:0 16px;}

.checkout-top{display:flex;align-items:center;gap:16px;margin-bottom:28px;}
.checkout-badge{width:48px;height:48px;background:linear-gradient(90deg,#00A500,#01C851);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;font-weight:700;box-shadow:0 6px 18px rgba(0,0,0,.15);}
.checkout-title{font-weight:700;font-size:1.5rem;color:var(--primary-blue);}
.checkout-sub{font-size:1rem;color:var(--muted);margin-top:2px;}

.checkout-grid{display:grid;grid-template-columns:1fr 360px;gap:28px;align-items:start;}

.pay-card,.summary-card{
background:var(--card-bg);border-radius:var(--radius);padding:26px;box-shadow:var(--shadow);
}

.pay-title,.summary-title{font-weight:700;font-size:1.05rem;color:var(--primary-blue);margin-bottom:16px;}

.payment-radio{
display:flex;align-items:center;gap:12px;
padding:12px 0;font-size:1rem;font-weight:600;color:#111;
cursor:pointer;
}

.payment-radio input {margin-right:6px;}

.payment-icon {
font-size:18px;
color:var(--accent-green);
}

/* Botão PAGAR */
.pay-btn{
width:100%;margin-top:16px;padding:14px 16px;border-radius:12px;font-weight:800;
border:none;color:#fff;background:linear-gradient(90deg,var(--accent-green),var(--accent-green-2));
box-shadow:0 8px 26px rgba(11,139,92,.14);transition:.3s;text-align:center;
}

.pay-btn:hover{
transform:translateY(-2px);
background:linear-gradient(346deg,#24ff00,#50af8c);
box-shadow:0px 8px 20px rgba(0,140,90,0.25);
cursor:pointer;
color:#fff;
}

/* Resume card */
.list-item-box{background:#f5f5f5;border-radius:10px;padding:10px;margin-bottom:10px;}

.summary-row{display:flex;justify-content:space-between;margin-bottom:10px;color:var(--muted);font-size:.95rem;}
.summary-row.total{font-size:1.18rem;font-weight:800;color:var(--primary-blue);margin-top:8px;}

@media(max-width:992px){
.checkout-grid{grid-template-columns:1fr;}
.summary-card{order:2;margin-top:10px;}
}
  /*NOVO CARRINHO CHECKOUT*/