/* ===== VAMOSARIO — ESTILOS GLOBALES ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --verde:    #00A878;
  --verde-dk: #007a57;
  --dorado:   #F5A623;
  --azul:     #0D2B45;
  --azul-md:  #1A4A6E;
  --blanco:   #FFFFFF;
  --gris-cl:  #F7F8FA;
  --gris-md:  #6B7280;
  --texto:    #1F2937;
  --radio:    12px;
  --sombra:   0 4px 24px rgba(0,0,0,0.10);
  --sombra-lg:0 12px 48px rgba(0,0,0,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--azul);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gris-md);
  max-width: 580px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--sombra); }

.btn-primary {
  background: var(--verde);
  color: var(--blanco);
}
.btn-primary:hover { background: var(--verde-dk); }

.btn-outline {
  background: transparent;
  color: var(--blanco);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-gold {
  background: var(--dorado);
  color: var(--azul);
}
.btn-gold:hover { background: #e0941a; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(13, 43, 69, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--verde);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--azul);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?w=1920&q=85');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
  transform: scale(1.05);
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,43,69,0.75) 0%,
    rgba(13,43,69,0.45) 50%,
    rgba(0,168,120,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--blanco);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-badge span { color: var(--dorado); }

.hero-title {
  font-size: clamp(38px, 6vw, 78px);
  color: var(--blanco);
  max-width: 720px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: normal;
  color: var(--dorado);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  color: var(--blanco);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dorado);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TOURS ===== */
.tours { background: var(--gris-cl); }

.tours-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.tour-card {
  background: var(--blanco);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-lg);
}

.tour-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-card:hover .tour-img img { transform: scale(1.08); }

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--verde);
  color: var(--blanco);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.tour-badge.popular { background: var(--dorado); color: var(--azul); }

.tour-body { padding: 24px; }

.tour-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--gris-md);
  margin-bottom: 12px;
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-title {
  font-size: 20px;
  color: var(--azul);
  margin-bottom: 10px;
}

.tour-desc {
  font-size: 14px;
  color: var(--gris-md);
  margin-bottom: 20px;
  line-height: 1.6;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F0F0F0;
  padding-top: 16px;
}

.tour-price {
  font-size: 13px;
  color: var(--gris-md);
}

.tour-price strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--verde);
}

.tour-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--azul);
  transition: gap 0.2s, color 0.2s;
}

.tour-link:hover { color: var(--verde); gap: 10px; }

/* ===== ABOUT ===== */
.about { background: var(--blanco); }

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

.about-imgs {
  position: relative;
}

.about-img-main {
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  border-radius: var(--radio);
  overflow: hidden;
  border: 5px solid var(--blanco);
  box-shadow: var(--sombra);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card {
  position: absolute;
  top: 32px;
  right: -24px;
  background: var(--blanco);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--sombra-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--verde), var(--azul-md));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.about-card-text strong {
  display: block;
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  color: var(--azul);
}

.about-card-text span {
  font-size: 12px;
  color: var(--gris-md);
}

.about-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,168,120,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text strong { display: block; font-size: 15px; color: var(--azul); margin-bottom: 2px; }
.feature-text span { font-size: 14px; color: var(--gris-md); }

/* ===== EXPERIENCE / WHY US ===== */
.why { background: var(--azul); overflow: hidden; position: relative; }

.why::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,168,120,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.why-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radio);
  transition: background 0.3s, transform 0.3s;
}

.why-item:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-6px);
}

.why-icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.why-item h3 {
  font-size: 18px;
  color: var(--blanco);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.why .section-title { color: var(--blanco); }
.why .tag { color: var(--dorado); }
.why .section-sub { color: rgba(255,255,255,0.65); }

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 280px;
  overflow: hidden;
}

.gallery-strip-img {
  overflow: hidden;
  position: relative;
}

.gallery-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.8);
}

.gallery-strip-img:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gris-cl); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testi-card {
  background: var(--blanco);
  border-radius: var(--radio);
  padding: 32px;
  box-shadow: var(--sombra);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--verde);
  opacity: 0.15;
  line-height: 1;
}

.stars {
  color: var(--dorado);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  color: var(--gris-md);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info strong { display: block; font-size: 14px; color: var(--azul); }
.author-info span { font-size: 12px; color: var(--gris-md); }

/* ===== CONTACT ===== */
.contact { background: var(--blanco); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,168,120,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--azul); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item-text a, .contact-item-text span { font-size: 16px; color: var(--gris-md); transition: color 0.2s; }
.contact-item-text a:hover { color: var(--verde); }

.contact-form {
  background: var(--gris-cl);
  border-radius: var(--radio);
  padding: 40px;
}

.contact-form h3 {
  font-size: 22px;
  color: var(--azul);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--azul);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde);
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--azul);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--blanco);
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: var(--verde);
  transform: translateY(-3px);
  border-color: var(--verde);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--verde); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--verde); }

/* ===== INNER PAGES ===== */
.inner-hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-md) 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--blanco);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.inner-hero .tag { color: var(--dorado); }
.inner-hero h1 { color: var(--blanco); font-size: clamp(28px, 4vw, 48px); }
.inner-hero p { color: rgba(255,255,255,0.75); font-size: 16px; margin: 12px auto 0; max-width: 500px; }

.inner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.inner-content h2 {
  font-size: 24px;
  color: var(--azul);
  margin: 40px 0 12px;
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content p, .inner-content li {
  font-size: 15px;
  color: var(--gris-md);
  line-height: 1.75;
  margin-bottom: 12px;
}

.inner-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 16px;
}

.inner-content ul li { margin-bottom: 6px; }

.inner-content a { color: var(--verde); text-decoration: underline; }

.highlight-box {
  background: rgba(0,168,120,0.08);
  border-left: 4px solid var(--verde);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.highlight-box p { margin: 0; color: var(--azul-md); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--azul);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 22px; color: var(--blanco); font-family: 'Playfair Display', serif; }
.mobile-nav a:hover { color: var(--verde); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { margin-bottom: 80px; }
  .about-img-accent { bottom: -24px; right: 0; }
  .about-card { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip-img:nth-child(4),
  .gallery-strip-img:nth-child(5) { display: none; }
}

@media (max-width: 600px) {
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}
