/* === HEADER E NAVEGAÇÃO ============ */

.header {
  background-color: var(--dark);
  color: var(--light);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(34, 34, 34, 0.95);
  backdrop-filter: blur(5px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo img {
  height: 5rem;
  width: auto;
  transition: transform 0.3s ease;
}

.header .logo img:hover {
  transform: scale(1.05);
}

.header .logo .logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

/* Navigation Menu */
.header .nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header .nav a {
  position: relative;
  color: var(--light);
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 0;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.header .nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.header .nav a:hover {
  color: var(--secondary);
}

.header .nav a:hover::after {
  width: 100%;
}

/* Toggle Button */
.header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header .menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--light);
  transition: var(--transition);
  border-radius: 2px;
}

.header .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* === MEDIA QUERY ESPECÍFICA (MOBILE) === */
@media (max-width: 768px) {
  .header .menu-toggle {
    display: flex;
  }

  .header .nav {
    position: fixed;
    top: 8.8rem;
    transform: translateX(100%);
    right: 0;
    width: 70%;
    max-width: 300px;
    background: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(5px);
    padding: 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: auto;
    overflow-y: auto;
  }

  .header .nav.active {
    transform: translateX(0);
  }

  .header .nav ul {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .header .nav a {
    font-size: 1.8rem;
  }
}

/* === HERO (BANNER PRINCIPAL) ============ */

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  background-image: url("/images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  z-index: 1;
}

.hero .container {
  padding: 6rem 2rem;
}

/* 1. CONTÊINER PRINCIPAL (COLUNA) */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 4rem;
  z-index: 2;
  text-align: left;
  color: var(--light);
  max-width: 900px;
  margin: 0 auto;
}

/* 2. CONTEÚDO PRINCIPAL (IMAGEM + TEXTO: ALINHAMENTO HORIZONTAL) */
.hero-main-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Wrapper de Texto */
.hero-text-and-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text-and-cta h1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

/* Botão CTA */
.btn-hero {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--light);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 204, 0, 0.3);
  border-radius: 8px;
  transition: var(--transition);
}

.btn-hero:hover {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  border-color: var(--secondary);
}

/* Badge com Logo e Efeito */
.hero-badge {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 10%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  animation: glow 3s ease-in-out infinite alternate;
  border: 2px solid rgba(255, 204, 0, 0.3);
  flex-shrink: 0;
}

.hero-badge img {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(255, 204, 0, 0.4));
}

/* Animação Glow */
@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4),
      inset 0 0 20px rgba(255, 204, 0, 0.2);
  }
  to {
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.7),
      inset 0 0 30px rgba(255, 204, 0, 0.4);
  }
}

/* === MEDIA QUERY ESPECÍFICA DO HERO (MOBILE) === */
@media (max-width: 768px) {
  .hero {
    min-height: 55vh;
  }

  .hero-content {
    align-items: center;
  }

  .hero-main-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-main-content > * {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text-and-cta {
    align-items: center;
    margin-top: 2rem;
  }

  .hero-text-and-cta h1 {
    font-size: 2.6rem;
  }

  .hero-badge {
    width: 110px;
    height: 110px;
    margin-bottom: 0;
  }

  .hero-badge img {
    width: 70px;
  }

  .hero-cta-wrapper {
    margin-top: 1.5rem;
  }

  .btn-hero {
    font-size: 1.6rem;
  }
}

/* === SERVICES === */

.services {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #f8f9fb 0%, #ffffff 100%);
}

.services .section-title,
.services .section-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Layout de Grid para os Cards */
.services-grid {
  list-style: none;
  padding: 0;
  display: flex;
  flex-flow: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-grid {
    gap: 2rem;
  }
}

/* Card de Serviço (Detalhes/Acordeão) */
.service-card {
  background: var(--light);
  border: 1px solid var(--gray-medium);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

@media (max-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

/* Efeito de Hover */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 86, 179, 0.12);
}

/* Estilo Aberto */
.service-card[open] {
  box-shadow: 0 8px 24px rgba(0, 86, 179, 0.15);
  border-color: var(--primary);
}

.service-card[open] summary::after {
  content: "−";
  background: var(--primary);
  color: var(--light);
  transform: translateY(-50%) rotate(180deg);
}

/* Título do Serviço (Summary) */
.service-card summary {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  user-select: none;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .service-card summary {
    font-size: 1.6rem;
  }
}

.service-card summary::-webkit-details-marker {
  display: none;
}

/* Ícone de Expansão */
.service-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--secondary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Conteúdo (Escondido) */
.service-card .service-content {
  margin-top: 2rem;
  color: var(--text-medium);
  font-size: 1.5rem;
  line-height: 1.8;
  animation: slideDown 0.3s ease;
}

.service-card .service-content p {
  margin-bottom: 1.5rem;
}

.service-card .service-content strong {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .services {
    padding: 5rem 0;
  }
}

/* ================================================ */
/* ================= DIFFERENTIALS =============== */
/* ================================================ */

.differentials {
  padding: 8rem 0;
  background: var(--dark);
  color: var(--light);
}

@media (max-width: 768px) {
  .differentials {
    padding: 5rem 0;
  }
}

.differentials .section-title {
  color: var(--secondary);
}

.differentials .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.differentials-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.differential-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--light);
  border-bottom: 3px solid var(--light);
  border-left: none;
  border-right: none;
}

