:root {
  --tricorn-black: #2d2d2d;
  --sconce-gold: #a67c2e;
  --in-the-navy: #1f3a4d;
  --essential-gray: #e5e2d9;
  --white: #ffffff;
  --black: #000000;
  --gold-light: #d4b254;
  --navy-light: #2f5775;
  --gray-dark: #aeada3;
  --error-red: #e74c3c;
  --success-green: #2ecc71;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--tricorn-black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--in-the-navy);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 15px;
  color: var(--in-the-navy);
}

.section-header p {
  color: var(--tricorn-black);
  max-width: 700px;
  margin: 0 auto;
}

.separator {
  width: 80px;
  height: 3px;
  background-color: var(--sconce-gold);
  margin: 15px auto;
}

section {
  padding: 80px 0;
}

.cta-button,
.secondary-btn,
.room-btn,
.submit-btn,
.offer-btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button {
  background-color: var(--sconce-gold);
  color: var(--white);
}

.cta-button:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.secondary-btn {
  background-color: transparent;
  color: var(--in-the-navy);
  border: 2px solid var(--in-the-navy);
}

.secondary-btn:hover {
  background-color: var(--in-the-navy);
  color: var(--white);
}

.room-btn,
.offer-btn {
  background-color: var(--in-the-navy);
  color: var(--white);
  width: 100%;
}

.room-btn:hover,
.offer-btn:hover {
  background-color: var(--navy-light);
}

.submit-btn {
  background-color: var(--sconce-gold);
  color: var(--white);
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--gold-light);
}

/* Mensajes de éxito y error */
.success-message,
.error-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.success-message {
  background-color: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--success-green);
  color: var(--success-green);
}

.error-message {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid var(--error-red);
  color: var(--error-red);
}

.success-message i,
.error-message i {
  font-size: 20px;
  margin-right: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header y Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(45, 45, 45, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(31, 58, 77, 0.98);
}

.navbar-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  height: 80px;
}

.logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  max-width: 150px; 
  width: auto; 
  object-fit: contain;
}

.navbar-desktop nav ul {
  display: flex;
}

.navbar-desktop nav ul li {
  margin: 0 20px;
  position: relative;
}

.navbar-desktop nav ul li a {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: var(--white);
  padding: 10px 0;
  position: relative;
  letter-spacing: 0.5px;
}

.navbar-desktop nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--sconce-gold);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.navbar-desktop nav ul li a:hover,
.navbar-desktop nav ul li a.active {
  color: var(--sconce-gold);
}

.navbar-desktop nav ul li a:hover::after,
.navbar-desktop nav ul li a.active::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  align-items: center;
}

.login-btn,
.register-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--sconce-gold);
  margin-right: 10px;
}

.login-btn:hover {
  background-color: var(--sconce-gold);
  color: var(--white);
}

.register-btn {
  background-color: var(--sconce-gold);
  color: var(--white);
  border: 1px solid var(--sconce-gold);
}

.register-btn:hover {
  background-color: var(--gold-light);
}

/* User Menu */
.user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.welcome-text {
  color: var(--white);
  margin-right: 10px;
  font-size: 0.875rem;
}

.user-menu-btn {
  background-color: var(--sconce-gold);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-menu-btn:hover {
  background-color: var(--gold-light);
}

.user-menu-btn i {
  font-size: 20px;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 200px;
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.user-menu:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 15px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--white);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: var(--tricorn-black);
  transition: all 0.3s ease;
}

.user-dropdown a:hover {
  background-color: rgba(166, 124, 46, 0.1);
  color: var(--sconce-gold);
}

.user-dropdown a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tricorn-black);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* También ajustar el logo en el menú móvil */
.mobile-logo {
  height: 35px; /* Reducido de 50px */
}

.mobile-logo img {
  height: 100%;
  max-width: 120px; /* Limitar el ancho máximo */
  width: auto;
  object-fit: contain;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav ul {
  margin-bottom: 30px;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  color: var(--white);
  font-size: 1.25rem;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a.active {
  color: var(--sconce-gold);
}

.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-auth-btn {
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
}

.mobile-auth-btn.login {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--sconce-gold);
}

.mobile-auth-btn.register {
  background-color: var(--sconce-gold);
  color: var(--white);
}

.mobile-auth-btn.logout {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.mobile-user-info {
  color: var(--white);
  margin-bottom: 20px;
}

.mobile-user-info p {
  margin-bottom: 15px;
  font-size: 1.125rem;
}

/* Navbar Mobile (Bottom) */
.navbar-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--tricorn-black);
  padding: 12px 0 8px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--essential-gray);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 0;
  width: 20%;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-item i {
  font-size: 1.25rem;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.nav-item.active {
  color: var(--sconce-gold);
}

.nav-item:active {
  transform: scale(0.95);
}

.nav-item-center {
  position: relative;
  width: 20%;
  display: flex;
  justify-content: center;
}

.center-icon {
  width: 60px;
  height: 60px;
  background-color: var(--sconce-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  position: absolute;
  bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.center-icon:active {
  transform: scale(0.95);
  background-color: var(--gold-light);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.75rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 3;
}

.prev-btn,
.next-btn {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--sconce-gold);
}

.carousel-dots {
  display: flex;
  margin: 0 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--sconce-gold);
  transform: scale(1.2);
}

/* About Section - MEJORADO */
.about {
  background-color: var(--essential-gray);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 58, 77, 0.05) 0%, rgba(166, 124, 46, 0.05) 100%);
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.about-text {
  flex: 1;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.about-text p {
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--tricorn-black);
}

