/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  width: 100%;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 0 !important;
  width: 100%;
  position: relative;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
}

.nav {
  background: transparent !important;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  padding: 20px 0;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(0, 173, 255, 0.2);
  padding: 15px 0;
}

.nav.scrolled .logo-sr,
.nav.scrolled .logo-sra {
  color: #1e3c4e;
}

.nav.scrolled .logo-e {
  color: #00adff;
}

.nav.scrolled .nav__menu a {
  color: #333;
}

.nav:not(.scrolled) .logo-sr,
.nav:not(.scrolled) .logo-sra {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.nav:not(.scrolled) .logo-e {
  color: #17ffbf;
  text-shadow: 0 0 10px rgba(23, 255, 191, 0.5);
}

.nav:not(.scrolled) .logo-white {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #fff, #17ffbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav:not(.scrolled) .nav__menu a {
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.nav:not(.scrolled) .hamburger-line {
  background: linear-gradient(45deg, #fff, #17ffbf);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* CSS Logo */
.logo-css {
  text-decoration: none;
  margin-left: 30px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
}

.logo-sr {
  color: #1e3c4e;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.logo-e {
  color: #00adff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 3px;
  position: relative;
  top: -2px;
}

.logo-sra {
  color: #1e3c4e;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.logo-white {
  background: linear-gradient(45deg, #00adff, #17ffbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  position: relative;
  margin-left: 8px;
}

.logo-white::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo-css:hover .logo-white::after {
  transform: scaleX(1);
}

.logo-css:hover .logo-sr,
.logo-css:hover .logo-sra {
  color: #00adff;
  transform: translateY(-2px);
}

.logo-css:hover .logo-white {
  animation: gradient-shift 2s ease infinite;
}

.nav__toggle {
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #1e3c4e, #00adff);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

#nav__checkbox:checked ~ label.nav__toggle .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: linear-gradient(45deg, #00adff, #17ffbf);
}

#nav__checkbox:checked ~ label.nav__toggle .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

#nav__checkbox:checked ~ label.nav__toggle .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background: linear-gradient(45deg, #00adff, #17ffbf);
}

.close,
input[type="checkbox"] {
  display: none;
}

.nav__menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 1rem;
  list-style: none;
}

.nav__menu li {
  list-style: none;
  display: none;
}

.nav__menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav__menu a:hover {
  color: #00adff;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  transition: width 0.3s ease;
}

.nav__menu a:hover::after {
  width: 100%;
}

#nav__checkbox:checked ~ ul.nav__menu li {
  display: block;
}

#nav__checkbox:checked ~ label.nav__toggle .hamburger {
  display: none;
}

#nav__checkbox:checked ~ label.nav__toggle .close {
  display: block;
}

.btn-reserva {
  font-size: 1.1rem;
  border: 2px solid #00adff;
  padding: 15px 35px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #00adff;
  background: transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 173, 255, 0.2);
  margin-top: 20px;
}

.btn-reserva:hover {
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 173, 255, 0.5), 0 0 20px rgba(23, 255, 191, 0.3);
  text-decoration: none;
  border-color: transparent;
}

.btn-reserva.btn-primary {
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 173, 255, 0.4);
}

.btn-reserva.btn-primary:hover {
  background: linear-gradient(45deg, #17ffbf, #00adff);
  box-shadow: 0 10px 30px rgba(0, 173, 255, 0.6), 0 0 25px rgba(23, 255, 191, 0.4);
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  margin: 0 !important;
  padding: 0 !important;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  position: relative;
  overflow: hidden;
  top: 0;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  box-sizing: border-box;
}

.hero-banner .container,
.hero-banner .container-fluid,
.hero-banner .row {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.hero-carousel {
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0;
  box-sizing: border-box;
}

.hero-carousel.owl-carousel {
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  left: 0 !important;
}

.hero-carousel .owl-wrapper,
.hero-carousel .owl-wrapper-outer {
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-carousel .owl-stage-outer {
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  width: 100% !important;
  left: 0 !important;
  position: relative;
}

.hero-carousel .owl-stage {
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
}

.hero-carousel .owl-item {
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  flex-shrink: 0;
  left: 0 !important;
  position: relative;
}

.hero-slide {
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0 !important;
  right: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  background: linear-gradient(135deg, rgba(30, 60, 78, 0.8), rgba(2, 82, 82, 0.8));
  z-index: 1;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 173, 255, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 173, 255, 0.6);
  color: #fff;
  text-decoration: none;
}

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

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 80px 0;
}

section:first-of-type:not(.hero-banner) {
  padding-top: 0;
}

.hero-banner + section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 0;
  margin-top: 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3c4e;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-top: 20px;
}