@media (max-width: 768px) {
  .differential-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
  }
}

.differential-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 204, 0, 0.2);
  border-top-color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.differential-card .differential-icon {
  width: 100%;
  max-width: 180px;
  height: auto;
  background: none;
  border-radius: 1.2rem;
  display: block;
  margin: 0 auto;
  box-shadow: none;
}

@media (max-width: 768px) {
  .differential-card .differential-icon {
    max-width: 135px;
    margin: 0;
    flex-shrink: 0;
  }
}

.differential-card .differential-icon img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.differential-card .differential-content {
  flex-grow: 1;
  text-align: left;
}

.differential-card .differential-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .differential-card .differential-content h3 {
    font-size: 1.8rem;
  }
}

.differential-card .differential-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* ================================================ */
/* =================== CLIENTS =================== */
/* ================================================ */

.clients {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fb 100%);
  text-align: center;
}

@media (max-width: 768px) {
  .clients {
    padding: 5rem 0;
  }
}

.clients-grid {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3rem;
}

@media (max-width: 768px) {
  .clients-grid {
    gap: 2.5rem 3rem;
    padding-top: 2rem;
  }
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
  min-width: 120px;
  min-height: 50px;
}

.client-card img {
  height: 3.5rem;
  width: auto;
  max-width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-card img.imageplus {
  height: 6rem;
}

@media (max-width: 768px) {
  .client-card img {
    height: 2.5rem;
  }

  .client-card img.imageplus {
    height: 4.28rem;
  }
}

.client-card:hover {
  transform: scale(1.1);
}

.client-card:hover img {
  filter: grayscale(0);
}

/* ================================================ */
/* =================== ABOUT ===================== */
/* ================================================ */

.about {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
  background-image: url("/images/rio_de_janeiro.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--light);
  overflow: hidden;
}

@media (max-width: 768px) {
  .about {
    padding: 5rem 0;
    background-attachment: scroll;
  }
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 7, 7, 0.55) 0%,
    rgba(7, 7, 7, 0.92) 100%
  );
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

/* ======================================== */
/* ESTILOS DA COLUNA ESQUERDA (TEXTO) */
/* ======================================== */
.about-text-content {
  flex: 2;
  text-align: left;
  max-width: 65%;
}

@media (max-width: 992px) {
  .about-text-content {
    flex: none;
    max-width: 100%;
    text-align: center;
  }
}

.about .section-title {
  color: var(--secondary);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  text-align: left;
}

@media (max-width: 992px) {
  .about .section-title {
    text-align: center;
  }
}

.about-description {
  margin: 2rem 0;
}

@media (max-width: 992px) {
  .about-description {
    margin-bottom: 3rem;
    text-align: center;
  }
}

.about-description p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .about-description p {
    font-size: 1.6rem;
  }
}

/* ======================================== */
/* ESTILOS DA COLUNA DIREITA (CARDS DE INFO) */
/* ======================================== */
.about-info-cards {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 380px;
  max-width: 420px;
}

@media (max-width: 992px) {
  .about-info-cards {
    flex: none;
    width: 100%;
    justify-content: center;
    min-width: unset;
    max-width: 450px;
  }
}

.value-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 204, 0, 0.3);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  transition: var(--transition);
  width: 100%;
  text-align: left;
}

@media (max-width: 768px) {
  .value-card {
    padding: 2.5rem 2rem;
  }
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 204, 0, 0.25);
  border-color: var(--secondary);
}

.value-card h3 {
  font-size: 1.92rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ======================================== */
/* PADRONIZAÇÃO: ONDE ESTAMOS & FALE CONOSCO */
/* ======================================== */
.value-card .info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.value-card .info-item {
  margin-bottom: 1.5rem;
}

.value-card .info-item .info-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  line-height: 1.7;
  min-width: 0;
}

.value-card .info-item .info-link:hover {
  color: var(--secondary);
}

.value-card .info-item .info-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}

.value-card .info-item .info-icon svg {
  fill: none;
  stroke: currentColor;
  width: 100%;
  height: 100%;
}

