/** Shopify CDN: Minification failed

Line 406:0 All "@import" rules must come first

**/
/* Estilos exclusivos para la página "Comprar Yate" */

/* --- HERO / IMAGE BANNER --- */
.image-banner {
  position: relative;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}
.image-banner__media {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
}
.image-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6));
  z-index: 1;
  border-radius: 12px;
}
.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}
.image-banner__content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}
.image-banner__content p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #eee;
  margin-bottom: 20px;
}
.image-banner .btn {
  margin: 10px;
  padding: 12px 24px;
  background-color: #002b45;
  color: white;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
.image-banner .btn:hover {
  background-color: #d6b56c;
  color: #002b45;
}

/* --- GALERÍA --- */
.image-gallery {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.image-gallery h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 500;
  color: #111;
  font-family: 'Playfair Display', serif;
}
.image-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.image-gallery__item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.image-gallery__item:hover {
  transform: scale(1.02);
}
.image-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- TESTIMONIOS --- */
.testimonials {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}
.testimonials__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.testimonial {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 400px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  font-style: italic;
  position: relative;
  min-height: 200px;
}
.testimonial__text {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #333;
}
.testimonial__author {
  font-weight: bold;
  color: #555;
  font-style: normal;
  text-align: right;
}

/* --- SERVICIOS / ICON LIST --- */
.icon-list {
  background-color: #ffffff;
  margin: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.icon-list h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}
.icon-list__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0;
  list-style: none;
  justify-items: center;
}
.icon-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f5f5f5;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icon-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.icon-list__item img {
  max-width: 48px;
  max-height: 48px;
  margin-bottom: 15px;
}
.icon-list__item span {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* --- CONTACTO --- */
.contact-form {
  padding: 60px 20px;
  background-color: #f8f9fa;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}
.contact-form p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  padding: 12px 30px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #333;
}
.contact-form .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- CTA FINAL --- */
.rich-text {
  padding: 60px 20px;
  text-align: center;
  background-color: #f2f2f2;
}
.rich-text h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.rich-text p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #444;
  font-style: italic;
}
.rich-text .btn {
  padding: 12px 24px;
  background-color: #002b45;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}
.rich-text .btn:hover {
  background-color: #d6b56c;
  color: #002b45;
}

/* --- UTILIDAD DE WRAPPER GLOBAL --- */
.section-wrapper {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- SCROLL ANCLA HERO ---> FORMULARIO --- */
html {
  scroll-behavior: smooth;
}

.image-banner .btn[href^="#"]::after {
  content: " ↓";
  font-size: 1.2rem;
}

.collection-products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
  font-family: 'Playfair Display', serif;
}

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

.collection-products__item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.collection-products__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.collection-products__item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.collection-products__item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.collection-products__item p {
  color: #777;
  font-size: 1rem;
}

.icon-list:before {
    content: none !important;
}

.yacht-plans h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.yacht-plans__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.yacht-tab {
  background-color: #eee;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.yacht-tab.active,
.yacht-tab:hover {
  background-color: #000;
  color: white;
}

.yacht-plans__images {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.yacht-plan-image {
  display: none;
}

.yacht-plan-image.active {
  display: block;
}

.yacht-plan-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* --- TIPOGRAFÍA PREMIUM --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');
