*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --primary: hsl(350, 100%, 45%);
  --primary-fg: #fff;
  --bg: #fff;
  --fg: hsl(0, 0%, 10%);
  --secondary: hsl(0, 0%, 96%);
  --muted: hsl(0, 0%, 45%);
  --accent: hsl(350, 100%, 96%);
  --border: hsl(0, 0%, 90%);
  --whatsapp: hsl(142, 70%, 45%);
  --whatsapp-fg: #fff;
  --radius: 0.75rem;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  scroll-behavior: smooth
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display)
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem
}

.text-primary {
  color: var(--primary)
}

.section-padding {
  padding: 4rem 1rem
}

@media(min-width:768px) {
  .section-padding {
    padding: 6rem 2rem
  }
}

/* Glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06)
}

.hover-lift {
  transition: all .3s
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12)
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.animate-fade-in {
  animation: fadeIn .6s ease forwards
}

.animate-float {
  animation: float 3s ease-in-out infinite
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow .3s
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
}

.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary)
}

.navbar .logo svg {
  width: 28px;
  height: 28px;
  color: var(--primary)
}

.navbar .logo img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: all 0.3s;
}

@media(min-width: 768px) {
  .navbar .logo img {
    height: 48px;
    max-width: 180px;
  }
}

.nav-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--primary)
}

.nav-cta {
  display: none;
  background: var(--primary);
  color: var(--primary-fg);
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  transition: opacity .2s
}

.nav-cta:hover {
  opacity: .9
}

.hamburger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 4px
}

.hamburger svg {
  width: 24px;
  height: 24px
}

@media(min-width:768px) {
  .nav-links {
    display: flex
  }

  .nav-cta {
    display: inline-flex
  }

  .hamburger {
    display: none
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  display: block;
  padding: .5rem .75rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background .2s
}

.mobile-menu a:hover {
  background: var(--accent)
}

.mobile-menu .mob-cta {
  margin-top: .5rem;
  text-align: center;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 9999px;
  padding: .5rem 1.25rem;
  font-weight: 600
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--fg)
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3))
}

.hero .content {
  position: relative;
  z-index: 2;
  padding: 1rem
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(230, 0, 35, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(230, 0, 35, 0.2);
  color: var(--primary);
  border-radius: 9999px;
  padding: .375rem 1rem;
  font-size: .875rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem
}

.hero h1 span {
  color: var(--primary)
}

@media(min-width:640px) {
  .hero h1 {
    font-size: 3.5rem
  }
}

@media(min-width:1024px) {
  .hero h1 {
    font-size: 4.5rem
  }
}

.hero p.subtitle {
  font-size: 1.125rem;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 500;
}

.hero .buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center
}

@media(min-width:640px) {
  .hero .buttons {
    flex-direction: row;
    justify-content: center
  }
}

.hero .btn {
  border-radius: 9999px;
  padding: .75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all .2s;
  border: 2px solid transparent
}

.hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15)
}

.hero .btn-primary {
  background: var(--primary);
  color: #fff
}

.hero .btn-wa {
  background: var(--whatsapp);
  color: #fff
}

.hero .location {
  margin-top: 2.5rem;
  font-size: .875rem;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* ===== DESTINATIONS ===== */
.destinations {
  background: var(--secondary)
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: .75rem
}

@media(min-width:768px) {
  .section-title {
    font-size: 2.25rem
  }
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem
}

@media(min-width:640px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .dest-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.dest-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  display: block
}

.dest-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .5s
}

.dest-card:hover img {
  transform: scale(1.1)
}

.dest-card .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent)
}

.dest-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem
}

.dest-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff
}

.dest-card p {
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.8)
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

@media(min-width:768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
  }
}

.service-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: .75rem;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary)
}

.service-card h3 {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .25rem
}

@media(min-width:768px) {
  .service-card h3 {
    font-size: 1rem
  }
}

.service-card p {
  font-size: .75rem;
  color: var(--muted)
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--secondary)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem
}

@media(min-width:768px) {
  .why-grid {
    grid-template-columns: repeat(5, 1fr)
  }
}

