/*    commentS — LISTA */
.comments-section {
  margin: 96px auto 0;
  max-width: 100%;
  text-align: center;
}

.comments-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.approved-comments-title {
  font-size: 20px;              
  font-weight: 600;             
  color: var(--blue-dark);      
  margin-bottom: 20px;          
  text-align: center;           
  transition: 0.2s ease;        
}

.approved-comments-title:hover {
  transform: translateY(-1px);  
  opacity: 0.8;                 
}

.leave-comment-divider {
  margin: 48px auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
}

.comments-list {
  max-width: 100%; 
  margin: 0 auto;
  text-align: left;
}

.no-comments-yet {
  font-size: 12px !important;
  text-align: center !important;
  color: #d1d5db !important; /* cinza claro */
  display: block;
  width: 100%;
}


.comment-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(2, 60, 117, 0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.comment-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #023c75;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-body {
  flex: 1;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.comment-name {
  font-size: 13px;
  font-weight: 600;
  color: #023c75;
}

.comment-date {
  font-size: 11px;
  color: #9ca3af;
}

.comment-text {
  font-size: 40.5px;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

.comments-note {
  font-size: 12px !important;
  width: 100%;
  text-align: center !important;
  display: block !important;
  margin: 4px 0 18px;
  color: #c5c5c5 !important;
}


/* FORM */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
}

/* commentS — INPUTS (CAIXA FANTASMA EDITORIAL) */
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 14px;

    /* borda azul suave */
    border: 1px solid rgba(2, 60, 117, 0.25);



 
    box-shadow: 0 6px 10px rgba(0,0,0,0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


/* commentS — HOVER FLUTUANTE (SÓ ISSO) */

.comment-form input,
.comment-form textarea {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-form input:hover,
.comment-form textarea:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(2, 32, 56, 0.14);
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 60, 117, 0.35);
}



/* BOTÃO — versão moderna */
.comment-form button {
  align-self: center;
  margin-top: 6px;

  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;

  border: none;
  border-radius: 20px;

  background: #023c75; /* azul sólido moderno */
  color: #ffffff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;

  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.comment-form button:hover {
  background: #034880; /* tom mais profundo */
  transform: translateY(-1.04px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  
}
.comment-form button:active {
  background: #034a92; /* azul mais claro que o hover */
  transform: translateY(0);
  filter: brightness(1.25);
box-shadow: 0 3px 10px rgba(2, 60, 117, 0.28);
}


/* comment SUCCESS */
.comment-success {
    display: none;
    text-align: center !important;

    padding: 18px 22px;
    margin-top: 24px;

    background: linear-gradient(135deg, #f9fafc 0%, #eef2f7 100%);
    border-radius: 18px;

    border: 1px solid rgba(180, 190, 205, 0.7);
    box-shadow: 0 14px 35px rgba(10, 25, 55, 0.18);

    opacity: 0;
    transition: opacity 0.4s ease;
    max-width: 350px;
margin: 24px auto 0;
    
}

.comment-success.show {
    display: block;
    opacity: 1;
}

/* avião maior */
.comment-success img {
    width: 52px;
    display: block;
    margin: 0 auto 14px auto;
    opacity: 0.95;
}

/* linha principal — destaque */
.m_sc_v1d {
    margin: 0;
    text-align: center !important;
    font-size: 15px;
    font-weight: 700;
    color: #023c75 !important;
    letter-spacing: 0.01em;
}

/* linha secundária — cinza clarinho */
.s_sc_v2b {
    margin: 6px 0 0 0;
    text-align: center !important;
    font-size: 13px;
    font-weight: 500;
    color: #8f97a3 !important; /* cinza editorial suave */
}


/*  SOFT DIVIDER — commentS */

.soft-divider {
  margin: 80px 0 48px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.06),
    transparent
  );
}

/* commentS */
/*  commentS — FIELD WRAPPER */
.comments-section .field-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.sc_cn_z9r .field-wrapper {
    position: relative;
    margin-bottom: 12px;
}



/* commentS — INPUT WIDTH */
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 14px;
    border: 1px solid rgba(2, 60, 117, 0.25);
    background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 100%) !important;
    box-shadow: 0 6px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.comment-form textarea {
    height: 110px; 
    resize: vertical; 
}


/*  commentS — ERROR STATE  */
.comment-error {
    background: #f7f2d6cc !important;
    background-image: none !important;
    border-color: #e08b00 !important;
    box-shadow: 0 0 0 1px rgba(224, 139, 0, 0.35) !important;
}


/* commentS — TOOLTIP */

.comments-section .error308tool {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3px;

    background: #fff7c2;
    color: #d97706;
    font-size: 6px;
    padding: 3px 4px;
    border-radius: 6px;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.comments-section .error308tool.show {
    opacity: 1;
}


/* commentS — LISTA */
.comments-section {
  margin: 96px auto 0;
  max-width: 100%;
  text-align: center;
}

.comments-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.comments-list {
  margin-bottom: 0;
  text-align: left;
  max-width: 100%; 
  margin-left: auto;
  margin-right: auto;
}

.comment-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(2, 60, 117, 0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.comment-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #023c75;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.comment-name {
  font-size: 13px;
  font-weight: 600;
  color: #023c75;
}

.comment-date {
  font-size: 11px;
  color: #9ca3af;
}

.comment-text {
  font-size: 13.5px;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

.leave-comment-divider {
  margin: 40px auto;
  height: 1px;
  max-width: 100%;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.06), transparent);
}

.leave-comment-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

/* formulário centralizado como antes */
.comment-form {
  max-width: 380px;
  margin: 0 auto;
}

/* GET IN TOUCH — FINAL */
.sc_cn_z9r {
  margin: 90px auto 140px;
  max-width: 380px;
  text-align: center;
}

.tt_cn_v5t {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.tx_cn_k2u {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 32px;
}

.cont-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sc_cn_z9r .field-wrapper {
  position: relative;
  margin-bottom: 12px;
}

.cont-text .name-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.cont-text .name-row > div {
  flex: 1;
  position: relative;
}

.cont-text .name-row input {
  width: 100%;
}

.cont-text input,
.cont-text textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 14px;
  border: 1px solid rgba(2, 60, 117, 0.25);
  background: linear-gradient(135deg, #f8fbff 0%, #eef3f9 100%);
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(10, 25, 55, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cont-text textarea {
  height: 110px;
  resize: vertical;
}

.cont-text input:hover,
.cont-text textarea:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(2, 32, 56, 0.14);
}

.cont-text input:focus,
.cont-text textarea:focus {
  outline: none;
  border-color: rgba(2, 60, 117, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 60, 117, 0.35);
}

.cont-text button {
  align-self: center;
  margin-top: 8px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  background: #023c75;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cont-text button:hover {
  background: #034880;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.cont-text button:active {
  background: #034a92;
  transform: translateY(0);
  filter: brightness(1.25);
  box-shadow: 0 3px 10px rgba(2, 60, 117, 0.28);
}

.error-text {
  background: #f7f2d6cc !important;
  background-image: none !important;
  border-color: #e08b00 !important;
  box-shadow: 0 0 0 1px rgba(224, 139, 0, 0.35) !important;
}

.sc_cn_z9r .error308tool {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  background: #fff7c2;
  color: #d97706;
  font-size: 5px;
  padding: 2px 3px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10;
}

.sc_cn_z9r .error308tool.show {
  opacity: 1;
}

@media (min-width: 800px) {
  .tx_cn_k2u {
    white-space: nowrap;
  }
}