body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.page-header {
  background: linear-gradient(135deg, #0b3d0b 0%, #2a6d2a 100%);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  margin-bottom: 0;
}

/* Botones de contacto rápido */
.btn-outline-success {
  border-color: #0b3d0b;
  color: #0b3d0b;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  background-color: #0b3d0b;
  border-color: #0b3d0b;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(11, 61, 11, 0.3);
}

.btn-success {
  background-color: #0b3d0b;
  border-color: #0b3d0b;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #084a08;
  border-color: #084a08;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(11, 61, 11, 0.3);
}

/* Tarjetas de información */
.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Información de contacto */
.contact-info i {
  font-size: 1.5rem;
  color: #0b3d0b;
  flex-shrink: 0;
}

.contact-info strong {
  color: #0b3d0b;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info a {
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #2a6d2a !important;
}

/* Formulario */
.form-label {
  font-weight: 600;
  color: #0b3d0b;
}

.form-control:focus,
.form-select:focus {
  border-color: #0b3d0b;
  box-shadow: 0 0 0 0.25rem rgba(11, 61, 11, 0.15);
}

.btn-primary {
  background-color: #0b3d0b;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #084a08;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 61, 11, 0.3);
}

/* Mensaje de éxito */
#mensaje-exito {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mapa */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
  border-radius: 12px;
}

/* Redes sociales */
.btn-lg.rounded-circle {
  transition: all 0.3s ease;
}

.btn-lg.rounded-circle:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Lista de zonas */
.list-unstyled li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.list-unstyled li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    font-size: 2rem;
    padding: 2rem 1rem;
  }
  
  .btn-lg.rounded-circle {
    width: 50px !important;
    height: 50px !important;
  }
}