.why-item {
  text-align: center
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(230, 0, 35, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem
}

.why-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary)
}

.why-item h3 {
  font-size: .875rem;
  font-weight: 600
}

@media(min-width:768px) {
  .why-item h3 {
    font-size: 1rem
  }
}

.why-item p {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .25rem
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto
}

@media(min-width:768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.price-card {
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 2rem
}

@media(min-width:768px) {
  .price-card {
    padding: 2rem
  }
}

.price-card.popular {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 32px rgba(230, 0, 35, 0.3);
  transform: scale(1.05);
  position: relative
}

.price-card.popular .pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fg);
  color: var(--bg);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem 1rem;
  border-radius: 9999px
}

.price-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.price-card .price {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem
}

.price-card li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  margin-bottom: .75rem
}

.price-card li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.price-card .book-btn {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 9999px;
  padding: .75rem;
  font-size: .875rem;
  font-weight: 600;
  transition: opacity .2s
}

.price-card .book-btn:hover {
  opacity: .9
}

.price-card:not(.popular) .book-btn {
  background: var(--primary);
  color: #fff
}

.price-card.popular .book-btn {
  background: #fff;
  color: var(--primary)
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--secondary)
}

.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto
}

@media(min-width:768px) {
  .test-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.test-card {
  border-radius: 1rem;
  padding: 1.5rem
}

.test-card .quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(230, 0, 35, 0.3);
  margin-bottom: 1rem
}

.test-card p.review {
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 1rem
}

.stars {
  display: flex;
  gap: .25rem;
  margin-bottom: .5rem
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #facc15;
  color: #facc15
}

.test-card .name {
  font-size: .875rem;
  font-weight: 600
}

/* ===== WHATSAPP SECTION ===== */
.wa-section {
  background: var(--whatsapp);
  color: #fff;
  text-align: center
}

.wa-section .wa-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem
}

.wa-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: .75rem
}

@media(min-width:768px) {
  .wa-section h2 {
    font-size: 2.25rem
  }
}

.wa-section .phone {
  opacity: .8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .5rem
}

.wa-section .sub {
  opacity: .7;
  font-size: .875rem;
  margin-bottom: 2rem
}

.wa-section .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--whatsapp);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: opacity .2s
}

.wa-section .wa-btn:hover {
  opacity: .9
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto
}

@media(min-width:1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr
  }
}

.contact-item {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: .5rem;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary)
}

.contact-item h3 {
  font-weight: 600;
  margin-bottom: .25rem
}

.contact-item p,
.contact-item a {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6
}

.contact-item a {
  color: var(--primary)
}

.contact-item a:hover {
  text-decoration: underline
}

.map-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-height: 320px
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px
}

/* ===== FOOTER ===== */
footer {
  background: var(--fg);
  color: var(--bg);
  padding: 3rem 1rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem
}

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

footer .brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem
}

footer .brand svg {
  width: 24px;
  height: 24px;
  color: var(--primary)
}

footer .desc {
  font-size: .875rem;
  opacity: .6;
  line-height: 1.6
}

footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1rem
}

footer ul {
  list-style: none
}

footer li {
  margin-bottom: .5rem
}

footer li a {
  font-size: .875rem;
  opacity: .6;
  transition: color .2s
}

footer li a:hover {
  color: var(--primary);
  opacity: 1
}

footer .foot-contact li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  opacity: .6;
  margin-bottom: .75rem
}

footer .foot-contact a {
  opacity: 1
}

footer .foot-contact a:hover {
  color: var(--primary)
}

footer .bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: .75rem;
  opacity: .4
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform .2s
}

.floating-wa:hover {
  transform: scale(1.1)
}

.floating-wa svg {
  width: 28px;
  height: 28px
}

nav a img {
  width: 120px;
}


.marquee-wrapper {
  overflow: hidden;
  background: var(--primary);
  color: white;
  padding: 8px 0;
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  animation: scrollText 15s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); } 
}

::selection {
  color: white;
  background-color: #e60023;
}