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

/* ============================================
   ECLIPSE — The Traffic Party
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0B1026;
  --bg-secondary: #101832;
  --bg-card: #141C35;
  --bg-card-hover: #1a2445;
  --accent: #F5A623;
  --accent-hover: #e6991a;
  --accent-glow: rgba(245, 166, 35, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #6b7a99;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --sds-typography-body-size-small: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #05031B;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ---------- Placeholders para imágenes ---------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2rem;
  border: 1px dashed var(--border);
}

.img-placeholder-lg {
  min-height: 450px;
  border-radius: var(--radius);
}

.img-placeholder-full {
  position: absolute;
  inset: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 16, 38, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 ;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 136px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.nav-logo img {
  width: 175px;
  height: 87px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 25px;
}
.nav-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5rem;
}

.nav-links a {
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  font-size: var(--sds-typography-body-size-small);
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-actions{
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.lang-selector{
  border-radius: 0.75rem;
  border: 1px solid #FFB23E;
  background: rgba(255, 178, 62, 0.40);
  box-shadow: 0 114px 32px 0 rgba(0, 0, 0, 0.00), 0 73px 29px 0 rgba(0, 0, 0, 0.01), 0 41px 25px 0 rgba(0, 0, 0, 0.03), 0 18px 18px 0 rgba(0, 0, 0, 0.04), 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  padding: 0.75rem;
  align-items: center;
}
.nav-btn {
  border-radius: 59px;
  background: #FFB23E;
  display: flex;
  padding: 12px 24px;
  color: var(--Secondary-Secondary-900, #062D4F);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 1.5rem */
  letter-spacing: 0.005rem;
  align-items: center;
  box-shadow: 0 114px 32px 0 rgba(255, 178, 62, 0.00), 0 73px 29px 0 rgba(255, 178, 62, 0.01), 0 41px 25px 0 rgba(255, 178, 62, 0.03), 0 18px 18px 0 rgba(255, 178, 62, 0.04), 0 5px 10px 0 rgba(255, 178, 62, 0.05);
}

.nav-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 120;
  padding-top: 140px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(5, 3, 27, 0.00) 58.94%, #05031B 100%), linear-gradient(0deg, rgba(5, 3, 27, 0.60) 0%, rgba(5, 3, 27, 0.60) 100%), url("assets/images/hero-img.jpg") lightgray 50% / cover no-repeat;
  overflow: hidden;
}


.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-tag {
  border-radius: 2.875rem;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(15px);
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: var(--base-font-size-12, 12px);
  font-style: normal;
  font-weight: 600;
  color: #FFF;
  width: fit-content;
  margin:auto;
}

