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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins';
    background-color: #f9f9f9;
    color: #111;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

body {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }
}

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

    h1 {
        font-size: 1.6rem;
    }
}

.carousel-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-icon img {
    max-width: 100px;
}
.shipping-policy-page {
  font-family: 'Poppins', sans-serif;
  background: #ececec;
  color: #1f1f1f;
  overflow: hidden;
}

/* SECTIONS */
.shipping-light-section {
  background: #ececec;
}

.shipping-light-section {
  background: #f5f5f5;
}



/* TITLE */
.title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 10px;
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 20px 0;
}

/* INTRO */
.intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* BLOCK */
.block {
  margin-bottom: 20px;
}

.block-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.block-title.red {
  color: #c40000;
}
.row.mt-4 {
  display: flex;
  gap: 40px;
}

.row.mt-4 > div {
  flex: 1;
}
/* CHECK LIST */
.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00a651;
  font-weight: bold;
}

/* NOTE */
.note {
  font-size: 14px;
  color: #444;
  margin-top: 10px;
}

/* BUTTON */
.btn-red {
  display: inline-block;
  background: #c40000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-red:hover {
  background: #900000;
  color: #fff;
  transform: translateY(-2px);
}

/* IMAGE */
.image-clean img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

.image-clean img {
  transition: 0.5s;
}

.image-clean:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .title {
    font-size: 32px;
  }

  .shipping-content-clean {
    max-width: 100%;
  }
}

/* HERO */
.shipping-hero {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.shipping-hero-content h1 {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.shipping-hero-content p {
  font-size: 1.35rem;
  font-weight: 400;
  color: #2d2d2d;
  margin: 0;
}

.shipping-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* GENERIC CONTENT */
.shipping-content h2,
.shipping-card h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

.shipping-content p,
.shipping-card p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}

.white-text {
  color: #fff;
}

.white-text h2,
.white-text p,
.white-text li,
.white-text .small-muted {
  color: #fff;
}

.small-muted {
  font-size: 0.9rem;
  opacity: 0.9;
}

.divider-line {
  width: 100%;
  max-width: 260px;
  height: 2px;
  background: #d3d3d3;
  margin-bottom: 20px;
}

.light-line {
  background: rgba(255,255,255,0.35);
}

/* IMAGES */
.image-card {
  width: 100%;
  overflow: hidden;
}

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

.tall-image img {
  height: 100%;
  min-height: 520px;
}

/* CARDS */
.shipping-card {
  background: transparent;
  padding: 10px 5px;
}

/* CHECK LIST */
.shipping-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.shipping-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.shipping-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6dff70;
  font-weight: 700;
}

/* BULLET LIST */
.bullet-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.bullet-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.white-bullets li {
  color: #fff;
}

/* TIMEFRAMES */
.shipping-timeframes-card {
  width: 100%;
  max-width: 100%;
}

.shipping-timeframes-card .row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.shipping-timeframes-card .col-12,
.shipping-timeframes-card .col-md-6 {
  width: 100%;
}

