:root {
  --azul: #4FBAFF;
  --branco: #ffffff;
  --cinza: #f0f0f0;
  --preto: #333;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: white;
    color: black;
  }
}
body {
  margin: 0;
  body {
  font-family: 'Raleway', sans-serif;
  /* font-family: Arial, sans-serif;*/
  background-color: var(--branco);
  background-color: #FFFFFF;
  color: var(--preto);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header / Navbar */
header {
  background: var(--branco);
  background-color: #FFFFFF;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: var(--azul);
  font-size: 28px;
  margin: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--preto);
  font-weight: bold;
}

/* Botões */
.btn-cta {
  background: var(--azul);
  color: var(--branco);
  padding: 8px 12px;
  border-radius: 5px;
}

.hero {
 font-family: 'Raleway', sans-serif;
  background: url('imagens/01.jpg') center/cover no-repeat;
  color: var(--branco);
  text-align: center;
  padding: 100px 20px;
}

.btn-primary {
  background: var(--azul);
  color: var(--branco);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}


/* Seções */
section {
  padding: 60px 20px;
}

.diferenciais ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
}

.galeria .fotos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.galeria img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: var(--azul);
  color: var(--branco);
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background: var(--cinza);
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .galeria .fotos {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 60px 20px;
  }
}
.reveal-on-scroll {
  opacity: 10;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.depoimentos {
  background-color: var(--cinza);
  padding: 40px 20px;
  text-align: center;
  
}

.depoimentos h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #4FBAFF;
}

.depoimento {
  margin: 20px 0;
  font-style: italic;
}

.depoimento .autor {
  font-weight: bold;
  color: var(--azul);
}


.navbar2 {
  border-bottom: 3px solid #4FBAFF;
}

.slider {
  position: relative;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  text-align: center;
}

.slider img {

  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

.slider img.active {
  display: block;
}

.carousel-inner img {
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Tipografia */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@400;600&display=swap');

body {
  font-family: 'Raleway', sans-serif;
}

.sobre h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--preto);
  margin-bottom: 20px;
}

.sobre p {
  line-height: 1.8;
  color: var(--preto);
  font-size: 18px;
}

/* Layout de duas colunas */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sobre-imagem {
  position: relative;
}

.sobre-imagem img {
  width: 100%;
  border-radius: 8px;
  filter: brightness(0.7);
}

.sobre-titulo-imagem {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .sobre-titulo-imagem {
    font-size: 36px;
    bottom: 10px;
    left: 10px;
  }

  .sobre h3 {
    font-size: 24px;
  }

  .sobre p {
    font-size: 16px;
  }
}


.diferenciais-section {
  padding: 0;
  margin: 0;
  font-family: 'Georgia', serif;
}

.diferenciais-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
}

.diferenciais-texto {
  background-color: #4FBAFF;
  color: white;
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diferenciais-texto h2 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

.diferenciais-texto h2 span {
  display: block;
}

.diferenciais-texto p {
  font-size: 18px;
  font-style: italic;
  margin-top: 20px;
}

.diferenciais-lista {
  flex: 1;
  padding: 60px 40px;
  background-color: white;
  display: flex;
  align-items: center;
}

.diferenciais-lista ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  color: #333;
}

.diferenciais-lista li {
  margin-bottom: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
  .diferenciais-container {
    flex-direction: column;
  }

  .diferenciais-texto, .diferenciais-lista {
    padding: 40px 20px;
  }

  .diferenciais-texto h2 {
    font-size: 36px;
  }

  .diferenciais-lista ul {
    font-size: 18px;
  }
}
.equipe-bloco {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
}

.equipe-texto {
  flex: 1;
  background-color: #ffffff;
  color: #1372B9;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50%;
}

.equipe-texto h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.equipe-texto p {
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
}

.equipe-imagem {
  flex: 1;
  max-width: 50%;
  position: relative;
  overflow: hidden;
}

.equipe-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equipe-titulo-imagem {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #1372B9;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  border-radius: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
  .equipe-bloco {
    flex-direction: column;
  }

  .equipe-texto,
  .equipe-imagem {
    max-width: 100%;
  }

  .equipe-texto {
    padding: 30px 20px;
  }

  .equipe-texto h2 {
    font-size: 36px;
  }

  .equipe-titulo-imagem {
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}
.sobre-bloco {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 400px;
}

.sobre-texto {
  flex: 1;
  padding: 60px 40px;
  background-color: #ffffff;
  color: #1372B9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-texto h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sobre-texto h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #4FBAFF;
}

.sobre-texto p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.sobre-imagem {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.sobre-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre-titulo-imagem {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #1372B9;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  border-radius: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-bloco {
    flex-direction: column;
  }

  .sobre-texto, .sobre-imagem {
    width: 100%;
    max-width: 100%;
  }

  .sobre-texto {
    padding: 30px 20px;
  }

  .sobre-texto h2 {
    font-size: 36px;
  }

  .sobre-titulo-imagem {
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}

.galeria {
  padding: 60px 0;
  background-color: var(--cinza);
}

.galeria h3 {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
 color: #4FBAFF;
}


.galeria h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  flex: 1;
   text-align: center;
  
  color: #1372B9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.galeria .fotos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; /* <-- aqui está o espaçamento entre as imagens */
  justify-content: center;
  padding: 0 20px;
}


.galeria .fotos img {
	flex: 1 1 calc(25% - 16px);
	max-width: calc(25% - 16px);
  height: auto;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria .fotos img:hover {
  transform: scale(1.03);
}

/* Modal */
.modal-img {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.modal-img img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsivo */
@media (max-width: 768px) {
  .galeria .fotos img {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .galeria .fotos img {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.contato h3 {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
 color: #4FBAFF;
}