/* ==========================================================
   RESET & VARIABLES
   ========================================================== */
:root {
  --navy-900: #0C1424;
  --navy-800: #101a2e;
  --navy-700: #1a263e;
  --gold: #C9A24A;
  --gold-light: #e6c37e;
  --white: #FFFFFF;
  --gray-text: #c5c9d3;
  --border-gold: rgba(201, 162, 74, 0.3);

  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy-900);
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Classe para esconder elementos visualmente, mas mantê-los para leitores de tela */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
  background-color: rgba(12, 20, 36, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header__inner {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 40px;
  height: 40px;
}

.logo__divider {
  width: 1px;
  height: 30px;
  background-color: var(--border-gold);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.logo__subtitle {
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--gray-text);
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-text);
  position: relative;
  padding: 5px 0;
  transition: color 0.25s ease;
}

.nav-toggle {
  display: none; /* Escondido em telas grandes */
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav__link--active {
  color: var(--gold);
  font-weight: 500;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}

.btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn--gold {
  background-color: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(201, 162, 74, 0.35);
}

/* ==========================================================
   ANIMAÇÕES
   ========================================================== */
.hero, .about, .feature-card, .services, .news, .simulators, .contact {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding-top: 80px; /* Espaço para o header fixo */
  background: linear-gradient(rgba(12, 20, 36, 0.8), rgba(12, 20, 36, 0.8)), url('https://www.puc-rio.br/puc/images/noticias/2021/agosto/contabilidade_consultiva.jpg') no-repeat center center;
  background-size: cover;
}

.hero__frame {
  width: min(1200px, 92%);
  margin-inline: auto;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
}

.hero__subtitle {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.hero__text {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 550px;
}

.hero__brand-card {
  background-color: rgba(16, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.hero__brand-icon {
  width: 60px;
  height: 60px;
}

.hero__brand-divider {
  width: 50px;
  height: 1px;
  background-color: var(--border-gold);
}

.hero__brand-text {
  display: flex;
  flex-direction: column;
}

.hero__brand-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.hero__brand-subtitle {
  font-size: 0.8rem;
  color: var(--gray-text);
}

/* ==========================================================
   SOBRE NÓS
   ========================================================== */
.about {
  padding: 80px 0;
  background-color: var(--navy-800);
}

.about__box {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.about__image-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.about__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.about__text {
  color: var(--gray-text);
  margin-bottom: 16px;
}

.about__crc {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--gold);
  line-height: 1.5;
}

/* ==========================================================
   FEATURE CARDS
   ========================================================== */
.feature-cards {
  width: min(1200px, 92%);
  margin-inline: auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: var(--navy-800);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-card__icon {
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 48px;
  height: 48px;
  margin-inline: auto;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* ==========================================================
   SERVIÇOS
   ========================================================== */
.services {
  padding: 80px 0;
  background-color: var(--navy-800);
}

.services__box {
  width: min(1200px, 92%);
  margin-inline: auto;
  text-align: center;
}

.services__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 48px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  text-align: left;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-item__icon {
  flex-shrink: 0;
  color: var(--gold);
}

.service-item__icon svg {
  width: 24px;
  height: 24px;
}

.service-item__text {
  font-size: 1rem;
  color: var(--gray-text);
}

/* ==========================================================
   CONTATO
   ========================================================== */
.contact {
  padding: 80px 0;
}

.contact__box {
  width: min(800px, 92%);
  margin-inline: auto;
  text-align: center;
}

.contact__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.contact__info {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-text);
  transition: color 0.3s ease;
}

.contact__info-item:hover {
  color: var(--gold-light);
}

.contact__info-item svg {
  width: 24px;
  height: 24px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form-row {
  display: flex;
  gap: 16px;
}

.contact__form-group {
  width: 100%;
}

.contact__input,
.contact__textarea {
  background: var(--navy-700);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  width: 100%;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--gray-text);
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.3);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__submit {
  align-self: center;
  width: 200px;
}

/* ==========================================================
   NOTÍCIAS
   ========================================================== */
.news {
  padding: 80px 0;
}

.news__box {
  width: min(1200px, 92%);
  margin-inline: auto;
  text-align: center;
}

.news__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 48px;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  text-align: left;
}

.news-card {
  background-color: var(--navy-800);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.news-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Faz o conteúdo crescer para preencher o espaço */
}

.news-card__category {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy-900);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  align-self: flex-start;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.news-card__description {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 16px;
  flex-grow: 1; /* Empurra o link para o final */
}

.news-card__link {
  color: var(--gold-light);
  font-weight: 500;
  text-decoration: underline;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: 40px 0;
  background-color: var(--navy-800);
  text-align: center;
  border-top: 1px solid var(--border-gold);
}

.footer__copy {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer__social a {
  color: var(--gray-text);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .header__inner {
    height: 70px;
  }
  
  .nav-toggle {
    display: block; /* Mostra o botão hamburger */
  }

  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 20, 36, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-container.show-menu {
    transform: translateX(0);
  }

  .nav {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .nav__link {
    font-size: 1.2rem;
  }
  
  .nav__link--active::after {
    width: 8px;
    height: 8px;
  }

  .hero__frame {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: calc(100vh - 70px);
  }

  .hero__text {
    margin-inline: auto;
  }

  .hero__brand-card {
    grid-row: 1;
    margin-bottom: 30px;
  }

  .about__box {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .contact__form-row {
    flex-direction: column;
  }

  .news__grid {
    grid-template-columns: 1fr;
  }

  .simulators__title {
    font-size: 2rem;
  }
}

/* ==========================================================
   ARTICLE PAGE
   ========================================================== */
.article-page {
  padding: 120px 0 80px 0; /* Ajuste para o header fixo */
  background-color: var(--navy-900);
}

.article-page__box {
  width: min(900px, 92%);
  margin-inline: auto;
  background-color: var(--navy-800);
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  padding: 40px;
  text-align: left;
}

.article-page__main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 24px;
}

.article-page__category {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy-900);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-page__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1.2;
}

.article-page__meta {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 16px;
}

.article-page__content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-page__content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-top: 24px;
  margin-bottom: 12px;
}

.article-page__content p {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.article-page__content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--gray-text);
}

.article-page__content ul li {
  margin-bottom: 8px;
}

.article-page__back-btn {
  margin-top: 40px;
  display: inline-block;
}

@media (max-width: 768px) {
  .article-page__box {
    padding: 20px;
  }
  .article-page__title {
    font-size: 2rem;
  }
  .article-page__content h2 {
    font-size: 1.5rem;
  }
  .article-page__content h3 {
    font-size: 1.2rem;
  }
}

/* ==========================================================
   SIMULADORES
   ========================================================== */
.simulators {
  padding: 80px 0;
  background-color: var(--navy-700);
}

.simulators__box {
  width: min(700px, 92%);
  margin-inline: auto;
  text-align: center;
  background-color: var(--navy-800);
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  padding: 40px 20px;
}

.simulators__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.simulators__description {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin-bottom: 40px;
  max-width: 500px;
  margin-inline: auto;
}

.simulators__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-gold);
}

.simulators__tab-btn {
  background: none;
  border: none;
  color: var(--gray-text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.simulators__tab-btn.active {
  color: var(--gold-light);
  font-weight: 500;
}

.simulators__tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
}

.simulator__pane {
  display: none;
}

.simulator__pane.active {
  display: block;
}

.simulator__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.simulator__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simulator__form-group {
  width: 100%;
  text-align: left;
}

.simulator__form-group {
  width: 100%;
  max-width: 400px;
  text-align: left;
}

.simulator__label {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
}

.simulator__input,
.simulator__select {
  background: var(--navy-900);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  width: 100%;
}

.simulator__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C9A24A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px; /* Make space for the arrow */
}

.simulator__input::placeholder {
  color: var(--gray-text);
}

.simulator__input:focus,
.simulator__select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.3);
}