@media (min-width: 768px) {
  .shipping-timeframes-card .col-md-6 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.shipping-timeframes-card h2 {
  margin-bottom: 10px;
}

.small-intro {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.time-block {
  margin-bottom: 18px;
}

.time-block h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.time-block ul {
  padding-left: 18px;
  margin: 0;
}

.time-block ul li {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 6px;
}

.shipping-note {
  margin-top: 10px;
  font-size: 0.88rem;
  color: #c0352b;
  font-style: italic;
  line-height: 1.5;
}

/* BUTTONS */
.shipping-btn-red {
  background: #d3180f;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.shipping-btn-red:hover {
  background: #b9120a;
  color: #fff;
  transform: translateY(-2px);
}

/* DELAY CARDS */
.delay-card {
  background: #f2f2f2;
  overflow: hidden;
  text-align: center;
}

.delay-card img, .delay-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.delay-caption {
  padding: 14px 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  background: #efefef;
}

.delay-note {
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* PRIORITY TITLE */
.priority-title span {
  color: #d3180f;
}

.faq-pro-section {
  background: #f0f1f3;
}

.faq-image-wrapper img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.faq-content {
  max-width: 600px;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.faq-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.faq-btn {
  display: inline-block;
  background: #bf0c04;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  background: #a10a03;
  color: #fff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faq-title {
    font-size: 36px;
  }

  .faq-content {
    text-align: center;
    margin: auto;
  }
}

@media (max-width: 576px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-text {
    font-size: 14px;
  }
}
/* RESPONSIVE */
@media (max-width: 1199px) {
  .shipping-hero-content h1 {
    font-size: 3rem;
  }

  .shipping-content h2,
  .shipping-card h2 {
    font-size: 2rem;
  }

  .shipping-hero-image img {
    height: 360px;
  }
}

@media (max-width: 991px) {
  .shipping-hero {
    text-align: center;
  }

  .shipping-hero-content {
    max-width: 100%;
  }

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

  .shipping-content h2,
  .shipping-card h2 {
    font-size: 1.8rem;
  }

  .shipping-hero-image img {
    height: 300px;
  }

  .tall-image img {
    min-height: 300px;
  }

  .shipping-content,
  .shipping-card {
    text-align: center;
  }

  .divider-line {
    margin-left: auto;
    margin-right: auto;
  }

  .shipping-check-list li,
  .bullet-list li,
  .time-block ul li {
    text-align: left;
  }

  .shipping-check-list {
    display: inline-block;
    text-align: left;
  }

  .bullet-list {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .shipping-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .shipping-dark-section,
  .shipping-light-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

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

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

  .shipping-content h2,
  .shipping-card h2 {
    font-size: 1.55rem;
  }

  .shipping-content p,
  .shipping-card p,
  .shipping-check-list li,
  .bullet-list li {
    font-size: 0.95rem;
  }

  .shipping-hero-image img {
    height: 240px;
  }

  .delay-card img {
    height: 180px;
  }

  .shipping-btn-red {
    width: 100%;
    text-align: center;
  }

  .d-flex.flex-wrap.gap-3.align-items-center.mt-3 {
    flex-direction: column;
    align-items: stretch !important;
  }
}

@media (max-width: 575px) {
  .shipping-hero-content h1 {
    font-size: 2rem;
  }

  .shipping-content h2,
  .shipping-card h2 {
    font-size: 1.4rem;
  }

  .shipping-hero-image img {
    height: 220px;
  }
}

/* SECTION BASE */
.premium-shipping {
  background: #0f172a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* SUBTLE GLOW */
.premium-shipping::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217,4,41,0.12), transparent 70%);
  top: -150px;
  left: -150px;
}

/* IMAGE CARD */
.shipping-image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.shipping-image-card img {
  width: 100%;
  transition: 0.5s;
}

.shipping-image-card:hover img {
  transform: scale(1.05);
}

/* TOP INFO */
.shipping-top-note {
  background: #9a9a9a;
  color: #fff;
  padding: 40px 0;
}

.shipping-top-note p {
  max-width: 900px;
  margin: 0 auto 15px;
  font-size: 15px;
  line-height: 1.6;
}

.shipping-top-note .important-notes {
  font-size: 14px;
  opacity: 0.95;
}

/* DARK SECTION */
.shipping-dark-section {
  background: #6f6f6f;
  color: #fff;
}

/* STRIP */
.delays-strip {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ITEMS */
.delay-item {
  width: 200px;
}

.delay-item img,
.delay-item video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

/* CAPTION */
.delay-item span {
  display: block;
  margin-top: 12px;
  background: #eaeaea;
  color: #333;
  padding: 10px;
  font-size: 14px;
  border-radius: 4px;
}

/* NOTE */
.delay-note {
  font-weight: 600;
}

/* DIVIDER */
.light-line {
  width: 120px;
  height: 2px;
  background: #ddd;
  margin: 15px auto;
}


.policy-section {
  background: #fff;
}

.policy-content h2 {
  font-size: 2rem;
  font-weight: 600;
}

.policy-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-box {
  background: #f8f9fa;
  padding: 15px 18px;
  border-left: 4px solid #c20c0c;
  border-radius: 8px;
}

.btn-red {
  display: inline-block;
  background: #c20c0c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-red:hover {
  background: #a50a0a;
}

/* MEDIA CARD */
.media-card {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DIVIDER */
.divider-line {
  width: 80px;
  height: 3px;
  background: #c20c0c;
  margin: 15px 0 25px;
}

/* ðŸ”¥ IMPORTANTE: evita que parezca 3 columnas */
.policy-section .row {
  margin-left: 0;
  margin-right: 0;
}

.policy-section .col-lg-7,
.policy-section .col-lg-5 {
  padding-left: 15px;
  padding-right: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .policy-content {
    text-align: center;
  }

  .divider-line {
    margin-left: auto;
    margin-right: auto;
  }

  .media-card {
    height: 300px;
  }
}

/* RED LINE */
.section-line {
  width: 60px;
  height: 3px;
  background: #d90429;
  margin-bottom: 20px;
}

/* TITLE */
.shipping-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* LEAD TEXT */
.shipping-lead {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* LIST */
.shipping-check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.shipping-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* CUSTOM ICON */
.shipping-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d90429;
  font-weight: bold;
}

/* FOOTER TEXT */
.shipping-footer {
  color: rgba(255,255,255,0.65);
  margin-bottom: 30px;
}

/* BUTTONS */
.shipping-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* REUSE BUTTONS */
.btn-hero-primary {
  background: #d90429;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hero-primary:hover {
  background: #b00322;
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-link {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.btn-hero-link:hover {
  opacity: 1;
  color: #fff;
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .shipping-title {
    font-size: 30px;
  }

  .shipping-content {
    text-align: center;
    margin: 0 auto;
  }

  .section-line {
    margin: 0 auto 20px;
  }

  .shipping-actions {
    justify-content: center;
  }

}

.shipping-dark-section {
  background: #6f6f6f;
  color: #fff;
}

/* STRIP HORIZONTAL */
.delays-strip {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap; /* responsive */
}

/* ITEM */
.delay-item {
  width: 200px;
  text-align: center;
}

/* MEDIA */
.delay-item img,
.delay-item video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

/* CAPTION */
.delay-item span {
  display: block;
  margin-top: 12px;
  background: #eaeaea;
  color: #333;
  padding: 10px;
  font-size: 14px;
  border-radius: 4px;
}

/* NOTE */
.delay-note {
  font-weight: 600;
  opacity: 0.9;
}

/* DIVIDER */
.light-line {
  width: 120px;
  height: 2px;
  background: #ddd;
  margin: 15px auto;
}

/* Posiciona las flechas debajo del slider */
.custom-arrows {
    text-align: center; /* Centra los botones */
     /* Espacio entre el slider y las flechas */
  }
  
  /* Estilo de los botones */
  .slick-prev-custom, 
  .slick-next-custom {
    background: #33333300;
    font-family: 'Poppins';
    font-size: 72px;
    color: #191919;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .slick-prev-custom:hover, 
  .slick-next-custom:hover {
    color: #111;
  }

/* Estilos para los controles del carrusel */
.slick-prev:before,
.slick-next:before {
    color: #333;
}

.slick-dots li button:before {
    font-size: 12px;
}

/* Footer */
.footer-promo {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: #191919;
    color: #fff;
    flex-wrap: wrap;
}

.footer-logo {
    max-width: 280px;
    position: relative;
    top: -30px;
    left: -45px;
    margin-bottom: 1rem;
}

.footer-left h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.quote-btn {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.75rem 1.5rem;
    border: 2px solid #fff;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.quote-btn:hover {
    background-color: #fff;
    color: #000;
}

.footer-icon {
    position: absolute;
    margin: 0 2rem;
    width: 80px;
}

.footer-right {
    max-width: 300px;
    font-size: 1rem;
}

.footer-right a {
    color: #fff;
    text-decoration: underline;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-right p {
    margin: 1rem 0;
}

.footer-socials {
    display: flex;
}

.footer-socials a {
    margin-right: 1rem;
    color: #fff;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .footer-promo {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}