/**
Theme Name: turismoycultura-child
Author: NACOM
Author URI: https://nacom.ar
Description: Turismo y Cultura, muestra todo los rincones del país y el mundo.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: turismoycultura-child
Template: astra
*/
.seccion-destinos {
  padding: 2rem 0;
  background: #f9fafe;
}
.destinos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.card-destino {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px #0001;
  width: 260px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
}
.card-destino:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px #2062e733;
}
.card-destino img {
  border-radius: 8px;
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.card-destino h3 {
  color: #2062e7;
  margin: 0.6rem 0 0.3rem 0;
}
.card-destino p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.7rem;
}
.btn-destino {
  background: #2062e7;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  display: inline-block;
}
.btn-destino:hover {
  background: #178264;
}
