:root {
  --primary: #1B449E;
  --secondary: #88d3ce;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --accent: #ff7e5f;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(110, 69, 226, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110, 69, 226, 0.4);
  background: #5d38d8;
}

.btn-accent {
  background: var(--accent);
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.btn-accent:hover {
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.4);
  background: #ff6a4b;
}

section {
  padding: 100px 0;
}

section:last-of-type {
  padding-bottom: 0;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

header {
  background: rgba(26, 26, 46, 0.95);
  color: white;
  padding: 5px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-alquiler-price {
  background: rgba(26, 26, 46, 0.95);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--secondary);
}

.logo-container {
  display: flex;
  gap: 0.5rem;
}

.logo-img {
  width: 58px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)),
  url('https://sm.mashable.com/t/mashable_sea/review/m/meta-quest/meta-quest-3-review-read-this-before-you-even-think-about-bu_eay7.2496.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 25px;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.about {
  background-color: white;
}

.about-container {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-video {
  height: 100%;
  width: 80%;
  margin-left: 15%;
  object-fit: cover;
  border: 2px solid var(--dark);
  border-radius: 20px;
  aspect-ratio: 9/16;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  height: 100%;
  width: 100%;
  border: 2px solid var(--dark);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  color: #999;
  font-size: 1.2rem;
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.about-content {
  flex: 1;
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition);
}

.about-video-container {
  flex: 0 0 300px;
  background: #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  align-self: flex-start;
}

.about-content.animate {
  opacity: 1;
  transform: translateX(0);
}

.features {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.features h2 {
  margin-bottom: 60px;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card h3,
.feature-card p {
  text-align: center;
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-icon img {
  height: 120px;
}

.gallery {
  background-color: white;

  h2 {
    margin-bottom: 60px;
  }
}

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

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;

  .gallery-video {
    height: 100%;
    width: 100%;
  }
}

.pricing {
  h2, h3 {
    color: white;
  }

  .text-center {
    padding-bottom: 20px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 2%;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(30px);

  h3 {
    margin-bottom: 15px;
  }
}

.pricing-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary);

  span {
    font-size: 1rem;
    opacity: 0.8;
  }
}

.plus-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  color: white;

  li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.testimonials {
  background-color: white;
}

.testimonials h2 {
  margin-bottom: 60px;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: 30px;
  background: var(--light);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
  height: 14px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

section.contact {
  padding: 50px 0;
}

.contact {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.contact-container {
  display: grid;
  gap: 50px;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-items: center;
  flex-direction: column;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--secondary);
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-col img {
  height: 32px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .about-container, .contact-container {
    grid-template-columns: 1fr;
  }

  .about-img {
    order: -1;
    height: 400px;
  }

  .about-video {
    margin: 0;
    height: 100%;
    width: 100%;
  }
}

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

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark);
    padding: 80px 30px;
    transition: var(--transition);
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 15px 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

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

  .hero p {
    font-size: 1.1rem;
  }
}

.faq {
  background-color: white;
  padding: 100px 0;
  padding-top: 0;
}

.faq h2 {
  margin-bottom: 60px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.faq-item summary {
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  transition: var(--transition);
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item p {
  margin-top: 10px;
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about-video {
    order: -1;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 576px) {

}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .about-img {
    height: 300px;
  }

  .about-video {
    margin: 0;
    height: 100%;
    width: 100%;
  }
}

.gallery-item {
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--secondary);
}

.pricing-section {
  background: var(--primary);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid rgba(255, 255, 255, 0.2);

  .title {
    text-align: center;
  }
}

.pricing-teaser {
  background: var(--primary);
  color: white;
  padding: 40px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;

  a:hover {
    background: #5d38d8;
  }
}

.reserve-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.reserve-modal-content {
  background: var(--light);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.reserve-modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.reserve-modal-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.reserve-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.reserve-socials .social-icon img {
  width: 50px;
}