.about-text .secondary-btn {
  margin-top: 10px;
  padding: 14px 35px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(31, 58, 77, 0.15);
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature {
  text-align: center;
  padding: 35px 25px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--sconce-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.feature:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.feature i {
  font-size: 45px;
  color: var(--sconce-gold);
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.feature:hover i {
  transform: scale(1.15);
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--in-the-navy);
}

.feature p {
  font-size: 0.95rem;
  color: var(--tricorn-black);
  line-height: 1.7;
}

/* Rooms Section */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-image {
  position: relative;
  height: 250px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-price {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--sconce-gold);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
}

.room-price span {
  font-size: 12px;
}

.room-price h4 {
  font-size: 24px;
  color: var(--white);
  margin: 5px 0;
}

.room-info {
  padding: 20px;
}

.room-info h3 {
  margin-bottom: 15px;
}

.room-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--tricorn-black);
}

.room-features span {
  display: flex;
  align-items: center;
}

.room-features span i {
  margin-right: 5px;
  color: var(--sconce-gold);
}

.room-info p {
  margin-bottom: 20px;
  font-size: 14px;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Special Offers Section */
.special-offers {
  background-color: var(--white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-image {
  position: relative;
  height: 200px;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-badge {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: var(--sconce-gold);
  color: var(--white);
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
}

.offer-content {
  padding: 20px;
}

.offer-content h3 {
  margin-bottom: 10px;
}

.offer-dates {
  font-size: 14px;
  color: var(--tricorn-black);
  margin-bottom: 15px;
}

.offer-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--essential-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 58, 77, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-info {
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.gallery-info h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.gallery-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--sconce-gold);
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.gallery-link:hover {
  background-color: var(--gold-light);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--in-the-navy);
  color: var(--white);
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 300px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 30px;
  color: var(--sconce-gold);
  opacity: 0.5;
}

.testimonial-content p {
  margin-bottom: 20px;
  padding-left: 40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.rating {
  color: var(--sconce-gold);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.testimonial-dots {
  display: flex;
  margin: 0 15px;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: grid;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
}

.info-item i {
  font-size: 24px;
  color: var(--sconce-gold);
  margin-right: 15px;
  margin-top: 5px;
}

.social-media h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--in-the-navy);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--sconce-gold);
  transform: translateY(-5px);
}

.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-dark);
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

/* Location Section */
.map-container {
  margin-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.info-card {
  text-align: center;
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
  font-size: 30px;
  color: var(--sconce-gold);
  margin-bottom: 15px;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--in-the-navy);
  color: var(--white);
  padding: 60px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.newsletter-content p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.newsletter-form button {
  background-color: var(--sconce-gold);
  color: var(--white);
  border: none;
  padding: 0 25px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--gold-light);
}

/* Footer */
footer {
  background-color: var(--tricorn-black);
  color: var(--white);
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-info {
  max-width: 350px;
}

/* Y el logo del footer */
.footer-logo img {
  height: 35px; /* Reducido de 50px */
  max-width: 140px;
  width: auto;
}

.footer-description {
  color: var(--essential-gray);
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--sconce-gold);
  transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--sconce-gold);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--essential-gray);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--sconce-gold);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: var(--essential-gray);
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--sconce-gold);
  font-size: 18px;
  margin-top: 3px;
}

.footer-newsletter p {
  color: var(--essential-gray);
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-subscribe-form {
  margin-bottom: 20px;
}

.footer-subscribe-form .form-group {
  display: flex;
  position: relative;
}

.footer-subscribe-form input {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

.footer-subscribe-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--sconce-gold);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-subscribe-form button:hover {
  background-color: var(--gold-light);
}

.payment-methods {
  margin-top: 20px;
}

.payment-methods span {
  display: block;
  color: var(--essential-gray);
  font-size: 14px;
  margin-bottom: 10px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-icons i {
  font-size: 24px;
  color: var(--essential-gray);
}

.payment-icons span {
  display: inline-block;
  margin-left: 5px;
  color: var(--essential-gray);
  font-size: 14px;
}

/* Créditos del desarrollador */
.developer-credits {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--essential-gray);
  font-size: 13px;
  font-style: italic;
}

.developer-credits a {
  color: var(--sconce-gold);
  transition: all 0.3s ease;
}

.developer-credits a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--essential-gray);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--essential-gray);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--sconce-gold);
}

/* Animaciones */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .rooms-grid,
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-info {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .navbar-desktop {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-desktop nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .auth-buttons {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .navbar-mobile {
    display: flex;
  }

  .hero {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mejoras para el footer en móviles */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-info {
    grid-column: 1;
    text-align: center;
    margin: 0 auto;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links h3, 
  .footer-contact h3, 
  .footer-newsletter h3 {
    text-align: center;
  }
  
  .footer-links h3::after, 
  .footer-contact h3::after, 
  .footer-newsletter h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul {
    text-align: center;
  }
  
  .footer-contact ul li {
    justify-content: center;
    text-align: center;
  }
  
  .footer-newsletter {
    text-align: center;
  }
  
  .payment-methods {
    text-align: center;
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  /* Ajustes para el footer en móviles - 2 columnas */
  .footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: center;
  }
  
  .footer-contact ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .navbar-desktop {
    padding: 0 20px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .location-info {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 5px;
    padding: 12px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .room-features {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .footer-links ul,
  .footer-contact ul {
    grid-template-columns: 1fr;
  }
  
  .footer-contact ul li {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-contact ul li i {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .payment-icons span {
    display: block;
    margin-top: 5px;
    margin-left: 0;
  }
}