:root {
    --primary: #FCD116; 
    --secondary: #003893; 
    --accent: #CE1126; 
    --dark: #2c3e50;
    --light: #f4f4f4;
    --text: #333;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { line-height: 1.6; color: var(--text); background-color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-small { max-width: 600px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--dark); position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin: 10px auto 0; border-radius: 2px; }
.bg-light { background-color: #f9f9f9; }
.white-text { color: var(--white); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--secondary); }
.btn-nav { background: var(--secondary); color: var(--white) !important; padding: 10px 20px; border-radius: 25px; transition: 0.3s; }
.btn-nav:hover { background: var(--accent); transform: translateY(-2px); }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }
.hero-slider { position: relative; height: 80vh; overflow: hidden; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: center; justify-content: center; text-align: center; }
.slide.active { opacity: 1; }
.hero-content { color: var(--white); z-index: 2; padding: 20px; }
.hero-content h1 { font-size: 4rem; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.5rem; font-weight: 300; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 20px; }
.card-content h3 { color: var(--secondary); margin-bottom: 10px; }
.grid-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.food-list { list-style: none; margin-top: 20px; }
.food-list li { margin-bottom: 10px; font-size: 1.1rem; }
.food-list i { color: var(--accent); margin-right: 10px; }
.image-block img { width: 100%; border-radius: 20px; box-shadow: 10px 10px 0 var(--primary); }
.grid-triplet { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.tip-card { background: var(--white); padding: 30px; border-radius: 15px; text-align: center; border: 1px solid #eee; transition: 0.3s; }
.tip-card:hover { border-color: var(--primary); }
.icon-large { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; }
.form-section { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1531366682736-2395f1f7d952?q=80&w=1920&auto=format&fit=crop'); background-size: cover; background-attachment: fixed; text-align: center; }
.glass-form { background: var(--glass); padding: 40px; border-radius: 20px; text-align: left; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; outline: none; transition: 0.3s; }
.form-group input:focus, .form-group select:focus { border-color: var(--secondary); box-shadow: 0 0 5px rgba(0,56,147,0.2); }
.btn-submit { width: 100%; padding: 15px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #a30e1e; }
footer { background: var(--dark); color: var(--white); text-align: center; padding: 30px; font-size: 0.9rem; }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .grid-dual { grid-template-columns: 1fr; }
    .image-block { order: -1; margin-bottom: 20px; }
}


.fila-botones {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.btn-tema {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
}

.contenedor-textos {
  text-align: center;
  margin-top: 20px;
  min-height: 50px;
}

.texto-info {
  display: none; /* Ocultos por defecto */
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}