.hero-title {
  	width: 100%;
  	height: 190px;
  	position: relative;
  	text-align: center;
  	font-size: 86px;
  	color: #32cd76;
  	font-family: Inter;
}
.the-traffic-party-container {
  
  	position: absolute;
  	top: 0px;
  	left: 0.5px;
  	line-height: 110%;
  	font-weight: 800;
  	display: inline-block;
  	width: 773px;
  	height: 190px;
  	filter: blur(25px);
    left: 50%;
    transform: translateX(-50%);
}
.span {
  	color: #fff;
}
.traffic {
  	color: #ff4f4d;
}
.party {
  	color: #ffe066;
}
.the-traffic-party-container2 {
  	position: absolute;
  	top: 0px;
  	left: 0px;
  	line-height: 110%;
  	font-weight: 800;
  	display: inline-block;
  	width: 773px;
  	filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.14));
  	color: #fff;
    left: 50%;
    transform: translateX(-50%);
    
}
.the {
  	background: linear-gradient(90deg, #b1eccb, #fff);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}
.traffic2 {
  	background: linear-gradient(90deg, #ffc2c1, #fff);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}
.party2 {
  	background: linear-gradient(90deg, #fff5ce, #fff);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}



.hero-subtitle {
  width: 644px;
  position: relative;
  font-size: 18px;
  line-height: 160%;
  font-family: Poppins;
  color: #fff;
  text-align: center;
  display: inline-block;
}

.time-1-parent {
  	position: relative;
  	display: flex;
  	align-items: center;
  	gap: 6px;
  	text-align: center;
  	font-size: 14px;
  	color: #fff;
  	font-family: Inter;
}
.time-1-icon {
  	width: 18px;
  	position: relative;
  	max-height: 100%;
}
.every-thursday-from-container {
  	position: relative;
  	letter-spacing: 0.02em;
  	line-height: 100%;
}
.every-thursday-from {
  	font-weight: 500;
}

.default-parent {
  	position: relative;
  	width: 100%;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	gap: 24px;
    margin-top:28px;
  	text-align: left;
  	font-size: 16px;
  	color: #062d4f;
  	font-family: Inter;
}
.hero .default {
  	box-shadow: 0px 0px 17.7px rgba(255, 178, 62, 0.5);
  	border-radius: 59px;
  	background-color: #ffb23e;
  	display: flex;
  	align-items: center;
  	padding: 16px 32px;
  	gap: 12px;
}
.label {
  	position: relative;
  	letter-spacing: 0.01em;
  	line-height: 150%;
}
.essentials-arrow-right {
  	width: 18px;
  	position: relative;
  	max-height: 100%;
}
.label2 {
  	position: relative;
  	letter-spacing: 0.01em;
  	line-height: 150%;
  	color: #fefefe;
}

.hero .frame-parent {
    margin-top: 28px;
  	position: relative;
  	box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.08);
  	backdrop-filter: blur(10px);
  	border-radius: 20px;
  	background-color: rgba(255, 255, 255, 0.2);
  	border: 1px solid rgba(255, 255, 255, 0.3);
  	box-sizing: border-box;
  	width: 100%;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	padding: 8px 36px;
  	gap: 6px;
  	text-align: center;
  	font-size: 32px;
  	color: #fff;
  	font-family: Roboto;
}
.time-1-parent {
  	display: flex;
  	align-items: center;
  	gap: 6px;
  	font-size: 12px;
  	font-family: Inter;
}
.time-1-icon {
  	width: 18px;
  	position: relative;
  	max-height: 100%;
}
.next-excursion {
  	position: relative;
  	letter-spacing: 0.02em;
  	line-height: 100%;
}
.parent {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: center;
  	padding: 16px;
  	gap: 2px;
}
.div {
  	position: relative;
  	letter-spacing: -0.03em;
  	line-height: 100%;
  	font-weight: 300;
}
.days {
  	position: relative;
  	font-size: 12px;
  	letter-spacing: 0.02em;
  	line-height: 100%;
  	font-family: Inter;
}
.el-catamarn-ms-grande-del-ca-parent {
  	width: 100%;
  	height: 58px;
  	position: relative;
  	text-align: center;
  	font-size: 48px;
    margin-top: 28px;
  	color: #062d4f;
    white-space: nowrap;
  	font-family: Inter;
}
.el-catamarn-ms-container {
  	position: absolute;
  	top: 0px;
  	left: 0px;
  	letter-spacing: -0.02em;
  	line-height: 120%;
  	font-weight: 900;
  	filter: blur(29px);
    left: 50%;
    transform: translateX(-50%);
}
.el {
  	color: rgba(6, 45, 79, 0);
}
.catamarn {
  	color: #ff3b3b;
}
.ms {
  	color: rgba(255, 255, 255, 0);
}
.grande {
  	color: #ffb020;
}
.caribe {
  	color: #1ca950;
}
.el-catamarn-ms-container2 {
  	position: absolute;
  	top: 0px;
  	left: 0px;
  	letter-spacing: -0.02em;
  	line-height: 120%;
  	font-weight: 900;
  	color: #fff;
    left: 50%;
    transform: translateX(-50%);
}
.catamarn2 {
  	color: #fff5f5;
}
.grande2 {
  	color: #fff6e6;
}
.caribe2 {
  	color: #e9fff1;
}








@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}


/* ============================================
   Seccion1 
   ============================================ */


   .section1 {
      min-height: 100vh;
      padding: 100px 0px;
      background: linear-gradient(180deg, #05031B 0%, rgba(5, 3, 27, 0.00) 50.14%, #05031B 100%), linear-gradient(0deg, rgba(5, 3, 27, 0.70) 0%, rgba(5, 3, 27, 0.70) 100%), url("/assets/images/section1.jpg") lightgray 50% / cover no-repeat;
      display: flex;
      justify-content: center; /* horizontal */
      align-items: center;     /* vertical */
   }
   .section1 .contain {
        width: 100%;
        position: relative;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 64px;
        text-align: center;
        font-size: 14px;
        color: #0f6cbd;
        font-family: Inter;
    }
    .section1 .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .section1 .a-sophisticated-gateway {
        position: relative;
        letter-spacing: 0.3em;
        line-height: 140%;
        text-transform: uppercase;
        font-weight: 600;
    }
    .section1 .section-title {
        position: relative;
        font-size: 48px;
        font-family: Inter;
        letter-spacing: -0.02em;
        line-height: 120%;
        font-weight: 900;
        color: #f5f7ff;
    }
    .section1 .good-vibes {
        background: linear-gradient(90deg, #45b7fc 50.48%, #4657f5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .section1 .section-description {
        width: 736px;
        position: relative;
        font-size: 18px;
        line-height: 160%;
        font-family: Poppins;
        color: #b8c0e0;
        display: inline-block;
    }
    .section1 .cards-wrapper {
        align-self: stretch;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-content: start;
        column-gap: 32px;
        font-size: 24px;
        color: #f5f7ff;
    }
    .section1 .card {
        backdrop-filter: blur(24px);
        border-radius: 32px;
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 32px;
        gap: 32px;
        grid-column: 1;
        grid-row: 1;
    }
    .section1 .card-child {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .section1 .aboard-eclipse-parent {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .section1 .aboard-eclipse {
        position: relative;
        line-height: 130%;
        font-weight: 800;
    }
    .section1 .unmatched-ocean-views {
        align-self: stretch;
        position: relative;
        font-size: 14px;
        line-height: 150%;
        color: #b8c0e0;
        text-align: left;
    }
    .section1 .card2 {
        backdrop-filter: blur(24px);
        border-radius: 32px;
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 32px;
        gap: 32px;
        grid-column: 2;
        grid-row: 1;
    }
    .section1 .card3 {
        backdrop-filter: blur(24px);
        border-radius: 32px;
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 32px;
        gap: 32px;
        grid-column: 3;
        grid-row: 1;
    }



/* ============================================
   End Seccion1
   ============================================ */

/* ============================================
   Start Seccion2
   ============================================ */

  .section2 {
      min-height: 100vh;
      padding: 100px 0px;
      background: #05031B;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .section2 .contain {
      width: 100%;
      max-width: 1200px;
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 32px;
      text-align: left;
      font-size: 14px;
      color: #0f6cbd;
      font-family: Inter;
  }
  .section2 .section-header-parent {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 46px;
  }
  .section2 .section-header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 32px;
      text-align: center;
  }
  .section2 .whats-included-parent {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
  }
  .section2 .whats-included {
      position: relative;
      letter-spacing: 0.3em;
      line-height: 140%;
      text-transform: uppercase;
      font-weight: 600;
  }
  .section2 .section-title {
      position: relative;
      font-family: Poppins;
      font-size: 48px;
      letter-spacing: -0.02em;
      line-height: 120%;
      font-weight: 900;
      text-align: left;
      color: #f5f7ff;
  }
  .section2 .aboard-eclipse {
      background: linear-gradient(90deg, #45b7fc 50.48%, #4657f5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .section2 .section-description {
      width: 589px;
      position: relative;
      font-size: 18px;
      line-height: 160%;
      font-weight: 300;
      font-family: Poppins;
      color: #b8c0e0;
      text-align: left;
      display: inline-block;
  }
  .section2 .frame-parent {
      display: grid;
      grid-template-columns: repeat(2, 262px);
      align-content: start;
      gap: 32px;
      font-size: 12px;
      color: #b8c0e0;
      font-family: Poppins;
  }
  .section2 .frame-group {
      display: flex;
      gap: 12px;
      grid-column: 1;
      grid-row: 1;
  }
  .section2 .frame-child {
      display: flex;
      width: 36px;
      height: 36px;
      justify-content: center;
      align-items: center;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0px 3px 1px rgba(0, 0, 0, 0), 0px 2px 1px rgba(0, 0, 0, 0.01), 0px 1px 1px rgba(0, 0, 0, 0.03);
      border-radius: 61px;
      max-height: 100%;
  }
  .section2 .h-3-6-pm {
      width: 157px;
      position: relative;
      line-height: 160%;
      text-align: left;
      font-weight: 500;
      display: inline-block;
      flex-shrink: 0;
  }
  .section2 .frame-container {
      display: flex;
      gap: 12px;
      grid-column: 1;
      grid-row: 2;
  }
  .section2 .free-wifi {
      width: 168px;
      position: relative;
      line-height: 160%;
      text-align: left;
      font-weight: 500;
      display: inline-block;
      flex-shrink: 0;
  }
  .section2 .frame-div {
      display: flex;
      gap: 12px;
      grid-column: 2;
      grid-row: 2;
  }
  .section2 .frame-parent2 {
      display: flex;
      gap: 12px;
      grid-column: 1;
      grid-row: 3;
  }
  .section2 .complementary-light-snacks {
      width: 166px;
      position: relative;
      text-align: left;
      line-height: 160%;
      font-weight: 500;
      display: inline-block;
      flex-shrink: 0;
  }
  .section2 .frame-parent3 {
      display: flex;
      gap: 12px;
      grid-column: 2;
      grid-row: 3;
  }
  .section2 .fun-and-interactive {
      flex: 1;
      position: relative;
      text-align: left;
      line-height: 160%;
      font-weight: 500;
  }
  .section2 .frame-parent4 {
      display: flex;
      gap: 12px;
      grid-column: 1;
      grid-row: 4;
  }
  .section2 .frame-parent5 {
      display: flex;
      gap: 12px;
      grid-column: 2;
      grid-row: 4;
  }
  .section2 .frame-parent6 {
      display: flex;
      gap: 12px;
      grid-column: 1;
      grid-row: 5;
  }
  .section2 .frame-parent7 {
      display: flex;
      gap: 12px;
      grid-column: 2;
      grid-row: 1;
  }
  .section2 .default {
      width: 250px;
      box-shadow: 0px 6px 16px rgba(255, 178, 62, 0.5);
      border-radius: 60px;
      background-color: #ffb23e;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px;
      box-sizing: border-box;
      font-size: 16px;
      color: #000;
  }
  .section2 .label {
      position: relative;
      letter-spacing: 0.01em;
      line-height: 150%;
  }
  .section2 .card {
      align-self: stretch;
      width: 579px;
      box-shadow: 0px 270px 75px rgba(0, 0, 0, 0), 0px 172px 69px rgba(0, 0, 0, 0.01), 0px 97px 58px rgba(0, 0, 0, 0.03), 0px 43px 43px rgba(0, 0, 0, 0.04), 0px 11px 24px rgba(0, 0, 0, 0.05);
      border-radius: 36px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 8px;
      position: relative;
      isolation: isolate;
      gap: 32px;
      text-align: center;
      color: #f5f7ff;
  }
  .section2 .ef-372f-4b2a-8cdd-620cfb58066a-icon {
      align-self: stretch;
      flex: 1;
      position: relative;
      border-radius: 28px;
      max-width: 100%;
      overflow: hidden;
      max-height: 100%;
      object-fit: cover;
      z-index: 0;
      flex-shrink: 0;
  }
  .section2 .card2 {
      width: 259px;
      margin: 0 !important;
      position: absolute;
      bottom: -20px;
      left: -105px;
      border-radius: 24px;
      background-color: #0e0a2a;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-sizing: border-box;
      display: flex;
      align-items: center;
      padding: 24px 16px;
      gap: 16px;
      z-index: 1;
      flex-shrink: 0;
  }
  .section2 .card-child {
      display: flex;
      width: 60px;
      height: 60px;
      justify-content: center;
      align-items: center;
      border-radius: 94px;
      background: rgba(243, 250, 255, 0.08);
  }
  .section2 .every-thursday-parent {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
  }
  .section2 .every-thursday {
      position: relative;
      line-height: 130%;
      font-weight: 800;
  }
  .section2 .from-300-to-container {
      align-self: stretch;
      position: relative;
      font-size: 12px;
      line-height: 150%;
      color: #b8c0e0;
      text-align: left;
  }





/* ============================================
   End Seccion2
   ============================================ */

/* ============================================
   Start Seccion3
   ============================================ */


  .section3{
    min-height: 100vh;
    padding: 100px 0px;
    background: url("/assets/images/Group\ 10.png") center -50px / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section3 .contain {
      width: 100%;
      max-width: 1200px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 64px;
      text-align: center;
      font-size: 14px;
      color: #0f6cbd;
      font-family: Inter;
  }
  .section3 .section-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
  }
  .section3 .a-sophisticated-gateway {
      position: relative;
      letter-spacing: 0.3em;
      line-height: 140%;
      text-transform: uppercase;
      font-weight: 600;
  }
  .section3 .section-title {
      position: relative;
      font-size: 48px;
      letter-spacing: -0.02em;
      line-height: 120%;
      font-weight: 900;
      color: #f5f7ff;
  }
  .section3 .color {
      background: linear-gradient(90deg, #45b7fc, #4657f5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .section3 .section-description {
      width: 589px;
      position: relative;
      font-size: 18px;
      line-height: 160%;
      font-weight: 300;
      font-family: Poppins;
      color: #b8c0e0;
      display: inline-block;
  }
  .section3 .cards-wrapper {
      align-self: stretch;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-content: start;
      gap: 24px;
      font-size: 28px;
      color: #ff3b3b;
  }
  .section3 .card {
      box-shadow: 0px 264px 74px rgba(250, 0, 0, 0), 0px 169px 68px rgba(250, 0, 0, 0.01), 0px 95px 57px rgba(250, 0, 0, 0.03), 0px 42px 42px rgba(250, 0, 0, 0.04), 0px 11px 23px rgba(250, 0, 0, 0.05);
      backdrop-filter: blur(24px);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 235, 235, 0.08));
      border: 1px solid rgba(255, 59, 59, 0.25);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px;
      gap: 32px;
      grid-column: 1;
      grid-row: 1;
  }
  .section3 .card-child {
      width: 74px;
      height: 74px;
      border-radius: 65px;
      max-height: 100%;
      background: rgba(254, 241, 242, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .section3 .taken-parent {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
  }
  .section3 .taken {
      position: relative;
      line-height: 130%;
  }
  .section3 .section-description2 {
      align-self: stretch;
      position: relative;
      font-size: 14px;
      line-height: 160%;
      font-weight: 300;
      font-family: Poppins;
      color: #c7c7c7;
  }
  .section3 .card2 {
      height: 363px;
      backdrop-filter: blur(4px);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(235, 255, 239, 0.04));
      border: 1px solid rgba(0, 211, 35, 0.08);
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 8px;
      grid-column: 3;
      grid-row: 2;
  }
  .section3 .medium-shot-friends-with-delic-icon {
      align-self: stretch;
      flex: 1;
      position: relative;
      border-radius: 16px;
      max-width: 100%;
      overflow: hidden;
      max-height: 100%;
      object-fit: cover;
  }
  .section3 .card3 {
      height: 363px;
      backdrop-filter: blur(4px);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 248, 235, 0.04));
      border: 1px solid rgba(255, 176, 32, 0.08);
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 8px;
      grid-column: 2;
      grid-row: 2;
  }
  .section3 .card4 {
      box-shadow: 0px 264px 74px rgba(0, 250, 42, 0), 0px 169px 68px rgba(0, 250, 42, 0.01), 0px 95px 57px rgba(0, 250, 42, 0.03), 0px 42px 42px rgba(0, 250, 42, 0.04), 0px 11px 23px rgba(0, 250, 42, 0.05);
      backdrop-filter: blur(24px);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(235, 255, 239, 0.08));
      border: 1px solid rgba(0, 211, 35, 0.25);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px;
      gap: 32px;
      grid-column: 3;
      grid-row: 1;
      color: #00c421;
  }
  .section3 .card5 {
      height: 363px;
      backdrop-filter: blur(4px);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 235, 235, 0.04));
      border: 1px solid rgba(255, 59, 59, 0.08);
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 8px;
      grid-column: 1;
      grid-row: 2;
  }
  .section3 .card6 {
      box-shadow: 0px 264px 74px rgba(250, 167, 0, 0), 0px 169px 68px rgba(250, 167, 0, 0.01), 0px 95px 57px rgba(250, 167, 0, 0.03), 0px 42px 42px rgba(250, 167, 0, 0.04), 0px 11px 23px rgba(250, 167, 0, 0.05);
      backdrop-filter: blur(24px);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 248, 235, 0.08));
      border: 1px solid rgba(255, 176, 32, 0.25);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px;
      gap: 32px;
      grid-column: 2;
      grid-row: 1;
      color: #ffb020;
  }
  .section3 .default {
      box-shadow: 0px 6px 16px rgba(255, 178, 62, 0.5);
      border-radius: 60px;
      background-color: #ffb23e;
      display: flex;
      align-items: center;
      padding: 16px 32px;
      text-align: left;
      font-size: 16px;
      color: #000;
  }
  .section3 .label {
      position: relative;
      letter-spacing: 0.01em;
      line-height: 150%;
  }









/* ============================================
   End Seccion3
   ============================================ */

/* ============================================
   Start Seccion4
   ============================================ */

   .section4{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   .section4 .card-parent {
      position: relative;
      width: 100%;
      display: flex;
      max-width:1200px;
      flex-direction: column;
      align-items: center;
      text-align: left;
      font-size: 40px;
      color: #fff;
      font-family: Inter;
  }
  .section4 .card {
      width: 1200px;
      height: 525px;
      box-shadow: 0px 350px 98px rgba(0, 31, 51, 0), 0px 224px 90px rgba(0, 31, 51, 0.01), 0px 126px 76px rgba(0, 31, 51, 0.05), 0px 56px 56px rgba(0, 31, 51, 0.09), 0px 14px 31px rgba(0, 31, 51, 0.1);
      border-radius: 40px;
      background: url("/assets/images/section4.jpg") center / cover no-repeat;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 8px;
  }
  .section4 .a-spectacular-setting-vibrant-wrapper {
      width: 100%;
      flex: 1;
      border-radius: 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 70px 0px;
      box-sizing: border-box;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top;
      max-width: 100%;
  }
  .section4 .a-spectacular-setting {
      position: relative;
      line-height: 130%;
      font-size: 35px;
      display: inline-block;
  }
  .section4 .default {
      width: 326px;
      border-radius: 0px 0px 32px 32px;
      background-color: rgba(250, 250, 250, 0.04);
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px 32px;
      gap: 12px;
      font-size: 16px;
      color: #b8c0e0;
  }
  .section4 .label {
      position: relative;
      letter-spacing: 0.01em;
      line-height: 150%;
  }
  .section4 .essentials-arrow-right {
      width: 18px;
      position: relative;
      max-height: 100%;
  }




/* ============================================
   End Seccion4
   ============================================ */

/* ============================================
   Start Seccion5
   ============================================ */

   .section5{
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }
    .contain {
        width: 100%;
        max-width: 1200px;
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 64px;
        text-align: center;
        font-size: 32px;
        color: #f5f7ff;
        font-family: Inter;
    }
    .section5 .card {
        height: 666px;
        width: 547px;
        box-shadow: 0px 244px 68px rgba(0, 0, 0, 0), 0px 156px 63px rgba(0, 0, 0, 0.01), 0px 88px 53px rgba(0, 0, 0, 0.03), 0px 39px 39px rgba(0, 0, 0, 0.04), 0px 10px 21px rgba(0, 0, 0, 0.05);
        border-radius: 36px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 8px;
        position: relative;
        isolation: isolate;
        gap: 32px;
    }
    .section5 .ef-372f-4b2a-8cdd-620cfb58066a-icon {
        align-self: stretch;
        flex: 1;
        position: relative;
        border-radius: 28px;
        max-width: 100%;
        overflow: hidden;
        max-height: 100%;
        object-fit: cover;
        z-index: 0;
        flex-shrink: 0;
    }
    .section5 .card2 {
        margin: 0 !important;
        position: absolute;
        top: -36px;
        right: -20px;
        box-shadow: 0px 141px 39px rgba(0, 82, 133, 0), 0px 90px 36px rgba(0, 82, 133, 0.01), 0px 51px 30px rgba(0, 82, 133, 0.03), 0px 23px 23px rgba(0, 82, 133, 0.04), 0px 6px 12px rgba(0, 82, 133, 0.05);
        border-radius: 24px;
        background-color: #0e0a2a;
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 24px;
        z-index: 1;
        flex-shrink: 0;
    }
    .section5 .hs-parent {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .section5 .hs {
        position: relative;
        line-height: 130%;
        font-weight: 800;
    }
    .section5 .open-bar {
        position: relative;
        font-size: 14px;
        letter-spacing: 0.06em;
        line-height: 130%;
        font-weight: 800;
        color: #b8c0e0;
    }
    .section5 .section-header-parent {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 64px;
        text-align: left;
        font-size: 14px;
        color: #0f6cbd;
    }
    .section5 .section-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
        text-align: center;
    }
    .section5 .the-indulgence-parent {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .section5 .the-indulgence {
        position: relative;
        letter-spacing: 0.3em;
        line-height: 140%;
        text-transform: uppercase;
        font-weight: 600;
    }
    .section5 .section-title {
        position: relative;
        font-size: 48px;
        letter-spacing: -0.02em;
        line-height: 120%;
        font-weight: 900;
        text-align: left;
        color: #f5f7ff;
    }
    .section5 .caribean-vibes {
        background: linear-gradient(90deg, #45b7fc 50.48%, #327af2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .section5 .section-description {
        width: 589px;
        position: relative;
        font-size: 18px;
        line-height: 160%;
        font-weight: 300;
        font-family: Poppins;
        color: #65758b;
        text-align: left;
        display: inline-block;
    }
    .section5 .card3 {
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 24px;
        gap: 24px;
        font-size: 12px;
        color: #65758b;
        font-family: Poppins;
    }
    .section5 .included-drinks {
        position: relative;
        font-size: 14px;
        letter-spacing: 0.08em;
        line-height: 140%;
        text-transform: uppercase;
        font-weight: 600;
        font-family: Inter;
        color: #f5f7ff;
        text-align: center;
    }
    .section5 .frame-parent {
        display: grid;
        grid-template-columns: repeat(2, auto);
        align-content: start;
        column-gap: 64px;
        row-gap: 10px;
    }
    .section5 .frame-group {
        display: flex;
        align-items: center;
        gap: 8px;
        grid-column: 1;
        grid-row: 1;
    }
    .section5 .frame-child {
        width: 28px;
        height: 28px;
        border-radius: 61px;
        max-height: 100%;
        background: rgba(231, 245, 254, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section5 .presidente-beer {
        width: 157px;
        position: relative;
        line-height: 160%;
        font-weight: 500;
        display: inline-block;
        flex-shrink: 0;
    }
    .section5 .frame-container {
        display: flex;
        align-items: center;
        gap: 8px;
        grid-column: 2;
        grid-row: 1;
    }
    .section5 .premium-ron {
        width: 168px;
        position: relative;
        line-height: 160%;
        font-weight: 500;
        display: inline-block;
        flex-shrink: 0;
    }
    .section5 .frame-div {
        display: flex;
        align-items: center;
        gap: 8px;
        grid-column: 1;
        grid-row: 2;
    }
    .section5 .vodka {
        width: 167px;
        position: relative;
        line-height: 160%;
        font-weight: 500;
        display: inline-block;
        flex-shrink: 0;
    }
    .section5 .frame-parent2 {
        display: flex;
        align-items: center;
        gap: 8px;
        grid-column: 2;
        grid-row: 2;
    }
    .section5 .frame-parent3 {
        display: flex;
        align-items: center;
        gap: 8px;
        grid-column: 1;
        grid-row: 3;
    }
    .section5 .sodas-water {
        width: 166px;
        position: relative;
        line-height: 160%;
        font-weight: 500;
        display: inline-block;
        flex-shrink: 0;
    }
    .section5 .frame-parent4 {
        display: flex;
        align-items: center;
        gap: 8px;
        grid-column: 2;
        grid-row: 3;
    }
    .section5 .special-bottles {
        flex: 1;
        position: relative;
        line-height: 160%;
        font-weight: 500;
    }
    .section5 .section-description2 {
        align-self: stretch;
        position: relative;
        line-height: 160%;
        font-weight: 300;
    }
    .section5 .default {
        box-shadow: 0px 6px 16px rgba(255, 178, 62, 0.5);
        border-radius: 60px;
        background-color: #ffb23e;
        display: flex;
        align-items: center;
        padding: 16px 32px;
        font-size: 16px;
        color: #000;
    }
    .section5 .label {
        position: relative;
        letter-spacing: 0.01em;
        line-height: 150%;
    }





/* ============================================
   End Seccion5
   ============================================ */


/* ============================================
   Start Section6
   ============================================ */


   .section6{
    min-height: 100vh;
    padding: 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #05031B 0%, rgba(5, 3, 27, 0.00) 50.14%, #05031B 100%), url('/assets/images/section6.jpg') lightgray 0px -4.229px / 100% 100.853% no-repeat;
   }
   .section6 .card {
      width: 100%;
      max-width: 1200px;
      position: relative;
      box-shadow: 0px 141px 39px rgba(0, 82, 133, 0), 0px 90px 36px rgba(0, 82, 133, 0.01), 0px 51px 30px rgba(0, 82, 133, 0.03), 0px 23px 23px rgba(0, 82, 133, 0.04), 0px 6px 12px rgba(0, 82, 133, 0.05);
      backdrop-filter: blur(25px);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      isolation: isolate;
      gap: 60px;
      text-align: left;
      font-size: 12px;
      color: #f5f7ff;
      font-family: Inter;
  }
  .section6 .section-header {
      width: 271px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 50px;
      z-index: 0;
      flex-shrink: 0;
  }
  .section6 .frame-parent {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      flex-shrink: 0;
  }
  .section6 .music-1-parent {
      box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(30px);
      border-radius: 46px;
      background-color: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px;
      gap: 6px;
      text-align: center;
  }
  .section6 .music-1-icon {
      width: 14px;
      position: relative;
      max-height: 100%;
  }
  .section6 .boarding-passes {
      position: relative;
      line-height: 100%;
      font-weight: 600;
  }
  .section6 .section-title {
      align-self: stretch;
      position: relative;
      font-size: 48px;
      letter-spacing: -0.02em;
      line-height: 120%;
      font-weight: 900;
  }
  .section6 .experience {
      background: linear-gradient(90deg, #45b7fc 50.48%, #327af2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .section6 .section-description {
      align-self: stretch;
      position: relative;
      font-size: 14px;
      line-height: 160%;
      font-weight: 300;
      font-family: Poppins;
      color: #b8c0e0;
  }
  .section6 .question-1-parent {
      box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(30px);
      border-radius: 12px;
      background-color: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      gap: 12px;
      flex-shrink: 0;
      font-size: 10px;
      color: #b8c0e0;
  }
  .section6 .question-1-icon {
      width: 15px;
      position: relative;
      max-height: 100%;
  }
  .section6 .all-tickets-include {
      width: 217px;
      position: relative;
      line-height: 125%;
      font-weight: 600;
      display: inline-block;
      flex-shrink: 0;
  }
  .section6 .frame-group {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 11px;
      z-index: 1;
      flex-shrink: 0;
      text-align: center;
      font-size: 24px;
      color: #062d4f;
  }
  .section6 .card-wrapper {
      display: flex;
      align-items: center;
      padding: 33px 0px 0px;
      opacity: 0;
  }
  .section6 .card2 {
      height: 603px;
      width: 326px;
      opacity:0;
      box-shadow: 0px 141px 39px rgba(0, 82, 133, 0), 0px 90px 36px rgba(0, 82, 133, 0.01), 0px 51px 30px rgba(0, 82, 133, 0.03), 0px 23px 23px rgba(0, 82, 133, 0.04), 0px 6px 12px rgba(0, 82, 133, 0.05);
      border-radius: 32px;
      background: linear-gradient(164.27deg, #112c46, #12172b 49.52%, #1a466b);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      padding: 40px;
      box-sizing: border-box;
      position: relative;
      isolation: isolate;
      gap: 20px;
  }
  .section6 .frame-container {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      z-index: 0;
      flex-shrink: 0;
      color: #fefefe;
  }
  .section6 .frame-child {
      width: 50px;
      height: 50px;
      background: rgba(231, 245, 254, 0.20);
      display:flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      max-height: 100%;
  }
  .section6 .vip-lounge-table-parent {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
  }
  .section6 .vip-lounge-table {
      position: relative;
      line-height: 130%;
      font-weight: 800;
  }
  .section6 .elevate-your-groups {
      position: relative;
      font-size: 12px;
      line-height: 150%;
      font-weight: 300;
      color: #bde5fd;
      text-align: left;
  }
  .section6 .parent {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 4px;
      flex-direction: row;
      font-size: 40px;
  }
  .section6 .div {
      position: relative;
      line-height: 130%;
      font-weight: 900;
  }
  .section6 .up-to-6-people-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 0px;
      font-size: 14px;
      color: #bde5fd;
  }
  .section6 .frame-item {
      align-self: stretch;
      height: 1px;
      position: relative;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      box-sizing: border-box;
  }
  .section6 .frame-div {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      text-align: left;
      font-size: 12px;
      font-family: Poppins;
  }
  .section6 .frame-parent2 {
      align-self: stretch;
      display: flex;
      align-items: center;
      gap: 8px;
  }
  .section6 .frame-inner {
      width: 14px;
      height: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      max-height: 100%;
      border-radius: 61px;
      background: #e7f5fe;
  }
  .section6 .everything-in-all-inclusive {
      flex: 1;
      position: relative;
      line-height: 160%;
      font-weight: 500;
  }
  .section6 .default {
      align-self: stretch;
      border-radius: 12px;
      background-color: #fefefe;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px;
      gap: 12px;
      z-index: 1;
      flex-shrink: 0;
      text-align: left;
      font-size: 16px;
  }
  .section6 .label {
      position: relative;
      letter-spacing: 0.01em;
      line-height: 150%;
  }
  .section6 .essentials-arrow-right {
      width: 18px;
      position: relative;
      max-height: 100%;
  }
  .section6 .most-exclusive-wrapper {
      margin: 0 !important;
      position: absolute;
      top: 20px;
      left: 195px;
      border-radius: 46px;
      background: linear-gradient(90deg, #fad547, #f28918);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px;
      z-index: 2;
      flex-shrink: 0;
      font-size: 10px;
  }
  .section6 .card3 {
      height: 603px;
      width: 317px;
      box-shadow: 0px 141px 39px rgba(0, 82, 133, 0), 0px 90px 36px rgba(0, 82, 133, 0.01), 0px 51px 30px rgba(0, 82, 133, 0.03), 0px 23px 23px rgba(0, 82, 133, 0.04), 0px 6px 12px rgba(0, 82, 133, 0.05);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(250, 250, 250, 0.16));
      border: 1px solid rgba(255, 255, 255, 0.32);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      padding: 40px;
      gap: 20px;
      color: #fff;
  }
  .section6 .frame-parent7 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
  }
  .section6 .the-ultimate-afternoon {
      position: relative;
      font-size: 12px;
      line-height: 150%;
      font-weight: 300;
      color: #d9d9d9;
      text-align: left;
  }
  .section6 .person-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 0px;
      font-size: 14px;
      color: #d9d9d9;
  }
  .section6 .person {
      position: relative;
      line-height: 130%;
      font-weight: 600;
  }
  .section6 .line-div {
      align-self: stretch;
      height: 1px;
      position: relative;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
  }
  .section6 .default2 {
      align-self: stretch;
      box-shadow: 0px 0px 17.7px rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      background-color: #e7f5fe;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px;
      gap: 12px;
      text-align: left;
      font-size: 16px;
      color: #0f6cbd;
  }
  .section6 .traffic-light-with-maybe-messa-icon {
      width: 211.6px;
      position: absolute;
      margin: 0 !important;
      top: 64px;
      left: 482px;
      max-height: 100%;
      object-fit: cover;
      z-index: 2;
      flex-shrink: 0;
  }




/* ============================================
   End Section6
   ============================================ */


/* ============================================
   Start Section7
   ============================================ */

   .section7 {
      min-height: 100vh;
      padding:100px 0px;
      display:flex;
      align-items: center;
      justify-content: center;
   }
   .section7 .contain {
      width: 100%;
      max-width: 1200px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 64px;
      text-align: center;
      font-size: 14px;
      color: #0f6cbd;
      font-family: Inter;
  }
  .section7 .section-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
  }
  .section7 .what-to-expect {
      position: relative;
      letter-spacing: 0.3em;
      line-height: 140%;
      text-transform: uppercase;
      font-weight: 600;
  }
  .section7 .section-title {
      position: relative;
      font-size: 48px;
      letter-spacing: -0.02em;
      line-height: 120%;
      font-weight: 900;
      color: #fff;
  }
  .section7 .unforgettable-afternoon {
      background: linear-gradient(90deg, #45b7fc, #458bf9 49.04%, #4657f5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .section7 .section-description {
      width: 589px;
      position: relative;
      font-size: 18px;
      line-height: 160%;
      font-weight: 300;
      font-family: Poppins;
      color: #b8c0e0;
      display: inline-block;
  }
  .section7 .cards-wrapper {
      align-self: stretch;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-content: start;
      gap: 40px;
      font-size: 18px;
      color: #f5f7ff;
  }
  .section7 .card {
      box-shadow: 0px 141px 39px rgba(0, 0, 0, 0), 0px 90px 36px rgba(0, 0, 0, 0.01), 0px 51px 30px rgba(0, 0, 0, 0.03), 0px 23px 23px rgba(0, 0, 0, 0.04), 0px 6px 12px rgba(0, 0, 0, 0.05);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 40px;
      gap: 40px;
      grid-column: 1;
      grid-row: 1;
  }
  .section7 .frame-parent {
      align-self: stretch;
      display: flex;
      align-items: center;
      gap: 24px;
  }
  .section7 .frame-child {
      height: 60px;
      width: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: rgba(231, 245, 254, 0.12);
      border-radius: 16px;
  }
  .section7 .time-parent {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
  }
  .section7 .time {
      position: relative;
      line-height: 130%;
      font-weight: 800;
  }
  .section7 .c7f9f6c6-22b2-4e44-99af-68d805-icon {
      align-self: stretch;
      height: 260px;
      position: relative;
      border-radius: 12px;
      max-width: 100%;
      overflow: hidden;
      flex-shrink: 0;
      object-fit: cover;
  }
  .section7 .card2 {
      box-shadow: 0px 141px 39px rgba(0, 0, 0, 0), 0px 90px 36px rgba(0, 0, 0, 0.01), 0px 51px 30px rgba(0, 0, 0, 0.03), 0px 23px 23px rgba(0, 0, 0, 0.04), 0px 6px 12px rgba(0, 0, 0, 0.05);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 40px;
      gap: 40px;
      grid-column: 2;
      grid-row: 1;
  }
  .section7 .bvaro-punta-cana {
      align-self: stretch;
      position: relative;
      font-size: 14px;
      line-height: 150%;
      font-weight: 300;
      color: #b8c0e0;
      text-align: left;
  }
  .section7 .card3 {
      box-shadow: 0px 141px 39px rgba(0, 0, 0, 0), 0px 90px 36px rgba(0, 0, 0, 0.01), 0px 51px 30px rgba(0, 0, 0, 0.03), 0px 23px 23px rgba(0, 0, 0, 0.04), 0px 6px 12px rgba(0, 0, 0, 0.05);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 40px;
      gap: 40px;
      grid-column: 1;
      grid-row: 2;
  }
  .section7 .card4 {
      box-shadow: 0px 141px 39px rgba(0, 0, 0, 0), 0px 90px 36px rgba(0, 0, 0, 0.01), 0px 51px 30px rgba(0, 0, 0, 0.03), 0px 23px 23px rgba(0, 0, 0, 0.04), 0px 6px 12px rgba(0, 0, 0, 0.05);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 40px;
      gap: 40px;
      grid-column: 2;
      grid-row: 2;
  }
  .section7 .default {
      box-shadow: 0px 6px 16px rgba(255, 178, 62, 0.5);
      border-radius: 60px;
      background-color: #ffb23e;
      display: flex;
      align-items: center;
      padding: 16px 32px;
      text-align: left;
      font-size: 16px;
      color: #000;
  }
  .section7 .label {
      position: relative;
      letter-spacing: 0.01em;
      line-height: 150%;
  }



   /* ============================================
   End Section7
   ============================================ */



   /* ============================================
   Start Section8
   ============================================ */


   .section8{
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   .section8 .contain {
      width: 100%;
      max-width: 1200px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      isolation: isolate;
      gap: 64px;
      text-align: center;
      font-size: 14px;
      color: #0f6cbd;
      font-family: Inter;
  }
  .section8 .contain-child {
      width: 632px;
      height: 632px;
      position: absolute;
      margin: 0 !important;
      top: -181px;
      left: 809px;
      filter: blur(200px);
      border-radius: 50%;
      background-color: #45b7fc;
      opacity: 0.1;
      z-index: 0;
      flex-shrink: 0;
  }
  .section8 .contain-item {
      width: 632px;
      height: 632px;
      position: absolute;
      margin: 0 !important;
      top: -1613px;
      left: -267px;
      filter: blur(200px);
      border-radius: 50%;
      background-color: #45b7fc;
      opacity: 0.1;
      z-index: 1;
      flex-shrink: 0;
  }
  .section8 .contain-inner {
      width: 632px;
      height: 632px;
      position: absolute;
      margin: 0 !important;
      top: 324px;
      left: -293px;
      filter: blur(200px);
      border-radius: 50%;
      background-color: #45b7fc;
      opacity: 0.1;
      z-index: 2;
      flex-shrink: 0;
  }
  .section8 .section-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      z-index: 3;
      flex-shrink: 0;
  }
  .section8 .what-to-expect {
      position: relative;
      letter-spacing: 0.3em;
      line-height: 140%;
      text-transform: uppercase;
      font-weight: 600;
  }
  .section8 .section-title {
      position: relative;
      font-size: 48px;
      letter-spacing: -0.02em;
      line-height: 120%;
      font-weight: 900;
      text-align: left;
      color: #f5f7ff;
  }
  .section8 .experience {
      background: linear-gradient(90deg, #45b7fc 50.48%, #4657f5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .section8 .cards-wrapper {
      width: 1050px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      z-index: 4;
      flex-shrink: 0;
      font-size: 24px;
      color: #f5f7ff;
  }
  .section8 .card {
      align-self: stretch;
      backdrop-filter: blur(24px);
      border-radius: 24px;
      background-color: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 40px;
      gap: 20px;
  }
  .section8 .what-do-red {
      position: relative;
      letter-spacing: -0.02em;
      line-height: 120%;
      font-weight: 600;
  }
  .section8 .essentials-arrow {
      width: 30px;
      position: relative;
      max-height: 100%;
  }
  .section8 .have-more-questions-contact-container {
      align-self: stretch;
      position: relative;
      font-size: 14px;
      line-height: 140%;
  }
  .section8 .contact-us {
      font-weight: 500;
      color: #45b7fc;
  }



/* ============================================
   End Section8
   ============================================ */

/* ============================================
   Start Section9
   ============================================ */


   .section9 {
      padding: 100px 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .section9 .contain {
      width: 100%;
      max-width: 1200px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      isolation: isolate;
      gap: 64px;
      text-align: center;
      font-size: 48px;
      color: #f5f7ff;
      font-family: Inter;
  }
  .section9 .contain-child {
      width: 632px;
      height: 632px;
      position: absolute;
      margin: 0 !important;
      top: -181px;
      left: 809px;
      filter: blur(400px);
      border-radius: 50%;
      background-color: #45b7fc;
      opacity: 0.05;
      z-index: 0;
      flex-shrink: 0;
  }
  .section9 .contain-item {
      width: 632px;
      height: 632px;
      position: absolute;
      margin: 0 !important;
      top: -1613px;
      left: -267px;
      filter: blur(400px);
      border-radius: 50%;
      background-color: #45b7fc;
      opacity: 0.05;
      z-index: 1;
      flex-shrink: 0;
  }
  .section9 .contain-inner {
      width: 632px;
      height: 632px;
      position: absolute;
      margin: 0 !important;
      top: 324px;
      left: -293px;
      filter: blur(400px);
      border-radius: 50%;
      background-color: #45b7fc;
      opacity: 0.05;
      z-index: 2;
      flex-shrink: 0;
  }
  .section9 .section-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      isolation: isolate;
      gap: 12px;
      z-index: 3;
      flex-shrink: 0;
  }
  .section9 .section-header-child {
      width: 25.64%;
      position: absolute;
      margin: 0 !important;
      height: 54.55%;
      top: -6.36%;
      right: 37.18%;
      bottom: 51.82%;
      left: 37.18%;
      filter: blur(40px);
      max-width: 100%;
      overflow: hidden;
      max-height: 100%;
      opacity: 0.5;
      z-index: 0;
      flex-shrink: 0;
  }
  .section9 .section-header-item {
      width: 92px;
      height: 92px;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
  }
  .section9 .section-title {
      position: relative;
      letter-spacing: -0.02em;
      line-height: 120%;
      font-weight: 900;
      z-index: 2;
      flex-shrink: 0;
  }
  .section9 .start-here {
      background: linear-gradient(90deg, #45b7fc 50.48%, #327af2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .section9 .cards-wrapper {
      align-self: stretch;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-content: start;
      gap: 24px;
      z-index: 4;
      flex-shrink: 0;
  }
  .section9 .card {
      box-shadow: 0px 162px 45px rgba(0, 82, 133, 0), 0px 104px 41px rgba(0, 82, 133, 0.01), 0px 58px 35px rgba(0, 82, 133, 0.03), 0px 26px 26px rgba(0, 82, 133, 0.04), 0px 6px 14px rgba(0, 82, 133, 0.05);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.12);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 8px;
      grid-column: 1;
      grid-row: 1;
  }
  .section9 .outdoor-portrait-adult-happy-m-icon {
      align-self: stretch;
      height: 436px;
      position: relative;
      border-radius: 16px;
      max-width: 100%;
      overflow: hidden;
      flex-shrink: 0;
      object-fit: cover;
  }
  .section9 .card2 {
      box-shadow: 0px 163px 46px rgba(0, 82, 133, 0), 0px 105px 42px rgba(0, 82, 133, 0.01), 0px 59px 35px rgba(0, 82, 133, 0.03), 0px 26px 26px rgba(0, 82, 133, 0.04), 0px 7px 14px rgba(0, 82, 133, 0.05);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.12);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 8px;
      grid-column: 2;
      grid-row: 1;
  }
  .section9 .card3 {
      box-shadow: 0px 166px 46px rgba(0, 82, 133, 0), 0px 106px 42px rgba(0, 82, 133, 0.01), 0px 60px 36px rgba(0, 82, 133, 0.03), 0px 27px 27px rgba(0, 82, 133, 0.04), 0px 7px 15px rgba(0, 82, 133, 0.05);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(250, 250, 250, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.12);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 8px;
      grid-column: 3;
      grid-row: 1;
  }




/* ============================================
   End Section9
   ============================================ */


/* ============================================
   Start Section10
   ============================================ */


   .section10{
    min-height: 100vh;
    padding: 100px 0;
    display:flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/section10.png');
    background-size: cover;
    background-position: center;
   }
   .section10 .frame-parent {
      width: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 100px;
      text-align: left;
      font-size: 14px;
      color: #fff;
      font-family: Inter;
  }
  .section10 .ranking-es-1-parent {
      align-self: stretch;
      backdrop-filter: blur(24px);
      background-color: rgba(255, 255, 255, 0.21);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 60px;
      gap: 40px;
  }
  .section10 .ranking-es-1-icon {
      width: 262px;
      position: relative;
      max-height: 100%;
      object-fit: cover;
  }
  .section10 .wedding-wire2018-2021-1-icon {
      width: 82px;
      position: relative;
      max-height: 100%;
      object-fit: cover;
  }
  .section10 .ltg-award-2021-2022-1-icon {
      width: 204px;
      position: relative;
      max-height: 100%;
      object-fit: cover;
  }
  .section10 .viator2022-1-parent {
      height: 82px;
      width: 214.4px;
      position: relative;
  }
  .section10 .viator2022-1-icon {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 71.5px;
      height: 82px;
      object-fit: cover;
  }
  .section10 .viator2023-1-icon {
      position: absolute;
      top: 0px;
      left: 71.47px;
      width: 71.5px;
      height: 82px;
      object-fit: cover;
  }
  .section10 .viator2024-1-icon {
      position: absolute;
      top: 0px;
      left: 142.94px;
      width: 71.5px;
      height: 82px;
      object-fit: cover;
  }
  .section10 .award2016-1-icon {
      width: 248px;
      position: relative;
      max-height: 100%;
      object-fit: cover;
  }
  .section10 .card-parent {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 100px;
  }
  .section10 .card {
      max-width: 1200px;
      width: 100%;
      box-shadow: 0px 440px 123px rgba(0, 0, 0, 0), 0px 282px 113px rgba(0, 0, 0, 0.01), 0px 158px 95px rgba(0, 0, 0, 0.03), 0px 70px 70px rgba(0, 0, 0, 0.04), 0px 18px 39px rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(25px);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(250, 250, 250, 0.08));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-sizing: border-box;
      overflow: hidden;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-content: start;
      gap: 60px;
      padding-left: 80px;
      padding-right: 80px;
      padding-top: 80px;
      padding-bottom: 80px;
  }
  .section10 .card-child {
      width: 358px;
      height: 358px;
      position: absolute;
      margin: 0 !important;
      top: -77px;
      left: 836px;
      filter: blur(200px);
      border-radius: 50%;
      background-color: #45b7fc;
      opacity: 0.14;
      grid-column: 2;
      flex-shrink: 0;
  }
  .section10 .section-header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 50px;
      grid-column: 1;
      height: 376px;
      flex-shrink: 0;
  }
  .section10 .what-to-expect-parent {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
  }
  .section10 .what-to-expect {
      position: relative;
      letter-spacing: 0.3em;
      line-height: 140%;
      text-transform: uppercase;
      font-weight: 600;
      color: #45b7fc;
      text-align: center;
  }
  .section10 .section-title {
      width: 398px;
      position: relative;
      font-size: 48px;
      letter-spacing: -0.02em;
      line-height: 120%;
      font-weight: 900;
      display: inline-block;
  }
  .section10 .section-description {
      align-self: stretch;
      position: relative;
      line-height: 160%;
      font-weight: 300;
      font-family: Poppins;
  }
  .section10 .default {
      box-shadow: 0px 0px 17.7px rgba(255, 178, 62, 0.5);
      border-radius: 59px;
      background-color: #ffb23e;
      display: flex;
      align-items: center;
      padding: 16px 32px;
      gap: 12px;
      font-size: 16px;
      color: #000;
  }
  .section10 .label {
      position: relative;
      letter-spacing: 0.01em;
      line-height: 150%;
  }
  .section10 .essentials-arrow-right {
      width: 18px;
      position: relative;
      max-height: 100%;
  }
  .section10 .card2 {
      border-radius: 32px;
      background-color: rgba(255, 255, 255, 0.16);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 40px;
      gap: 24px;
      grid-column: 2;
      height: 392px;
      flex-shrink: 0;
      text-align: center;
      color: #45b7fc;
  }
  .section10 .get-in-touch {
      position: relative;
      font-size: 24px;
      line-height: 130%;
      font-weight: 800;
      color: #fefefe;
  }
  .section10 .frame-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 25px;
  }
  .section10 .frame-container {
      align-self: stretch;
      display: flex;
      align-items: center;
      gap: 12px;
  }
  .section10 .frame-child {
      width: 46px;
      height: 46px;
      border-radius: 56px;
      background: rgba(231, 245, 254, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      max-height: 100%;
  }
  .section10 .email-us-parent {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }
  .section10 .email-us {
      position: relative;
      line-height: 130%;
  }
  .section10 .operacioneshispaniolahotmail {
      position: relative;
      line-height: 150%;
      font-weight: 300;
      color: #fff;
      text-align: left;
  }
  .section10 .card-item {
      align-self: stretch;
      height: 1px;
      position: relative;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      box-sizing: border-box;
  }
  .section10 .wwweclipsepuntacanacom {
      position: relative;
      line-height: 150%;
      font-weight: 600;
      text-align: left;
  }
  .section10 .eclipse-punta-cana-all-rights-parent {
      width: 100vw;
      max-width: 1200px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-size: 12px;
  }
  .section10 .eclipse-punta-cana {
      position: relative;
      line-height: 140%;
  }
  .section10 .group-icon {
      height: 47.7px;
      width: 135.9px;
      position: relative;
  }
  .section10 .frame-parent3 {
      display: flex;
      align-items: center;
      gap: 16px;
  }
  .section10 .frame-icon {
      width: 40px;
      height: 40px;
      border-radius: 122px;
      border: 1px solid #45B7FC;
      background: rgba(69, 183, 252, 0.20);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 122px;
      max-height: 100%;
  }




/* ============================================
   End Section10
   ============================================ */

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flota-grid,
  .traffic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .flota-image {
    order: -1;
  }

  .traffic-visual {
    order: -1;
  }

  .semaforo-body {
    flex-direction: row;
    border-radius: 60px;
    padding: 28px 30px;
  }

  .semaforo-pole {
    display: none;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: 0.4s ease;
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-btn {
    display: none;
  }

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

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

  .stats-grid {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    width: 45%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .semaforo-light {
    width: 60px;
    height: 60px;
  }

  .traffic-dot {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Fade in from left / right ---------- */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Scale in ---------- */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Glow pulse for traffic light dots ---------- */
.section3 .card-child svg {
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(69, 183, 252, 0.3)); }
  50% { filter: drop-shadow(0 0 16px rgba(69, 183, 252, 0.6)); }
}

/* Red glow for Taken card */
.section3 .card .card-child svg {
  animation: glowRed 3s ease-in-out infinite;
}

@keyframes glowRed {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 59, 59, 0.3)); }
  50% { filter: drop-shadow(0 0 18px rgba(255, 59, 59, 0.6)); }
}

/* Green glow */
.section3 .card4 .card-child svg {
  animation: glowGreen 3s ease-in-out infinite;
}

@keyframes glowGreen {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(56, 161, 105, 0.3)); }
  50% { filter: drop-shadow(0 0 18px rgba(56, 161, 105, 0.6)); }
}

