/* Reset e Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #a09888;
  color: #333;
  scroll-behavior: smooth;
  padding-top: 100px; /* espaço para header fixo */
}

/* Header fixo */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #222;
  padding: 10px 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

/* Header esquerdo (logo + título) */
.header-left {
  display: flex;
  align-items: center;
}

.header-left .logo {
  width: 60px;
  margin-right: 15px;
}

.header-left h1 {
  color: #ffcc00;
  font-size: 1.8rem;
}

/* Navegação */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px 80px 20px;
  background: url('https://images.unsplash.com/photo-1608032277487-2a5db7358121') no-repeat center/cover;
  color: white;
}

.hero h2 {
  font-size: 2rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin-bottom: 25px;
}

.hero a {
  background: #ffcc00;
  color: #222;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}

.hero a:hover {
  background: #e6b800;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 50px 20px;
  background: #fff;
}

.benefit {
  padding: 25px;
  background: #f1f1f1;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit h3 {
  color: #ff6600;
  margin-bottom: 15px;
}

/* Security */
.security {
  background: #222;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.security h2 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 2rem;
}

.security p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.security-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #333;
  padding: 25px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.card h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsividade */
@media(max-width: 800px) {
  .security-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width: 600px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .header {
    flex-direction: column;
    padding: 15px 20px;
  }

  .header-left {
    margin-bottom: 10px;
  }
}

@media(max-width: 500px) {
  .hero h2 {
    font-size: 1.5rem;
  }
}


/* CONTATO */


/* Contato */
.contato {
  background-color: #fff3e6;
  padding: 40px 20px;
  border-radius: 15px;
  max-width: 1000px;
  margin: 50px auto;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.contato h2 {
  color: #d35400;
  margin-bottom: 15px;
  text-align: center;
}

.contato p {
  margin-bottom: 25px;
  color: #555;
  font-size: 1rem;
  text-align: center;
}

/* Container flexível */
.contato-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Dados e formulário */
.contato-dados {
  flex: 1 1 400px;
}

/* Informações de contato */
.contato-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item h3 {
  color: #ff7300;
  margin-bottom: 5px;
}

.info-item p {
  color: #555;
}

/* Mapa */
.mapa {
  flex: 1 1 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Formulário */
.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ffb347;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #ff7300;
  box-shadow: 0 0 8px rgba(255,115,0,0.4);
  outline: none;
}

.contato-form button {
  background-color: #ff914d;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contato-form button:hover {
  background-color: #ff7300;
  transform: scale(1.05);
}

/* Animação de entrada */
.contato {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpForm 0.6s forwards;
  animation-delay: 0.3s;
}

@keyframes slideUpForm {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media(max-width: 900px){
  .contato-container {
    flex-direction: column;
    align-items: center;
  }

  .mapa {
    width: 100%;
    height: 300px;
  }
}
