.cot-hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #063d5c 100%);
  overflow: hidden;
  padding: 72px 0 60px;
}

.cot-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cot-hero-content {
  position: relative;
  z-index: 1;
}

.cot-hero-content .slide-tag,
.cot-hero-content .slide-title,
.cot-hero-content .slide-desc {
  opacity: 1;
  transform: none;
  transition: none;
}

.cot-hero-content .slide-title {
  margin-top: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb svg {
  opacity: 0.4;
}
.breadcrumb span {
  color: var(--gold);
  font-weight: 600;
}

.cot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cot-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.cot-chip svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============= LAYOUT ============= */
.cot-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.cot-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ============= FORMULÁRIO ============= */
.cot-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 48px;
}

.cot-form-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.cot-form-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.cot-form-sub abbr {
  text-decoration: none;
  color: #c0392b;
}

.cot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cot-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.cot-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.cot-label span {
  color: #c0392b;
  margin-left: 2px;
}

.cot-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  outline: none;
}

.cot-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.cot-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 124, 165, 0.12);
}

.cot-input.cot-input--error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.cot-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7f8e' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cot-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.cot-field-err {
  font-size: 0.75rem;
  color: #c0392b;
  font-weight: 600;
  min-height: 16px;
}

/* Checkbox LGPD */
.cot-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 6px;
}

.cot-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cot-checkbox-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--white);
  transition:
    background var(--t),
    border-color var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cot-checkbox input:checked ~ .cot-checkbox-box {
  background: var(--blue);
  border-color: var(--blue);
}

.cot-checkbox input:checked ~ .cot-checkbox-box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.cot-checkbox input:focus-visible ~ .cot-checkbox-box {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.cot-checkbox-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.cot-text-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit */
.cot-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
}

.cot-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 124, 165, 0.3);
}

.cot-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cot-submit-arrow {
  transition: transform var(--t);
}
.cot-submit:hover .cot-submit-arrow {
  transform: translateX(4px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.cot-spinner {
  animation: spin 0.8s linear infinite;
}

/* Erro global */
.cot-error-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fdf3f2;
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-left: 3px solid #c0392b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #c0392b;
  margin-bottom: 24px;
}

.cot-error-msg[hidden] {
  display: none;
}

/* Sucesso */
.cot-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cot-success[hidden] {
  display: none;
}

.cot-success-icon {
  width: 72px;
  height: 72px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
}

.cot-success-title {
  font-size: 1.3rem;
  font-weight: 800;
}

.cot-success-desc {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
}

/* ============= SIDEBAR ============= */
.cot-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.cot-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.cot-side-card--dark {
  background: var(--blue-deep);
  border-color: transparent;
}

.cot-side-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.cot-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition:
    transform var(--t),
    box-shadow var(--t),
    opacity var(--t);
}

.cot-contact-btn:hover {
  transform: translateY(-1px);
}
.cot-contact-btn:last-child {
  margin-bottom: 0;
}

.cot-contact-btn--wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.cot-contact-btn--wa:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.cot-contact-btn--tel {
  background: var(--blue-light);
  color: var(--blue);
}

.cot-contact-btn--email {
  background: var(--off-white);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  word-break: break-all;
}

/* Horários */
.cot-horarios {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cot-horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.cot-horario-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cot-horario-dia {
  color: var(--muted);
}
.cot-horario-hora {
  font-weight: 700;
  color: var(--text);
}
.cot-horario-fechado {
  color: var(--muted);
  font-weight: 400;
}

/* Benefícios */
.cot-beneficios {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cot-beneficios li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.cot-beneficios li svg {
  flex-shrink: 0;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .cot-layout {
    grid-template-columns: 1fr 280px;
  }
  .cot-form-wrap {
    padding: 32px 28px;
  }
}

@media (max-width: 860px) {
  .cot-layout {
    grid-template-columns: 1fr;
  }
  .cot-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .cot-row {
    grid-template-columns: 1fr;
  }
  .cot-form-wrap {
    padding: 24px 18px;
  }
}
