:root{
  --verde:#1f6f54;
  --verde2:#0f3d2e;
  --amarillo:#f7c948;
  --gris:#f4f4f4;
  --oscuro:#111;
  --blanco:#fff;

  --sombra-suave: 0px 10px 30px rgba(0,0,0,0.08);
  --sombra-media: 0px 18px 45px rgba(0,0,0,0.14);
  --borde-suave: 1px solid rgba(0,0,0,0.08);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background: var(--blanco);
  color: var(--oscuro);
  line-height: 1.6;
}

/* ==============================
   HEADER / NAVBAR
============================== */

header{
  position: fixed;
  width: 100%;
  top:0;
  left:0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 999;
}

.navbar{
  max-width: 1100px;
  margin:auto;
  padding: 15px 20px;
  display:flex;
  justify-content: space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 16px;
  font-weight: bold;
  color: var(--verde2);
  letter-spacing: 0.5px;
}

.logo img{
  height: 40px;
  width: auto;
  object-fit: contain;
  display:block;
}

nav a{
  text-decoration:none;
  color: var(--oscuro);
  margin-left: 18px;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding-bottom: 6px;
  transition: 0.2s ease;
}

nav a:hover{
  color: var(--verde);
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background: var(--amarillo);
  transition: 0.3s;
  border-radius: 5px;
}

nav a:hover::after{
  width:100%;
}

/* ==============================
   HERO
============================== */

.hero{
  height: 100vh;
  background: linear-gradient(rgba(15,61,46,0.72), rgba(0,0,0,0.65)),
  url("img/TRAPICHE 1.jpg");
  background-size: cover;
  background-position: center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 0 20px;
}

.hero-content{
  max-width: 850px;
  color: white;
  margin-top: 60px;
  animation: fadeUp 1.2s ease;
}

.hero h1{
  font-size: 45px;
  margin-bottom: 15px;
  text-shadow: 0px 10px 25px rgba(0,0,0,0.65);
}

.hero p{
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
  text-shadow: 0px 6px 18px rgba(0,0,0,0.55);
}

/* ==============================
   BOTONES
============================== */

.btn{
  display:inline-block;
  padding: 13px 24px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: bold;
  font-size: 14px;
  transition: 0.25s ease;
}

.btn-primary{
  background: linear-gradient(135deg, #f7c948, #ffdd70);
  color: var(--oscuro);
  box-shadow: 0px 10px 25px rgba(247, 201, 72, 0.40);
}

.btn-primary:hover{
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0px 18px 35px rgba(247, 201, 72, 0.50);
}

.btn-secondary{
  border: 2px solid rgba(255,255,255,0.95);
  color: white;
  margin-left: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover{
  background: white;
  color: black;
  transform: translateY(-2px);
}

/* ==============================
   SECCIONES
============================== */

.section{
  padding: 95px 20px;
}

.container{
  max-width: 1100px;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom: 55px;
}

.section-title h2{
  font-size: 32px;
  color: var(--verde2);
  margin-bottom: 10px;
}

.section-title p{
  color: #555;
  font-size: 15px;
  max-width: 650px;
  margin: auto;
}

/* ==============================
   GRID / CARDS
============================== */

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card{
  background: linear-gradient(180deg, #ffffff, #f7fbf7);
  border: 1px solid rgba(15, 61, 46, 0.10);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: var(--sombra-suave);
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}

.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background: linear-gradient(90deg, var(--verde), var(--amarillo));
  opacity: 0.8;
}

.card:hover{
  transform: translateY(-8px);
  box-shadow: var(--sombra-media);
  border: 1px solid rgba(247, 201, 72, 0.55);
}

.card h3{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--verde2);
}

.card p{
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* ==============================
   HIGHLIGHT SECTION
============================== */

.highlight{
  background: linear-gradient(180deg, #f4f4f4, #ffffff);
}

/* ==============================
   GALERÍA
============================== */

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.25s ease;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
}

.gallery img:hover{
  transform: scale(1.03);
  box-shadow: 0px 16px 35px rgba(0,0,0,0.18);
}

/* ==============================
   INFO BOX
============================== */

.info{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.info-box{
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-radius: 20px;
  padding: 28px;
  border: var(--borde-suave);
  box-shadow: var(--sombra-suave);
}

.info-box h3{
  color: var(--verde2);
  margin-bottom: 14px;
  font-size: 18px;
}

.info-box ul{
  list-style: none;
}

.info-box ul li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 14px;
  color: #333;
}

.info-box ul li:last-child{
  border-bottom:none;
}

/* ==============================
   UBICACIÓN / MAPA
============================== */

.location-full{
  width: 100%;
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.location-card{
  width: 100%;
  max-width: 950px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbf7);
  border: 1px solid rgba(15, 61, 46, 0.10);
  box-shadow: var(--sombra-suave);
  text-align: left;
}

.location-header h3{
  margin: 0;
  font-size: 22px;
  color: var(--verde2);
}

.location-header p{
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.map-box{
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.10);
}

.map-box iframe{
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.location-actions{
  margin-top: 18px;
}

.location-actions a{
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-weight: 800;
  border-radius: 16px;
}

/* ==============================
   CHIVA
============================== */

.transport-info{
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(31,111,84,0.10), rgba(255,255,255,1));
  border: 1px solid rgba(15, 61, 46, 0.14);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
}

.transport-info h4{
  margin: 0;
  font-size: 16px;
  color: var(--verde2);
  display:flex;
  align-items:center;
  gap: 8px;
}

.transport-info p{
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

/* ==============================
   RECOMENDACIÓN
============================== */

.recommendation{
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247,201,72,0.20), rgba(255,255,255,1));
  border: 1px solid rgba(255, 193, 7, 0.35);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
}

.recommendation p{
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* ==============================
   FOOTER
============================== */

footer{
  background: var(--verde2);
  color:white;
  text-align:center;
  padding: 28px 15px;
}

footer p{
  font-size: 13px;
  opacity: 0.9;
}

/* ==============================
   WHATSAPP
============================== */

.whatsapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366;
  color:white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size: 28px;
  text-decoration:none;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.35);
  z-index: 999;
  transition: 0.25s ease;
}

