/* --- ESTILOS PARA O MODAL DA SEMANA DO CLIENTE (IMAGEM ALINHADA À BASE) --- */

#semana-cliente-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99998;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

#semana-cliente-modal-content {
  background-color: #662D91;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 840px; 
  z-index: 99999;
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* --- Cabeçalho --- */
.semana-cliente-header {
  padding: 12px 24px;
  display: flex;
  align-items: center;
}

.semana-cliente-header-inner-box {
  background-color: #572481; 
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  border-radius: 999px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  position: relative;
}

.semana-cliente-header-icon {
  position: absolute; 
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.semana-cliente-header-icon svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  stroke-width: 2;
}

.semana-cliente-header-title {
  width: 100%;
  text-align: center;
}

.semana-cliente-close-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 20px;
  opacity: 0.7;
}
.semana-cliente-close-btn:hover {
    opacity: 1;
}

/* --- Corpo --- */
.semana-cliente-body-container {
  display: flex;
  background-color: #ffffff;
  max-height: 460px;
}

.semana-cliente-left-column {
  flex: 1;
  padding: 32px 0px 32px 24px;
  display: flex;
  flex-direction: column;
}

.semana-cliente-text-content h1 {
  font-size: 26px;
  font-weight: bold;
  color: #000000;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.semana-cliente-text-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 16px;
}

.semana-cliente-bold-spaced {
  margin-top: 24px;
  font-size: 15px;
}

.semana-cliente-cta-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px; 
}

.semana-cliente-qr-code-container img {
  width: 100px;
  height: 100px;
  display: block;
}

#semana-cliente-cta-btn {
  background-color: #662D91;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  text-shadow: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
#semana-cliente-cta-btn:hover {
  background-color: #572481;
}

/* A MUDANÇA ESTÁ AQUI */
.semana-cliente-image-content {
  flex-basis: 40%;
  align-self: flex-end; /* Alinha a coluna da imagem na base */
  padding: 32px; /* Simplificado para garantir espaçamento consistente nas laterais e topo */
  padding-bottom: 0; /* Remove o padding da base para "colar" a imagem */
  box-sizing: border-box;
}

.semana-cliente-image-content img {
  width: 85%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block; /* Garante que a imagem não tenha espaços extras abaixo dela */
  margin: 0 auto; /* Centraliza a imagem horizontalmente se a largura for menor que a coluna */
}
