.tours-header{
padding:80px 60px 40px;
text-align:center;
}

.tours-header h1{
font-size:42px;
margin-bottom:10px;
}

.tours-header p{
color:#535353;
}

/* GRID */

.tour-list{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding:0 80px 80px;
}

/* CARD */

.tour-card {
  background: linear-gradient(
    135deg,
    rgba(240,249,255,0.55),
    rgba(186,230,253,0.35)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 10px 30px rgba(14,165,233,0.25);
}

/*hover moderno*/
.tour-card:hover {
  backdrop-filter: blur(20px);
  transform: translateY(-10px);
}


/*para que no se note el blur*/
canvas#water {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.sparkles {
  z-index: -1;
}

.tour-card:hover{
transform:translateY(-12px);
}

/* IMAGE */

.tour-img{
height:230px;
width:100%;
}

/* CONTENT */

.tour-content {
  background: linear-gradient(
    135deg,
    rgba(20, 19, 19, 0.45),
    rgba(255,255,255,0.15)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-top: 1px solid rgba(255,255,255,0.35);
}

.tour-card,
.tour-content {
  background: transparent !important;
}


.tour-content h3{
margin-top:0;
font-size:22px;
}

.price{
font-weight:600;
margin:10px 0;
}

.tour-content ul{
padding-left:18px;
text-align:left;
}

.tour-content li{
margin-bottom:6px;
}

/* TOUR IMAGES */

/* MOBILE */

@media(max-width:900px){

.tours-header{
padding:60px 20px 20px;
}

.tour-list{
grid-template-columns:1fr;
padding:0 20px 60px;
}

.tours-header h1{
font-size:30px;
}

}

/* ===== MODO CLARO ===== */

.tour-card {
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,.15);
}


.tour-content {
  background: transparent;
}

.tour-content h3 {
  color: #ffffff;
}

.tour-content p,
.tour-content li,
.price {
  color: #ffffff;
}

/* ===== MODO OSCURO ===== */

body.dark .tour-card {
  background: rgba(10,10,20,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 25px rgba(249,115,22,0.25),
    0 0 45px rgba(168,85,247,0.25);
}

body.dark .tour-content h3,
body.dark .tour-content p,
body.dark .tour-content li,
body.dark .price {
  color: rgba(255,255,255,0.92);
}

/*imagen de phone*/
.image-switcher {
  position: relative;
  width: 100%;
  height: 80vh; /* usa 100vh si la quieres full pantalla */
  overflow: hidden;
  cursor: pointer;
}

.image-switcher img {
  animation: slowZoom 20s linear infinite;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.image-switcher::after {
  content: "Click to explore";
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  transition: .3s;
}

.image-switcher:hover::after {
  opacity: 1;
}