/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navegación */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: contain;
}

.nav-logo h2 {
  color: #2c5aa0;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2c5aa0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Barra lateral de redes sociales */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.facebook:hover {
  background: #166fe5;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a01a6b 100%);
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.whatsapp:hover {
  background: #128c7e;
}

.social-icon.email {
  background: #ea4335;
}

.social-icon.email:hover {
  background: #d33426;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('fotos/1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

/* Enlace administrativo */
.admin-link {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.admin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(52, 73, 94, 0.8);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.admin-button:hover {
  background: rgba(52, 73, 94, 1);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.admin-button i {
  font-size: 1.2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-button {
  display: inline-block;
  background: #2c5aa0;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background: #1e3f6b;
  transform: translateY(-2px);
}

/* Botones del Hero Section */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.whatsapp-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-circle:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Secciones generales */
section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c5aa0;
  font-weight: 300;
}

/* Sección Nosotros */
.about {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  color: #2c5aa0;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 3rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Sección Alojamiento */
.accommodation {
  background: white;
}

.accommodation-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 3rem;
}

.card-content h3 {
  font-size: 2rem;
  color: #2c5aa0;
  margin-bottom: 1.5rem;
}

.card-content p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-content i {
  color: #2c5aa0;
  width: 20px;
}

.price {
  margin: 2rem 0;
  text-align: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c5aa0;
  display: block;
}

.price-period {
  font-size: 1rem;
  color: #666;
}

.book-button {
  display: inline-block;
  background: #2c5aa0;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.book-button:hover {
  background: #1e3f6b;
}

/* Plataformas de reserva */
.booking-platforms {
  margin: 2rem 0;
}

.booking-platforms h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.platform-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.platform-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.platform-button.booking {
  background: #003580;
  color: white;
}

.platform-button.booking:hover {
  background: #00224f;
  transform: translateY(-2px);
}

.platform-button.airbnb {
  background: #ff5a5f;
  color: white;
}

.platform-button.airbnb:hover {
  background: #e31c5f;
  transform: translateY(-2px);
}

.platform-button i {
  font-size: 1.2rem;
}

/* Sección Entorno */
.surroundings {
  background: #f8f9fa;
}

.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.surrounding-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.surrounding-item:hover {
  transform: translateY(-5px);
}

.surrounding-item i {
  font-size: 3rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
}

.surrounding-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Sección Multimedia */
.multimedia {
  background: white;
}

.multimedia-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.tab-button {
  padding: 12px 25px;
  background: #f8f9fa;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: #2c5aa0;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

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

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
  background: #f0f0f0;
  border: 1px solid #ddd;
  position: relative;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Estilos para videos en la galería - verticales y centrados */
.gallery-grid video {
  width: 100%;
  height: 400px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
  background: #000;
  border: 1px solid #ddd;
  position: relative;
}

.gallery-grid video:hover {
  transform: scale(1.05);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px 15px 15px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 10;
}

.image-overlay i {
  margin-right: 5px;
  color: #ffd700;
}

.loading-message {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
  grid-column: 1 / -1;
}

.gallery-info {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #2c5aa0;
}

.gallery-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.gallery-info i {
  color: #2c5aa0;
  margin-right: 0.5rem;
}

.video-container {
  text-align: center;
}





.video-caption {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 15px 15px;
  font-size: 1rem;
  font-weight: 500;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 90, 160, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(44, 90, 160, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #2c5aa0;
}

/* Lightbox para Galería */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 25px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.close-lightbox:hover {
  color: #ff5a5f;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 90, 160, 0.9);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-btn:hover {
  background: rgba(44, 90, 160, 1);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-btn.prev {
  left: 30px;
}

.lightbox-btn.next {
  right: 30px;
}

/* Lightbox para Videos */
.video-lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

#lightbox-video {
  max-width: 90%;
  max-height: 80%;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  max-width: 80%;
}

.close-video-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2001;
  transition: color 0.3s ease;
}

.close-video-lightbox:hover {
  color: #ffd700;
}

.video-lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 90, 160, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 2001;
}

.video-lightbox-btn:hover {
  background: rgba(44, 90, 160, 1);
  transform: translateY(-50%) scale(1.1);
}

.video-lightbox-btn.prev {
  left: 20px;
}

.video-lightbox-btn.next {
  right: 20px;
}

/* Sección Contacto */
.contact {
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 2rem;
  color: #2c5aa0;
  width: 40px;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #2c5aa0;
  color: white;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1e3f6b;
  transform: translateY(-2px);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #2c5aa0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5aa0;
}

.submit-button {
  width: 100%;
  background: #2c5aa0;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #1e3f6b;
}

/* Notificaciones */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-left: 4px solid #2c5aa0;
}

.notification.success .notification-content {
  border-left-color: #25d366;
}

.notification i {
  font-size: 1.2rem;
  color: #2c5aa0;
}

.notification.success i {
  color: #25d366;
}

.notification span {
  flex: 1;
  font-size: 0.9rem;
  color: #333;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.notification-close:hover {
  background: #f0f0f0;
  color: #333;
}

/* Display de datos de email */
.email-data-display {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 10000;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
}

.email-data-display h4 {
  color: #2c5aa0;
  margin-bottom: 15px;
  text-align: center;
}

.email-data-display pre {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
  white-space: pre-wrap;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  margin: 15px 0;
}

.email-data-display p {
  text-align: center;
  margin: 15px 0;
  color: #666;
}

.email-data-display button {
  background: #2c5aa0;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  font-weight: bold;
  transition: background 0.3s ease;
}

.email-data-display button:hover {
  background: #1e3f6b;
}

/* Footer */
footer {
  background: #2c5aa0;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-logo-img {
    width: 35px;
    height: 35px;
  }

  .nav-logo h2 {
    font-size: 1.3rem;
  }

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

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accommodation-card {
    grid-template-columns: 1fr;
  }

  .platform-buttons {
    flex-direction: column;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-slide iframe {
    height: 250px;
  }

  .carousel-container {
    min-height: 300px;
  }

  .lightbox-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .lightbox-btn.prev {
    left: 15px;
  }

  .lightbox-btn.next {
    right: 15px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .multimedia-tabs {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .social-sidebar {
    left: 5px;
    gap: 8px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .whatsapp-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .nav-logo-img {
    width: 30px;
    height: 30px;
  }

  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .whatsapp-circle {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .social-sidebar {
    left: 10px;
    gap: 10px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}



/* Estilos para la sección de Reseñas y Testimonios */
.reviews {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.reviews h2 {
  text-align: center;
  color: #2c5aa0;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.reviews-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  padding: 0 20px;
}

.review-card {
  min-width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
  display: none;
  border: 1px solid #e9ecef;
}

.review-card.active {
  opacity: 1;
  transform: scale(1);
  display: block;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.guest-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.guest-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.guest-details h4 {
  color: #2c5aa0;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: bold;
}

.guest-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.country-flag {
  font-size: 1.2rem;
}

.platform-badge {
  padding: 8px 12px;
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffd700;
  font-size: 1rem;
}

.stars i.filled {
  color: #ffd700;
}

.stars i:not(.filled) {
  color: #ddd;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c5aa0;
}

.review-content {
  margin-bottom: 25px;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0;
  padding: 0;
  border-left: 4px solid #2c5aa0;
  padding-left: 20px;
}

.translation-info {
  margin-top: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 3px solid #28a745;
}

.translation-info small {
  color: #666;
  font-size: 0.9rem;
}

.show-original-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.3s ease;
}

.show-original-btn:hover {
  background: #218838;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.stay-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stay-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 0.9rem;
}

.stay-info i {
  color: #2c5aa0;
}

.review-date {
  color: #999;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.host-response {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #28a745;
}

.response-header {
  color: #28a745;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.response-text {
  color: #333;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
}

.response-date {
  color: #666;
  font-size: 0.9rem;
  text-align: right;
}

.review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.helpful-btn {
  background: #6c757d;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.helpful-btn:hover {
  background: #5a6268;
}

.helpful-count {
  font-weight: bold;
}

.more-info-btn {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.more-info-btn:hover {
  color: #1e3a5f;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.reviews-pagination .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-pagination .pagination-dot:hover {
  background: #2c5aa0;
  transform: scale(1.2);
}

.reviews-pagination .pagination-dot.active {
  background: #2c5aa0;
  transform: scale(1.2);
}

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 50px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  margin-bottom: 15px;
}

.stat-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.stat-stars i {
  color: #ffd700;
  font-size: 1.2rem;
}

.stat-icon {
  font-size: 2rem;
  color: #28a745;
}

.reviews-platforms {
  text-align: center;
  margin-top: 50px;
}

.reviews-platforms h3 {
  color: #2c5aa0;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.platform-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px;
  border-radius: 15px;
  color: white;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.platform-badge:hover {
  transform: translateY(-5px);
}

.platform-badge.booking {
  background: linear-gradient(135deg, #003580 0%, #0056b3 100%);
}

.platform-badge.airbnb {
  background: linear-gradient(135deg, #ff5a5f 0%, #e31c5f 100%);
}

.platform-badge i {
  font-size: 2rem;
}

.platform-badge span {
  font-size: 1.2rem;
  font-weight: bold;
}

.platform-rating {
  text-align: center;
}

.platform-rating .stars {
  justify-content: center;
  margin-bottom: 8px;
}

.platform-rating .stars i {
  color: #ffd700;
  font-size: 1rem;
}

.rating-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive para reseñas */
@media (max-width: 768px) {
  .reviews {
    padding: 60px 0;
  }
  
  .reviews h2 {
    font-size: 2rem;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .review-card {
    padding: 20px;
    margin: 0 10px;
  }
  
  .guest-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .guest-details h4 {
    font-size: 1.1rem;
  }
  
  .review-text {
    font-size: 1rem;
    padding-left: 15px;
  }
  
  .stay-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .reviews-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .platform-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .platform-badge {
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding: 50px 0;
  }
  
  .reviews h2 {
    font-size: 1.8rem;
  }
  
  .reviews-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  
  .review-card {
    padding: 15px;
  }
  
  .guest-avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .guest-details h4 {
    font-size: 1rem;
  }
  
  .review-text {
    font-size: 0.9rem;
    padding-left: 10px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .platform-badge {
    min-width: 160px;
    padding: 20px;
  }
  
  .platform-badge i {
    font-size: 1.5rem;
  }
  
  .platform-badge span {
    font-size: 1rem;
  }
}