.value-card .info-item .info-text {
  margin: 0;
  font-size: 1.33rem;
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.value-card .info-item .info-text strong {
  display: block;
  margin-bottom: 0.2rem;
}

/* ======================================== */
/* CONECTE-SE (APENAS ÍCONES) */
/* ======================================== */
.value-card .social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.value-card .social-link {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.value-card .social-link svg {
  fill: currentColor;
  stroke: none;
  width: 100%;
  height: 100%;
}

.value-card .social-link:hover {
  color: var(--secondary);
}

/* ================================================ */
/* ==================== BUDGET REQUEST FORM ===== */
/* ================================================ */
.budget-request-form {
  padding: 8rem 0;
  background-color: var(--gray-light, #f8f9fb);
  text-align: center;
}

@media (max-width: 768px) {
  .budget-request-form {
    padding: 5rem 0;
  }
}

.budget-request-form #budgetForm {
  max-width: 700px;
  margin: 3rem auto;
  padding: 3rem;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .budget-request-form #budgetForm {
    padding: 2rem;
    margin: 2rem auto;
  }
}

/* Estilos de Grupos, Labels e Inputs */
.budget-request-form .form-group {
  margin-bottom: 2rem;
  text-align: left;
}

.budget-request-form .form-group label {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.budget-request-form .form-group input:not([type="radio"]),
.budget-request-form .form-group select,
.budget-request-form .form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--gray-medium);
  border-radius: 6px;
  font-size: 1.6rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--dark);
  background-color: var(--light);
}

.budget-request-form .form-group input:not([type="radio"]):focus,
.budget-request-form .form-group select:focus,
.budget-request-form .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
  outline: none;
}

.budget-request-form .form-group input[type="file"] {
  padding: 1rem 1.2rem;
  cursor: pointer;
  background: none;
  line-height: 1.5;
}

.budget-request-form .form-group .form-text {
  display: block;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  color: var(--gray-medium);
}

/* Fieldset e Legendas (para as etapas) */
.budget-request-form .form-step {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.budget-request-form .form-step.active-step {
  display: block;
  opacity: 1;
}

.budget-request-form .form-step legend {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-medium);
  text-align: left;
}

@media (max-width: 768px) {
  .budget-request-form .form-step legend {
    font-size: 2.2rem;
  }
}

/* Estilo para o Container de Botões com Flexbox */
.budget-request-form .form-step .button-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

/* Em etapas com apenas o botão 'Próximo', empurra-o para a direita */
.budget-request-form .form-step .button-controls button:only-child {
  margin-left: auto;
}

/* Responsividade: Empilha botões em telas pequenas */
@media (max-width: 500px) {
  .budget-request-form .form-step .button-controls {
    flex-direction: column;
    gap: 1.5rem;
  }

  .budget-request-form .form-step .button-controls button {
    width: 100%;
    margin-left: 0 !important;
  }

  .budget-request-form .form-step .button-controls button:only-child {
    margin-left: 0;
  }
}

/* Estilos dos Botões (Propriedades comuns) */
.budget-request-form .next-step-btn,
.budget-request-form .prev-step-btn,
.budget-request-form .submit-btn {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

/* Botões Específicos */
.budget-request-form .next-step-btn {
  background-color: var(--primary);
  color: var(--light);
}

.budget-request-form .next-step-btn:hover {
  background-color: #004599;
}

.budget-request-form .prev-step-btn {
  background-color: var(--gray-medium);
  color: var(--dark);
}

.budget-request-form .prev-step-btn:hover {
  background-color: #c9cdd2;
}

.budget-request-form .submit-btn {
  background-color: var(--secondary);
  color: var(--dark);
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.budget-request-form .submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.budget-request-form .submit-btn:hover:not(:disabled) {
  background-color: #ffd633;
}

/* Para garantir o destaque da mensagem */
.form-messages {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px; /* Cantos arredondados */
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra para elevar o bloco */
  transition: all 0.3s ease; /* Transição suave */
  opacity: 0; /* Começa invisível, será exibido pelo JS */
}

/* Fundo suave e texto verde para sucesso */
.form-messages.success {
  color: #0b5003; /* Texto verde forte */
  background-color: #d4edda; /* Fundo verde CLARO (Suave) */
  border: 1px solid #c3e6cb;
  opacity: 1; /* Aparece ao ser ativado */
}

/* Estilo para erros */
.form-messages.danger {
  color: #721c24; /* Texto vermelho escuro */
  background-color: #f8d7da; /* Fundo vermelho CLARO (Suave) */
  border: 1px solid #f5c6cb;
  opacity: 1;
}

/* Estilo para o ícone (opcional) */
.form-messages .message-icon {
  margin-right: 10px;
  font-size: 1.2em;
}

/* ================================================ */
/* ==================== FOOTER =================== */
/* ================================================ */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0;
  position: relative;
  border-top: 3px solid var(--primary);
}

.footer .footer-content {
  text-align: center;
}

.footer .footer-content p {
  font-size: 1.4rem;
  letter-spacing: 0.3px;
}
