/* Importar Tailwind CSS */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Personalización de estilos */
body {
  font-family: 'Roboto', sans-serif; /* Utiliza la fuente Roboto o una similar */
  background-color: #f5f5f5;
  margin: 0;
}

/* Agrega estilos específicos para el hero */
.hero {
  position: relative;
  background-color: #09249a; /* Cambiado el color de fondo según tu preferencia */
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 5); /* Cambia el valor alpha (0.5) según tu preferencia */
  z-index: 1;
}
.btn {
  @apply inline-block px-4 py-2 bg-blue-500 text-white rounded-md;
}

.btn-primary {
  @apply bg-blue-500 hover:bg-blue-700;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Resto de estilos permanecen iguales */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
}

.logo {
  width: 150px;
  margin-bottom: 1rem;
}

.header h1 {
  font-size: 2rem;
  font-weight: bold;
}

.header a {
  background-color: #09249a; /* Cambiado el color según tu preferencia */
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Grilla automática con tamaño mínimo de 250px */
  gap: 20px; /* Espaciado entre las tarjetas */
}

.service-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  max-width: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.why-choose-us {
  padding: 4rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.highlight:hover {
  transform: scale(1.05);
}

.highlight img {
  max-width: 60px;
  margin-bottom: 1rem;
}

.highlight-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-container {
  text-align: center;
}

/* ... (estilos previos) ... */

.contact {
  background-color: #f5f5f5;
  padding: 4rem 0;
}

.contact-title {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info,
.contact-form,
.map {
  flex: 1 1 30%;
  margin: 1rem;
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-form form {
  max-width: 300px;
}

.map {
  /* Agregue estilos según la integración de su mapa, por ejemplo, fijar la altura, etc. */
}

/* ... (estilos posteriores) ... */


.footer {
  background-color: #09249a; /* Cambiado el color de fondo según tu preferencia */
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}