/* ============================================
   PROPERTY SECTION
   ============================================ */
.property-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.property-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.property-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.property-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.property-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(0, 173, 255, 0.4);
  z-index: 2;
}

.property-badge i {
  margin-right: 8px;
}

.property-content {
  padding-left: 50px;
}

.property-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e3c4e;
  margin-bottom: 25px;
  line-height: 1.2;
}

.property-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.property-highlights {
  margin: 40px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 173, 255, 0.15);
}

.highlight-item i {
  font-size: 2rem;
  color: #00adff;
  min-width: 40px;
}

.highlight-item strong {
  display: block;
  color: #1e3c4e;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.highlight-item span {
  color: #666;
  font-size: 0.95rem;
}

.btn-property {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 173, 255, 0.4);
  margin-top: 20px;
}

.btn-property:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 173, 255, 0.6);
  color: #fff;
  text-decoration: none;
}

/* ============================================
   ACCOMMODATIONS SECTION
   ============================================ */
.accommodations-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.accommodation-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  height: 100%;
}

.accommodation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.accommodation-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.accommodation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.accommodation-card:hover .accommodation-image img {
  transform: scale(1.1);
}

.accommodation-content {
  padding: 35px;
}

.accommodation-content h3 {
  font-size: 1.8rem;
  color: #1e3c4e;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.accommodation-content h3 i {
  color: #00adff;
  font-size: 1.5rem;
}

.accommodation-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.accommodation-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accommodation-features li {
  padding: 10px 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.accommodation-features li i {
  color: #17ffbf;
  font-size: 1rem;
}

/* ============================================
   LEISURE SECTION
   ============================================ */
.leisure-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.leisure-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.leisure-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 60, 78, 0.85), rgba(2, 82, 82, 0.85));
  z-index: 1;
}

.leisure-section .container {
  position: relative;
  z-index: 2;
}

.leisure-section .section-header {
  color: #fff;
}

.leisure-section .section-title,
.leisure-section .section-subtitle {
  color: #fff;
}

.leisure-carousel .leisure-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.leisure-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.leisure-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: #fff;
}

.leisure-caption h4 {
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.leisure-caption i {
  color: #17ffbf;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.location-content {
  padding-right: 50px;
}

.location-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e3c4e;
  margin-bottom: 25px;
}

.location-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.location-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.location-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.location-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 173, 255, 0.15);
}

.location-feature i {
  font-size: 1.8rem;
  color: #00adff;
  min-width: 30px;
}

.location-feature span {
  color: #555;
  font-weight: 500;
}

.btn-location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 173, 255, 0.4);
}

.btn-location:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 173, 255, 0.6);
  color: #fff;
  text-decoration: none;
}

.location-images {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-image-item {
  height: 500px;
  overflow: hidden;
}

.location-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   MODERN GALLERY SECTION
   ============================================ */
.modern-gallery-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.modern-gallery {
  margin-top: 50px;
}

.gallery-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  aspect-ratio: 1;
  background: #fff;
  transition: all 0.4s ease;
}

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

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 173, 255, 0.85), rgba(23, 255, 191, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 3rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FULL GALLERY SECTION
   ============================================ */
.full-gallery-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-thumb {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  aspect-ratio: 1;
  background: #fff;
  transition: all 0.4s ease;
}

.gallery-thumb:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 173, 255, 0.25);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

.thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 173, 255, 0.85), rgba(23, 255, 191, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-thumb:hover .thumb-overlay {
  opacity: 1;
}

.thumb-overlay i {
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-content {
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  position: relative;
}

.lightbox-carousel {
  height: 100%;
}

.lightbox-item {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-item img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  padding: 20px;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev i,
.lightbox-next i {
  color: #fff;
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.amenity-item {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.amenity-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 173, 255, 0.2);
  border-color: rgba(0, 173, 255, 0.3);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
  transform: scale(1.1) rotate(5deg);
}

.amenity-icon i {
  font-size: 2rem;
  color: #fff;
}

.amenity-item h4 {
  font-size: 1.3rem;
  color: #1e3c4e;
  margin-bottom: 10px;
  font-weight: 700;
}

.amenity-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.comodidade-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
}

.comodidade-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3c4e;
  margin-bottom: 15px;
}

.comodidade-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   CAROUSEL SECTION
   ============================================ */
.carousel-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,173,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.carousel-section .container {
  position: relative;
  z-index: 1;
}

.espaco-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 173, 255, 0.1);
  transition: all 0.4s ease;
  background: #fff;
  padding: 5px;
}

.espaco-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 25px rgba(0, 173, 255, 0.2);
}

.espaco-item img {
  width: 100%;
  height: 400px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.espaco-item:hover img {
  transform: scale(1.08);
}

.espaco-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
  padding: 40px 25px 25px;
  color: #fff;
  border-radius: 0 0 15px 15px;
}

.espaco-caption h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

/* ============================================
   CONTATO SECTION
   ============================================ */
.contato-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contato-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,173,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.contato-section .container {
  position: relative;
  z-index: 1;
}

.contato-card {
  text-align: center;
  padding: 50px 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 173, 255, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  margin-bottom: 30px;
  border: 2px solid rgba(0, 173, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contato-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 173, 255, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.contato-card:hover::before {
  transform: scale(1);
}

.contato-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 173, 255, 0.25), 0 0 30px rgba(23, 255, 191, 0.15);
  border-color: rgba(0, 173, 255, 0.3);
}

.contato-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.contato-card:hover .contato-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.contato-icon.wpp {
  background: linear-gradient(45deg, #008030, #00bf47);
}

.contato-icon.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.contato-icon.mail {
  background: linear-gradient(45deg, #264bec, #02b378);
}

.contato-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e3c4e;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.contato-card p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.btn-contato {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 173, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.btn-contato:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 173, 255, 0.6), 0 0 25px rgba(23, 255, 191, 0.4);
  color: #fff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, #1e3c4e, #025252);
  color: #fff;
  padding: 50px 0 30px;
}

.footer-content {
  text-align: center;
}

.footer-logo-css {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-css .logo-text {
  font-size: 2.5rem;
}

.footer-logo-css .logo-sr,
.footer-logo-css .logo-sra {
  color: #fff;
  font-size: 2.2rem;
}

.footer-logo-css .logo-e {
  color: #17ffbf;
}

.footer-logo-css .logo-white {
  color: #fff;
  font-size: 2.8rem;
  background: linear-gradient(45deg, #17ffbf, #00adff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-css:hover .logo-sr,
.footer-logo-css:hover .logo-sra {
  color: #17ffbf;
  transform: translateY(-2px);
}

.footer-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: linear-gradient(45deg, #00adff, #17ffbf);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 173, 255, 0.4);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(45deg, #008030, #00bf47);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 128, 48, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 128, 48, 0.7);
  color: #FFF;
  text-decoration: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(0, 128, 48, 0.5);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 128, 48, 0.8);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0, 128, 48, 0.5);
  }
}

/* ============================================
   OWL CAROUSEL CUSTOMIZATION
   ============================================ */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #00adff !important;
  border: none !important;
  padding: 15px 20px !important;
  font-size: 24px !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  background: linear-gradient(45deg, #00adff, #17ffbf) !important;
  color: #fff !important;
  transform: scale(1.1);
}

.owl-carousel .owl-nav button.owl-prev {
  left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -25px;
}

/* Hero Carousel Specific Styles */
.hero-carousel {
  position: relative;
}

.hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
  position: absolute;
  pointer-events: all;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: scale(1.1);
}

.hero-carousel .owl-nav button.owl-prev {
  left: 30px;
  right: auto;
}

.hero-carousel .owl-nav button.owl-next {
  right: 30px;
  left: auto;
}

.hero-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  margin-top: 0;
}