.whatsapp:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0px 16px 40px rgba(0,0,0,0.45);
}

.whatsapp img{
  width: 32px;
  height: 32px;
}

/* ==============================
   ANIMACIONES
============================== */

@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(25px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   RESPONSIVE
============================== */

@media(max-width: 900px){

  .grid-3{
    grid-template-columns: 1fr;
  }

  .gallery{
    grid-template-columns: 1fr;
  }

  .info{
    grid-template-columns: 1fr;
  }

  .hero h1{
    font-size: 34px;
  }

  .location-card{
    padding: 22px;
  }

  .map-box iframe{
    height: 320px;
  }

  .location-header h3{
    font-size: 19px;
  }
}
#atracciones .grid-3 {
  gap: 35px;
  margin-bottom: 50px;
}

#atracciones .card {
  margin-bottom: 15px;
}

#galeria {
  padding-top: 60px;
}

.gallery {
  margin-top: 30px;
  gap: 25px;
}

/* ==============================
   TESTIMONIOS
============================== */

.testimonials-grid{
  margin-top: 25px;
}

.testimonial-card{
  background: linear-gradient(180deg, #ffffff, #f7fbf7);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  box-shadow: 0px 10px 28px rgba(0,0,0,0.08);
  transition: 0.25s ease;
  position: relative;
}

.testimonial-card::before{
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 45px;
  color: rgba(247, 201, 72, 0.65);
  font-weight: bold;
}

.testimonial-card:hover{
  transform: translateY(-6px);
  box-shadow: 0px 18px 40px rgba(0,0,0,0.14);
  border: 1px solid rgba(247, 201, 72, 0.55);
}

.testimonial-text{
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

.testimonial-footer{
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  color: var(--verde2);
}

.stars{
  color: #f7c948;
  font-size: 14px;
  letter-spacing: 1px;
}

.name{
  opacity: 0.9;
}

/* ==============================
   FAQ
============================== */

.faq-box{
  max-width: 900px;
  margin: auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-box details{
  background: white;
  border-radius: 16px;
  border: 1px solid #eee;
  padding: 18px 20px;
  box-shadow: 0px 8px 22px rgba(0,0,0,0.06);
  transition: 0.2s ease;
}

.faq-box details:hover{
  transform: translateY(-3px);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.10);
  border: 1px solid rgba(247, 201, 72, 0.45);
}

.faq-box summary{
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--verde2);
  list-style: none;
}

.faq-box summary::-webkit-details-marker{
  display: none;
}

.faq-box details p{
  margin-top: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.facebook-float,
.instagram-float,
.tiktok-float{
  position: fixed;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.3);
  z-index: 999;
  transition: 0.2s ease;
  color:white;
  font-size:24px;
}

/* Posiciones */
.facebook-float{ bottom: 230px; background:#1877F2; }
.instagram-float{ bottom: 160px; background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.tiktok-float{ bottom: 90px; background:#000; }

/* Hover */
.facebook-float:hover,
.instagram-float:hover,
.tiktok-float:hover{
  transform: scale(1.1);
}
