/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
  padding-top: 80px;
}

/* Cabeçalho */
header.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0057a3;
  color: white;
  padding: 10px 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.logo {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffdd57;
}

.telefone {
  background: #ffffff;
  color: #0057a3 !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.telefone:hover {
  background: #ffdd57;
  color: #000 !important;
}

/* Botão menu mobile */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-list.active {
    display: block;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #0057a3;
    padding: 15px;
    border-radius: 6px;
  }
  .nav-list.active li {
    margin: 10px 0;
  }
}

/* HERO */
.hero {
  background: #f0f6fc url("images/iiiaaa.jpg") center/cover no-repeat;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  align-items: center;
}

.hero-texto h1 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 15px;
}

.hero-texto h1 span,
.hero-texto p span {
  color: #0057a3;
  font-weight: bold;
}

.hero-texto p {
  font-size: 1.5rem;
  color: #333;
}

/* Form Hero */
.hero-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-form h2 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #000;
}

.hero-form h2 span {
  color: #0057a3;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-cotar {
  background: #0057a3;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.btn-cotar:hover {
  background: #003d73;
}

.form-feedback {
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Responsivo Hero */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-texto {
    text-align: center;
  }
}

/* SERVIÇOS */
.servicos {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.servicos h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0057a3;
}

.servico-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.servico {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.servico img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.servico h3 {
  margin-bottom: 10px;
  color: #0057a3;
}

.btn-saiba {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #0057a3;
  color: white;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-saiba:hover {
  background: #003d73;
}

/* SOBRE */
.sobre {
  padding: 60px 20px;
  background: #fff;
}

.sobre-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.sobre-texto {
  flex: 1 1 500px;
}

.sobre-texto h2 {
  font-size: 2rem;
  color: #0057a3;
  margin-bottom: 15px;
}

.sobre-imagem {
  flex: 1 1 400px;
  text-align: center;
}

.sobre-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* DEPOIMENTOS */
#depoimentos {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

#depoimentos h2 {
  color: #0057a3;
  margin-bottom: 40px;
}

.depoimento-carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.depoimento {
  flex: 0 0 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-style: italic;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.depoimento p {
  margin-bottom: 15px;
}

.depoimento .estrelas {
  color: #ffb400;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.depoimento h4 {
  margin-top: auto;
  color: #0057a3;
  font-weight: bold;
}

.prev, .next {
  margin-top: 20px;
  padding: 10px 15px;
  font-size: 1.5rem;
  border: none;
  background: #0057a3;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.prev:hover, .next:hover {
  background: #003d73;
}

/* CONTATO */
.contato {
  padding: 60px 20px;
  background: #fff;
}

.contato h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0057a3;
  text-align: center;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
  align-items: start;
}

.form-contato, .mapa {
  width: 100%;
}

.form-contato input, 
.form-contato textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-contato input:focus, 
.form-contato textarea:focus {
  outline: none;
  border-color: #0057a3;
  box-shadow: 0 0 4px rgba(0,87,163,0.3);
}

.form-contato button {
  background: #0057a3;
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.form-contato button:hover {
  background: #003d73;
}

.mapa iframe {
  border-radius: 12px;
  min-height: 350px;
  width: 100%;
  height: 100%;
}

/* RODAPÉ */
footer {
  background: #0057a3;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 20px;
  gap: 20px;
}

.footer-logo img {
  height: 50px;
}

.footer-links a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffdd57;
}

.social-icons a {
  color: white;
  margin: 0 8px;
  font-size: 1.2rem;
}

.social-icons a:hover {
  color: #ffdd57;
}

/* Botão WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 2rem;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background: #1ebe5b;
}
