* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #fdf6e3; color: #5c4033; line-height: 1.6; }
header { background-color: #c19a6b; padding: 1rem; text-align: center; color: #fff; }
nav ul { list-style: none; display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; }
nav a { text-decoration: none; color: #fff; font-weight: bold; }
nav a:hover { text-decoration: underline; }
a{text-decoration: none;}
.enlace{color: #5c4033;}
.intro { text-align: center; padding: 2rem; }
.intro-img { width: 200px; height: auto; margin-bottom: 1rem; }
button { background-color: #8b5e3c; color: #fff; border: none; padding: 0.8rem 1.5rem; margin-top: 1rem; cursor: pointer; border-radius: 10px; transition: background 0.3s; }
button:hover { background-color: #a67b5b; }
.external-links { background-color: #f5e1c8; padding: 2rem; margin-top: 2rem; }
.external-links ul { list-style: none; padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.external-links a { color: #5c4033; }
footer { background-color: #c19a6b; color: #fff; text-align: center; padding: 1rem; margin-top: 2rem; }
.cards-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 2rem; padding: 2rem; }
.card { background: #fffaf0; border: 1px solid #c19a6b; border-radius: 10px; padding: 1rem; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); transition: transform 0.2s; }
.card:hover { transform: scale(1.05); }
.card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px 10px 0 0; }
.counters-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  
  .counter-card {
    text-align: center;
    background-color: #fff7ec;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 180px;
  }
  
  .counter-card h3 {
    font-size: 2.5rem;
    color: #4b3832;
  }
  
  .counter-card p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.like-dislike-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
  }
  
  .react-button {
    font-size: 2rem;
    background: none;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
  }
  
  .react-button:hover {
    transform: scale(1.2);
  }
  
  .react-button.active {
    background-color: #ffe0b2;
    border-color: #d9bf77;
  }
  h3{
    text-align: center;

  }
  