/* Reset y globales */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #333;
}


/* ======================= */
/* ======= HERO VIDEO ==== */
/* ======================= */
#hero-video {
  margin-top: 80px;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
#hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================= */
/* ==== TEXTO PRINCIPAL == */
/* ======================= */
#texto-principal {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}
#texto-principal h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}
#texto-principal h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #555;
}
#texto-principal p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}
#texto-principal ul {
  list-style: none;
  padding-left: 0;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  color: #333;
}
#texto-principal ul li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}
#texto-principal ul li::before {
  content: "✔️";
  margin-right: 8px;
  color: #28a745;
}

/* ======================= */
/* ====== SECCIONES ====== */
/* ======================= */
.sections-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  background: #fafafa;
  transition: box-shadow 0.3s ease;
}
.section-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.section-card img {
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}
.section-card h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
}
.section-card p {
  padding: 0 15px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 10px;
  color: #555;
}
.see-more {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  color: #007bff;
  text-decoration: underline;
}

/* Responsive sections */
@media (max-width: 900px) {
  .section-card {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .section-card {
    width: 90%;
  }
}

/* ======================= */
/* ===== CONTACT INFO ==== */
/* ======================= */
#contact-info {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
  font-size: 1rem;
  color: #444;
}
#contact-info h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
#contact-info .contact-columns {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-column {
  min-width: 200px;
}
.contact-column p {
  margin: 8px 0;
}
.contact-column a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

/* ======================= */
/* ======== FOOTER ======= */
/* ======================= */
.site-footer {
  background: #f8f8f8;
  padding: 30px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}
.footer-links {
  margin-top: 10px;
}
.footer-links a {
  margin: 0 10px;
  color: #007bff;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Ajustes adicionales */
@media (min-width: 769px) {
  #texto-principal {
    padding-top: 80px;
  }
}