.hero-carousel .owl-dots button.owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4) !important;
  margin: 0 6px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-carousel .owl-dots button.owl-dot.active {
  background: linear-gradient(45deg, #00adff, #17ffbf) !important;
  border-color: #fff;
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(0, 173, 255, 0.6);
}

/* General Carousel Dots */
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel:not(.hero-carousel) .owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc !important;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-carousel:not(.hero-carousel) .owl-dots button.owl-dot.active {
  background: linear-gradient(45deg, #00adff, #17ffbf) !important;
  transform: scale(1.3);
}

/* ============================================
   NAVBAR SCROLL EFFECT (Already defined above)
   ============================================ */

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0 !important;
  right: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh !important;
  z-index: 1;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle infinite linear;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, #1e3c4e 0%, #025252 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-banner + .stats-section {
  padding-top: 80px;
  margin-top: 0 !important;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-section .section-header {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.stats-section .section-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-section .section-title::after {
  background: linear-gradient(45deg, #00adff, #17ffbf);
}

.stats-section .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.stats-container {
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.stat-card:hover::before {
  transform: scale(1);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 173, 255, 0.3);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  position: relative;
  z-index: 1;
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 173, 255, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 173, 255, 0);
  }
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

/* Stars Rating Animation */
.stars-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.stars-rating i {
  font-size: 1.5rem;
  color: #ffd700;
  animation: star-twinkle 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stars-rating i:nth-child(1) {
  animation-delay: 0s;
}

.stars-rating i:nth-child(2) {
  animation-delay: 0.2s;
}

.stars-rating i:nth-child(3) {
  animation-delay: 0.4s;
}

.stars-rating i:nth-child(4) {
  animation-delay: 0.6s;
}

.stars-rating i:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes star-twinkle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
    filter: brightness(1.5);
  }
}

.stars-rating i:hover {
  transform: scale(1.3);
  color: #ffed4e;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  transition: all 0.3s ease;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.fade-in-up {
  transform: translateY(50px);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   IMAGE SHINE EFFECT
   ============================================ */
.image-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.sobre-image-wrapper:hover .image-shine {
  left: 100%;
}

.sobre-image-wrapper {
  position: relative;
  overflow: hidden;
}

/* ============================================
   ENHANCED CARDS
   ============================================ */
.comodidade-card {
  position: relative;
  overflow: hidden;
}

.comodidade-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.comodidade-card:hover::after {
  left: 100%;
}

.comodidade-icon {
  position: relative;
  overflow: hidden;
}

.comodidade-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.comodidade-card:hover .comodidade-icon::before {
  width: 200%;
  height: 200%;
}

/* ============================================
   GRADIENT ANIMATIONS
   ============================================ */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(30, 60, 78, 0.8), rgba(2, 82, 82, 0.8));
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
}

/* ============================================
   ENHANCED BUTTONS
   ============================================ */
.btn-hero,
.btn-reserva,
.btn-contato {
  position: relative;
  overflow: hidden;
}

.btn-hero::before,
.btn-reserva::before,
.btn-contato::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero:hover::before,
.btn-reserva:hover::before,
.btn-contato:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero span,
.btn-reserva span,
.btn-contato span {
  position: relative;
  z-index: 1;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.galeria-item img,
.espaco-item img,
.grid-item img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.galeria-item:hover img,
.espaco-item:hover img,
.grid-item:hover img {
  transform: scale(1.1) rotate(1deg);
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
section {
  position: relative;
}

section:not(.hero-banner)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 173, 255, 0.3), transparent);
  z-index: 1;
}

/* ============================================
   ENHANCED FOOTER
   ============================================ */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00adff, #17ffbf, transparent);
}

footer {
  position: relative;
}

/* ============================================
   FEATURE SECTIONS (CONVERSION SECTIONS)
   ============================================ */
.feature-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.feature-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  transition: transform 0.3s ease;
}

.feature-section:hover .feature-background {
  transform: scale(1.05);
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 60, 78, 0.85), rgba(2, 82, 82, 0.85));
  z-index: 1;
}

.feature-section.feature-left .feature-overlay {
  background: linear-gradient(90deg, rgba(30, 60, 78, 0.92) 0%, rgba(30, 60, 78, 0.75) 50%, rgba(30, 60, 78, 0.4) 100%);
}

