/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

/* Contenedor general */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero/Header */
.hero {
  background: linear-gradient(to right, #004aad, #0076ce);
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-content .logo {
  width: 260px;
  height: auto;
}

.hero .slogan {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-button {
  background-color: white;
  color: #004aad;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #e6f0ff;
}

/* Sección ¿Quiénes somos? */
.about {
  margin: 50px 0;
}

.about h2 {
  color: #004aad;
  margin-bottom: 15px;
  font-size: 1.8em;
}

/* Servicios con tarjetas */
.services {
  margin: 50px 0;
}

.services h2 {
  color: #004aad;
  font-size: 1.8em;
  margin-bottom: 30px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* A partir de pantallas grandes, siempre mostrar 4 columnas */
@media (min-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #e38b06;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.card ul {
  list-style-type: disc;
  padding-left: 20px;
}

.card li {
  margin-bottom: 10px;
}

.icono-servicio {
  display: block;
  margin: 0 auto 10px auto;
  width: 100px;
  height: auto;
}

/* Imagen empresa */
.photo-full {
  width: 100%;
  margin: 60px 0;
}

.image-full-width {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px; /* Ajusta este valor según necesites */
  object-fit: cover;
  object-position: center center;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contacto */
.contact-info {
  margin: 60px auto;
  border-top: 3px solid #004aad;
  background-color: #f4f6f8;
}

.contact-info h2 {
  color: #004aad;
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Footer */
footer {
  background-color: #004aad;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8em;
  }

  .hero .slogan {
    font-size: 1em;
  }

  .cta-button {
    font-size: 0.95em;
    padding: 10px 20px;
  }
}