/* Yellow/amber glow */
.section3 .card6 .card-child svg {
  animation: glowYellow 3s ease-in-out infinite;
}

@keyframes glowYellow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.3)); }
  50% { filter: drop-shadow(0 0 18px rgba(245, 166, 35, 0.6)); }
}

/* ---------- Floating animation ---------- */
.section6 .traffic-light-with-maybe-messa-icon {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Hero content entrance ---------- */
.hero-content .hero-tag {
  animation: fadeInDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-content .hero-title {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-content .hero-subtitle {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero-content .time-1-parent {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.hero-content .default-parent {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

.hero-content .frame-parent {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
}

.hero-content .el-catamarn-ms-grande-del-ca-parent {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.3s both;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Card hover lift effects ---------- */
.section1 .card,
.section1 .card2,
.section1 .card3,
.section3 .card,
.section3 .card4,
.section3 .card6 {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

.section1 .card:hover,
.section1 .card2:hover,
.section1 .card3:hover,
.section3 .card:hover,
.section3 .card4:hover,
.section3 .card6:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.section3 .card2:hover,
.section3 .card3:hover,
.section3 .card5:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ---------- Button shimmer effect ---------- */
.default,
.nav-btn {
  position: relative;
  overflow: hidden;
}

.default::after,
.nav-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ---------- Section title gradient animation ---------- */
.section1 .section-title .good-vibes,
.section3 .section-title .color,
.section5 .section-title .caribean-vibes,
.section6 .section-title .experience {
  background-size: 200% auto;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ---------- Smooth scroll indicator pulse ---------- */
.hero-scroll-line {
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------- Active nav link ---------- */
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  width: 100%;
}

/* ---------- Counter number pop ---------- */
.frame-parent .div {
  transition: transform 0.3s ease;
}

/* ---------- Section2 feature items stagger ---------- */
.section2 .frame-group .frame-container,
.section2 .frame-group .frame-div {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

.section2 .frame-group .frame-container:hover,
.section2 .frame-group .frame-div:hover {
  transform: translateY(-4px);
}

/* ---------- Section4 quote card ---------- */
.section4 .card {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease;
}

.section4 .card:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* ---------- Section6 pricing cards ---------- */
.section6 .card-wrapper {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

.section6 .card-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }
}