.simulator__button {
  margin-top: 20px;
  width: 180px;
}

.simulator__form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--navy-900);
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  cursor: pointer;
}

.simulator__checkbox {
  width: 1.2em;
  height: 1.2em;
  accent-color: var(--gold);
  cursor: pointer;
}

.simulator__checkbox-label {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}

.simulator__helper-text {
  font-size: 0.75rem;
  color: var(--gray-text);
  display: block;
  margin-top: 6px;
}

#folhaPagamentoGroup {
  display: none; /* Começa oculto */
  opacity: 0;
  transition: opacity 0.4s ease;
  max-height: 0;
}

.simulator__result-wrapper {
  background-color: var(--navy-900);
  padding: 20px;
  border-radius: 8px;
  border-top: 3px solid var(--gold);
}

.simulator__result-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-align: center;
}

.simulator__result {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.8;
  width: 100%;
}

.simulator__result p {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid var(--border-gold);
}

.simulator__result p:last-of-type {
  border-bottom: none;
}

.simulator__result .total {
  margin-top: 10px;
  border-top: 2px solid var(--gold);
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.simulator__result .total strong {
  color: var(--gold-light);
}

.simulator__result .desconto {
  color: #ff8a8a;
}

.download-btn {
  display: none; /* Começa oculto */
  margin-top: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .simulator__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
  }

  .simulator__form {
    align-items: initial;
  }

  .simulator__button {
    align-self: flex-start;
  }
}

