/* Tipografía militar */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@300;400;700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #2d3b2f; /* tono militar */
  color: #fff;
}

/* Fondo camuflado tipo militar */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://cdn.pixabay.com/photo/2022/04/13/15/19/camouflage-7130476_960_720.png") repeat;
  opacity: 0.18;
  z-index: -1;
}

/* Encabezado tipo militar */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1b241b;
  padding: 15px 30px;
  border-bottom: 4px solid #4b5e3c;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.main-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  margin: 0;
  letter-spacing: 2px;
  color: #b7c9a8;
}

.main-header nav a {
  color: #dce4d3;
  margin-left: 15px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.main-header nav a:hover {
  background: #4b5e3c;
  color: #fff;
}

/* HERO estilo militar */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: rgba(0,0,0,0.3);
}

.hero h2 {
  font-family: 'Anton';
  font-size: 40px;
  margin-bottom: 10px;
  color: #e9f2df;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #d0d8c6;
}

/* Secciones */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-family: 'Anton';
  font-size: 32px;
  color: #dfe9d4;
  margin-bottom: 20px;
}

/* Lista de servicios */
.service-list li {
  background: #3b4a36;
  padding: 12px;
  margin: 10px auto;
  max-width: 400px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  border: 1px solid #566b4e;
}

/* Campo táctico */
.campo-section {
  padding: 60px 20px;
}

.campo-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 15px;
}

.campo-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #556b4e;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Video */
.campo-video video {
  width: 50%;
  max-width: 300px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  border: 3px solid #556b4e;
}

/* Contacto */
.contact-info p {
  font-size: 18px;
  background: #3b4a36;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  margin: 8px;
  border: 1px solid #566b4e;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 3px solid #566b4e;
  border-radius: 10px;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 20px;
  background: #1b241b;
  border-top: 4px solid #4b5e3c;
  color: #dce4d3;
  margin-top: 40px;
}

/* WhatsApp botón */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4b5e3c;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}