/* ============================
   MINIBOAT (QUIÉNES SOMOS)
   ============================ */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #fff;
  color: #333;
}

/* Sección general */
.miniboat-section {
  padding: 6rem 5%;
  text-align: center;
}

.miniboat-content h1 {
  font-size: 2.8rem;
  color: #004e92;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.miniboat-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  color: #555;
}

/* Botón CTA */
.cta-btn {
  display: inline-block;
  background: #004e92;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none;
}

.cta-btn:hover {
  background: #008cb2;
}

.miniboat-carrusel {
  background: #000;
  color: #fff;
  padding: 50px 0;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  opacity: 0.6;
}

.carousel-caption {
  position: absolute;
  top: 20%;
  left: 10%;
  max-width: 600px;
}

.carousel-caption h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1rem;
  line-height: 1.5;
}

.carousel-caption i {
  color: #004e92;
  margin-right: 10px;
}
.miniboat-carrusel {
  background: #000;
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  width: 400%;
  animation: slide 20s infinite;
}

.carousel-slide {
  flex: 0 0 25%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.6;
}

.carousel-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 80%;
}

.carousel-caption h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.carousel-caption i {
  color: #004e92;
  margin-right: 10px;
}

@keyframes slide {
  0% { transform: translateX(0%); }
  20% { transform: translateX(0%); }
  25% { transform: translateX(-25%); }
  45% { transform: translateX(-25%); }
  50% { transform: translateX(-50%); }
  70% { transform: translateX(-50%); }
  75% { transform: translateX(-75%); }
  95% { transform: translateX(-75%); }
  100% { transform: translateX(0%); }
}

.ficha-tecnica {
  background: #f5f5f5;
  color: #333;
  padding: 60px 20px;
}

.ficha-tecnica .container {
  max-width: 1000px;
  margin: auto;
}

.ficha-tecnica h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #004e92; /* azul branding */
}

.ficha-tecnica .subtitulo {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.tabla-container {
  overflow-x: auto;
}

.ficha-tecnica table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.ficha-tecnica th,
.ficha-tecnica td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.ficha-tecnica th {
  background: #004e92;
  color: #fff;
  font-weight: 600;
}

.ficha-tecnica tr:nth-child(even) {
  background: #f9f9f9;
}

.ficha-tecnica tr:hover {
  background: #e6f7ff;
}

.table-container {
  overflow-x: auto;
  padding: 20px 0;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.table th,
.table td {
  padding: 12px 20px;
  text-align: left;
}

.table thead {
  background-color: #004e92;
  color: white;
}

.table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.table tbody tr:hover {
  background-color: #e6f7ff;
  transition: background-color 0.3s ease;
}

/* Bordes redondeados para el culito de la tabla */
.table thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}

.table thead tr:first-child th:last-child {
  border-top-right-radius: 12px;
}

.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.remolque {
  background: #fff;
  color: #333;
  padding: 60px 20px;
}

.remolque .container {
  max-width: 1100px;
  margin: auto;
}

.remolque-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.remolque-texto {
  flex: 1 1 500px;
  padding-right: 40px;
}

.remolque-texto h2 {
  font-size: 2rem;
  color: #004e92;
  margin-bottom: 20px;
}

.remolque-texto p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.remolque-img {
  flex: 1 1 400px;
  text-align: center;
}

.remolque-img img {
  max-width: 100%;
  height: auto;
}

.miniboat-final {
  background-color: #004e92; /* azul branding */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.miniboat-final h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.miniboat-final p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  padding: 0 10px;
}

.miniboat-final .btn {
  display: inline-block;
  background-color: white;
  color: #004e92;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.miniboat-final .btn:hover {
  background-color: #e6e6e6;
  color: #004e92;
}

/* Responsive ajustes */

@media (max-width: 768px) {
  .miniboat-final h2 {
    font-size: 26px;
  }

  .miniboat-final p {
    font-size: 16px;
    padding: 0 15px;
  }

  .miniboat-final .btn {
    padding: 10px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .miniboat-final h2 {
    font-size: 22px;
  }

  .miniboat-final p {
    font-size: 14px;
  }

  .miniboat-final .btn {
    width: 100%;
    max-width: 300px;
  }
}
