/* Estilos Base */
:root {
  /* Azul escuro corporativo */
  --primary-color: #1e3a8a;
  /* Cinza claro */
  --secondary-color: #f3f4f6;
  /* Cinza escuro */
  --text-color: #333;
  /* Amarelo claro */
  --emphasis-for-blue-bkgrnd-color: #fad042;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--primary-color);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 4rem 0;
}

/* Hero Section */
header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 6rem 20px;
}

.header-image-logo {
  position: absolute;
  left: 20px;
  top: 20px;
}

header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.special-contast-with-blue {
  color: var(--emphasis-for-blue-bkgrnd-color);
}

/* Grid Geral para seções de texto */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Seção 1 e 2 */
.section-light {
  background-color: white;
  text-align: center;
}

.section-gray {
  background-color: var(--secondary-color);
  text-align: center;
}

.card {
  justify-content: center;
  padding: 2rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


.card img {
  margin-bottom: 4px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
}

/* Seção 3: Testimonials (Swipeable) */
.testimonials-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* Cria o efeito de "travar" igual ao stories */
  gap: 20px;
  padding-bottom: 20px;
  /* Esconde a barra de rolagem mas mantém a função */
  scrollbar-width: none;
}

.testimonials-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 80%;
  /* Ocupa 80% da tela no mobile para mostrar que tem mais ao lado */
  scroll-snap-align: center;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .testimonial-card {
    min-width: 300px;
  }
}

/* Seção 4: Formulário de Contato */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: inherit;
}

.btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #172a6b;
}

/* Footer Layout Update */
footer {
    background: #111;
    color: white;
    padding: 2rem 0;
}

.footer-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Pushes text to left, icons to right */
    align-items: center;
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 20px;
}

.footer-container p {
    margin: 0;
}

/* Social Media Icons Styling */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Makes black icons appear white */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-links img:hover {
    opacity: 0.7;
    transform: translateY(-3px); /* Subtle lift effect */
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }
}

.img-attributtions {
  font-size: 0.8rem;
  width: 500px;
  text-align: left;
  
  li {
    list-style-type: none;
  }
}


/* Estilo das Bolinhas Indicadoras */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #cbd5e1;
  /* Cinza claro */
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot.active {
  background-color: var(--primary-color);
  /* Cor azul do seu site */
  transform: scale(1.6);
  /* Fica maior */
}