/* Estilos antigos que precisam ser sobrescritos ou removidos */
#resultadoSalario { /* Não mais necessário */
  text-align: left;
  font-size: 1rem;
}

#resultadoSalario p {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.simulator__result .desconto {
  color: #ff8a8a;
}

.simulator__result .total {
  margin-top: 10px;
  border-top: 1px solid var(--border-gold);
  padding-top: 10px;
  font-size: 1.1rem;
}

.download-btn {
  display: none; /* Começa oculto */
  margin-top: 20px;
  width: 100%;
}

.download-btn {
  display: none; /* Começa oculto */
  margin-top: 20px;
  width: 100%;
}

/* ==========================================================
   CHATBOT
   ========================================================== */
.chat-widget__bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--gold);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 98;
}

.chat-widget__bubble:hover {
  transform: scale(1.1);
}

.chat-widget__bubble svg {
  width: 32px;
  height: 32px;
}

.chat-widget__window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-width: calc(100% - 40px);
  height: 500px;
  max-height: calc(100% - 110px);
  background-color: var(--navy-800);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 99;
  transform: scale(0.5) translateY(100px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.chat-widget__window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-widget__header {
  background-color: var(--navy-900);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-gold);
}

.chat-widget__title {
  font-weight: 500;
  color: var(--gold-light);
}

.chat-widget__close {
  background: none;
  border: none;
  color: var(--gray-text);
  font-size: 24px;
  cursor: pointer;
}

.chat-widget__body {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  padding: 10px 14px;
  border-radius: 18px;
  max-width: 80%;
  line-height: 1.4;
}

.chat-message.bot {
  background-color: var(--navy-700);
  color: var(--gray-text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-message.user {
  background-color: var(--gold);
  color: var(--navy-900);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-widget__footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid var(--border-gold);
}

.chat-widget__input {
  flex-grow: 1;
  border: none;
  background: none;
  color: var(--white);
  padding: 0 10px;
  outline: none;
}

.chat-widget__send {
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  align-self: flex-start;
}

.chat-option-btn {
  background-color: var(--navy-700);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 8px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.chat-option-btn:hover {
  background-color: var(--navy-900);
}

@media (max-width: 480px) {
    .header__inner .btn--gold {
        display: none;
    }

    .logo__divider, .logo__subtitle {
        display: none;
    }

    .logo__title {
        font-size: 1.2rem;
    }
}