/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* NAVBAR */
.navbar {
  background-color: #E53935;
  padding: 15px;
  text-align: center;
}

.navbar a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background: url('../images/colaborapp.jpg') no-repeat center center;
  background-size: cover;
  padding: 20px 20px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
 color: #333
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #333
}

.hero-buttons .button {
  margin: 5px;
}

/* BOTONES */
.button {
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

.button:hover {
  transform: translateY(-3px);
}

.button.yellow {
  background-color: #FFEB3B;
  color: #E53935;
}

.button.red {
  background-color: #E53935;
  color: #fff;
}

.button.white {
  background-color: #fff;
  color: #E53935;
}

/* BENEFICIOS */
.benefits {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.benefits h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 250px;
  padding: 20px;
  border-radius: 10px;
  background-color: #f7f7f7;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ARTÍCULOS */
.articles {
  padding: 80px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.articles h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.article-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.article-card {
  flex: 1 1 300px;
  max-width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.article-card .date {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 10px;
}

.article-card .read-more {
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
}

.article-card .read-more:hover {
  text-decoration: underline;
}

/* CTA */
.cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #E53935, #FFEB3B);
  text-align: center;
  color: #fff;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* FOOTER */
footer {
  background-color: #E53935;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .benefit-cards, .article-cards {
    flex-direction: column;
    align-items: center;
  }
}

.page-header {
  padding: 80px 20px;
  text-align: center;
  background-color: #f7f7f7;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.1rem;
  color: #555;
}

.content-section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.content-section p, .content-section ul {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* FORMULARIOS */
.contact-section form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-section button {
  align-self: flex-start;
}

/* CONTENT SECTION */
.content-section ul {
  list-style-type: disc;
  margin-left: 20px;
}

.content-section h2 {
  margin-top: 30px;
  margin-bottom: 15px;
}

/* LOGO DE LA APP */
.app-logo {
  text-align: center;
  margin: 20px 0;
}

.app-logo img {
  max-width:500px; /* Ajustar según el logo */
  height: 500px;
}

/* Beneficios */
.benefits {
  padding: 80px 20px;
  text-align: center;
}

.benefit-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px; /* espacio extra debajo de las tarjetas */
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 250px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.benefits .button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
}