.feature-section.feature-right .feature-overlay {
  background: linear-gradient(90deg, rgba(30, 60, 78, 0.4) 0%, rgba(30, 60, 78, 0.75) 50%, rgba(30, 60, 78, 0.92) 100%);
}

.feature-background {
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.feature-section:hover .feature-background {
  filter: brightness(0.8);
}

.feature-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 173, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-content:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(23, 255, 191, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 173, 255, 0.3);
  transform: translateY(-5px);
}

.feature-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 173, 255, 0.4);
}

.feature-badge i {
  margin-right: 8px;
}

.feature-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.feature-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #17ffbf;
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(23, 255, 191, 0.5);
}

.btn-feature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 45px;
  background: linear-gradient(45deg, #00adff, #17ffbf);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 173, 255, 0.5), 0 0 20px rgba(23, 255, 191, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-feature::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-feature:hover::before {
  width: 400px;
  height: 400px;
}

.btn-feature:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 173, 255, 0.7), 0 0 30px rgba(23, 255, 191, 0.5);
  color: #fff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-feature i {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
}

.btn-feature span {
  position: relative;
  z-index: 1;
}

.feature-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.feature-image-wrapper:hover {
  transform: scale(1.05) rotate(1deg);
}

.feature-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.feature-image-wrapper:hover img {
  transform: scale(1.1);
}

.feature-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 173, 255, 0.2), rgba(23, 255, 191, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-image-wrapper:hover::after {
  opacity: 1;
}

.feature-image-carousel-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.feature-image-carousel-wrapper .feature-image-wrapper {
  border-radius: 0;
  box-shadow: none;
}

.feature-image-carousel-wrapper .feature-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 767px) {
  .nav {
    padding: 12px 0;
  }

  .logo-css {
    margin-left: 15px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .logo-sr,
  .logo-sra {
    font-size: 1.2rem;
  }

  .logo-white {
    font-size: 1.5rem;
  }

  .hero-banner {
    margin-top: 0;
    height: 100vh;
    min-height: 400px;
  }

  .hero-slide {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }

  .btn-hero {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  section {
    padding: 50px 0;
  }

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

  .btn-reserva {
    display: none;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }

  .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .feature-section {
    padding: 60px 0;
    min-height: auto;
  }

  .feature-title {
    font-size: 2rem;
  }

  .feature-description {
    font-size: 1rem;
  }

  .feature-content {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .feature-image-wrapper img {
    height: 300px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 100%;
  }
  
  .feature-image-carousel-wrapper .feature-image-wrapper img {
    height: 300px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 100%;
  }

  .btn-feature {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .feature-background {
    background-attachment: scroll;
  }

  /* Property Section Responsive */
  .property-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .property-title {
    font-size: 2rem;
  }

  .property-description {
    font-size: 1rem;
  }

  .property-image {
    height: 350px;
  }

  /* Accommodations Responsive */
  .accommodation-content {
    padding: 25px;
  }

  .accommodation-content h3 {
    font-size: 1.4rem;
  }

  /* Location Section Responsive */
  .location-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .location-title {
    font-size: 2rem;
  }

  .location-description {
    font-size: 1rem;
  }

  .location-features {
    grid-template-columns: 1fr;
  }

  .location-image-item {
    height: 350px;
  }

  /* Modern Gallery Responsive */
  .gallery-main {
    grid-template-columns: 1fr;
  }

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

  /* Amenities Responsive */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .amenity-item {
    padding: 30px 20px;
  }

  /* Full Gallery Responsive */
  .full-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    padding: 15px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-content {
    width: 95%;
    height: 85vh;
  }

  .lightbox-item {
    height: 85vh;
  }

  .lightbox-item img {
    max-height: 85vh;
  }
}

@media only screen and (min-width: 768px) {
  .nav {
    padding: 18px 0;
  }

  .nav__toggle {
    display: none;
  }

  .nav__menu {
    flex-direction: row;
  }

  .nav__menu li {
    display: block;
  }

  .logo-text {
    font-size: 2rem;
  }

  .logo-sr,
  .logo-sra {
    font-size: 1.8rem;
  }

  .logo-white {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.5rem;
  }
}
