body {
  font-family: 'Poppins', sans-serif;
}

main.mainbox *{
  font-family: 'Poppins'!important;
}

.hbp-hero .row{
  justify-content: space-between;
}
.bg-1{background-color: #ffffff!important;}
.bg-3{background-color: #d9d9d9!important;}

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

h1 {
    font-size: 2.8rem;
}

video{
  max-width: 460px;
  height: auto;
}

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

.hbp-hero-pro{
  padding-bottom: 24px;
}

.hospital-bed-policy-page{
    background: #efefef;
    color: #111111;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hospital-bed-policy-page:before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.15), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

/* GLOBAL */
.hbp-image-wrap{
 position: relative;
 display: flex;
 justify-content: center;
}
.hospital-bed-policy-page img{
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  transition: 0.5s;
}

/* HOVER FLOAT */
.hospital-bed-policy-page img:hover {
  transform: scale(1.03) translateY(-5px);
}

.hbp-title{
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #111;
}

.hbp-description,
.hbp-location-text p,
.hbp-text-block p{
  font-size: 15px;
  line-height: 1.8;
  color: #3f3f3f;
  margin-bottom: 0;
}

.hbp-hero,
.hbp-shipping-section,
.hbp-info-section,
.hbp-warranty-section,
.hbp-mattresses-section{
  background: #ffffff;
}

.hbp-hero-image,
.hbp-location-img,
.hbp-location-truck,
.hbp-image-card img,
.hbp-warranty-image img,
.hbp-mattress-image img{
  border-radius: 2px;
  object-fit: cover;
}

/* HERO */
.hbp-hero{
  padding-top: 80px !important;
  padding-bottom: 70px !important;
}

.hbp-hero-content{
  max-width: 500px;
}

.hbp-hero-image-wrap{
  max-width: 720px;
  margin-left: auto;
}

/* TABS */
.hbp-shipping-section{
  padding-top: 60px !important;
  padding-bottom: 80px !important;
  background: #ffffff;
}

.hbp-tabs{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hbp-tab-btn{
  min-width: 180px;
  padding: 14px 24px;
  border: 2px solid rgb(168 17 29);
  background: transparent;
  color: rgb(168 17 29);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  transition: all .3s ease;
  box-shadow: none;
}

.hbp-tab-btn:hover{
  background: rgb(168 17 29);
  color: #fff;
}

.hbp-tab-btn.active{
  background: rgb(168 17 29);
  color: #fff;
}

.hbp-tab-content{
  display: none;
}

.hbp-tab-content.active{
  display: block;
  animation: hbpFadeIn .45s ease;
}

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

.hbp-location-text{
  max-width: 520px;
}

.hbp-location-visual{
  display: flex;
  align-items: center;
  gap: 40px;
}

.hbp-vertical-line{
  width: 2px;
  min-width: 2px;
  height: 520px;
  background: rgb(168 17 29);
}

.hbp-location-truck{
  flex: 1;
  max-height: 520px;
  object-fit: cover;
}

/* INFO SECTIONS */
.hbp-info-section{
  padding-top: 70px !important;
  padding-bottom: 70px !important;
  background: #eff0f2;
}

.hbp-info-section li{
  padding: 12px;
}

.hbp-image-card img{
  min-height: 420px;
  object-fit: cover;
}

.hbp-section-title{
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 10px;
}

.hbp-section-title.red{
  color: rgb(168 17 29);
}

.hbp-section-title.red span{
  color: rgb(168 17 29);
}

.hbp-section-title.dark{
  color: #111;
  font-size: 2rem;
}

.hbp-section-title span{
  display: inline-block;
  font-size: 2rem;
}

.hbp-title-line{
  width: 100%;
  max-width: 380px;
  height: 1px;
  background: #bdbdbd;
  margin: 18px 0 24px;
}

.hbp-video-embed iframe{
  border-radius: 4px;
}

/* WARRANTY */
.hbp-warranty-image img{
  min-height: 360px;
  object-fit: cover;
  filter: blur(1px);
}

/* MATTRESSES */
.hbp-mattress-image img{
  min-height: 500px;
  object-fit: cover;
}

.hbp-red-note{
  color: rgb(168 17 29) !important;
  margin-top: 20px !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

/* RESPONSIVE */
@media (max-width: 991.98px){
  .hbp-hero{
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .hbp-tabs{
    gap: 12px;
  }

  .hbp-tab-btn{
    min-width: 150px;
    font-size: 16px;
    padding: 12px 18px;
  }

  .hbp-location-visual{
    flex-direction: column;
    gap: 20px;
  }

  .hbp-vertical-line{
    width: 100%;
    height: 2px;
    min-width: 100%;
  }

  .hbp-location-truck{
    max-height: none;
  }

  .hbp-image-card img,
  .hbp-warranty-image img,
  .hbp-mattress-image img{
    min-height: auto;
  }
}

@media (max-width: 767.98px){
  .hbp-title{
    font-size: 2.2rem;
  }

  .hbp-section-title{
    font-size: 2rem;
  }

  .hbp-description,
  .hbp-location-text p,
  .hbp-text-block p{
    font-size: 14px;
    line-height: 1.7;
  }

  .hbp-tab-btn{
    width: 100%;
    max-width: 320px;
  }
}
/* =========================================
   DELIVERY INFO BLOCKS
========================================= */
.dp-info-block {
  padding: 80px 0;
  overflow: hidden;
}

.dp-info-block--dark {
  background: #737373;
}

.dp-info-block--light {
  background: #ececec;
}

/* copy columns */
.dp-info-copy {
  max-width: 100%;
}

.dp-info-copy--left {
  text-align: left;
}

.dp-info-copy--right {
  text-align: left;
}

/* titles */
.dp-info-title {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 2.7vw, 3.8rem);
}

.dp-info-title--light {
  color: #f8f5f2;
}

.dp-info-title--dark {
  color: #000;
}

/* divider line */
.dp-info-divider {
  width: 100%;
  max-width: 360px;
  height: 1px;
  margin: 18px 0 18px;
}

.dp-info-divider--light {
  background: rgba(255, 255, 255, 0.65);
}

.dp-info-divider--dark {
  background: rgba(0, 0, 0, 0.45);
}

/* body text */
.dp-info-text {
  margin: 0 0 18px;
  font-size: clamp(0.98rem, 1vw, 1.2rem);
  line-height: 1.45;
  font-weight: 400;
  max-width: 360px;
}

.dp-info-text--light {
  color: #f5f5f5;
}

.dp-info-text--dark {
  color: #111;
}

.dp-info-note {
  font-style: italic;
  font-weight: 700;
}

/* center card */
.dp-video-poster-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4.8;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dp-video-poster-card:hover {
  transform: translateY(-4px);
}

.dp-video-poster-card--light {
  background: transparent;
}

.dp-video-poster-card--soft {
  background: transparent;
}

.dp-video-poster-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.dp-video-poster-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.dp-video-poster-caption {
  margin-top: 26px;
  text-align: center;
  font-size: clamp(0.95rem, 0.9vw, 1.05rem);
  line-height: 1.4;
  color: #111;
}

.dp-video-poster-caption-red {
  color: #c40000;
  font-weight: 700;
}

/* spacing fine-tuning */
.dp-info-block .row {
  min-height: 420px;
}

/* DESKTOP wide tuning */
@media (min-width: 1200px) {
  .dp-info-block {
    padding: 95px 0;
  }

  .dp-info-block .container {
    max-width: 1320px;
  }

  .dp-info-block .row {
    justify-content: center;
    column-gap: 28px;
  }

  .dp-info-title {
    font-size: 2em;
  }

  .dp-info-text {
    font-size: clamp(0.95rem, 0.95vw, 1.1rem);
    max-width: 340px;
  }

  .dp-video-poster-card {
    max-width: 320px;
  }
}

/* tablet */
@media (max-width: 991.98px) {
  .dp-info-block {
    padding: 65px 0;
  }

  .dp-info-copy--left,
  .dp-info-copy--right {
    text-align: center;
  }

  .dp-info-title {
    font-size: clamp(1.9rem, 5vw, 3rem);
  }

  .dp-info-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .dp-info-text {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .dp-info-block .row {
    min-height: auto;
  }

  .dp-video-poster-card {
    max-width: 320px;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .dp-info-block {
    padding: 50px 0;
  }

  .dp-info-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    line-height: 1.05;
  }

  .dp-info-divider {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .dp-info-text {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .dp-video-poster-card {
    max-width: 280px;
  }

  .dp-video-poster-logo {
    width: 150px;
  }

  .dp-video-poster-caption {
    font-size: 0.92rem;
    margin-top: 18px;
  }
}
.delivery-guide-section{
  background:#f5f5f5;
  overflow:hidden;
}

/* HEADER */
.guide-header{
  margin-bottom:70px;
}

.guide-header h2{
  font-size: 2rem;
  font-weight:800;
  color:#c40000;
  line-height:1.1;
  margin-bottom:25px;
  letter-spacing:-1px;
}

.guide-line{
  width:100%;
  max-width:900px;
  height:2px;
  background:#cfcfcf;
  margin:auto;
}

/* MAIN */
.guide-wrapper{
  position:relative;
}

/* LEFT */
.guide-intro{
  font-size: 1rem;
  line-height:1.7;
  color:#222;
  margin-bottom:40px;
}

.guide-tips h4{
  font-size: 2rem;
  font-weight:800;
  margin-bottom:20px;
  color:#000;
}

.guide-tips ul{
  padding-left:25px;
  margin:0;
}

.guide-tips li{
  font-size: 1rem;
  line-height:1.8;
  margin-bottom:20px;
  color:#111;
}

.guide-tips strong{
  font-weight:800;
}

/* RIGHT */
.guide-right-col{
  position:relative;
}

.guide-divider{
  position:absolute;
  left:0;
  top:0;
  width:2px;
  height:100%;
  background:#d60000;
}

.guide-right-content{
  padding-left:50px;
}

/* FLOOR PLANS */
.floorplans-block h3{
  font-size: 2rem;
  font-weight:300;
  color:#444;
  margin-bottom:35px;
}

.floorplans-grid{
  display:flex;
  gap: 0px;
  flex-wrap:wrap;
}

.plan-card{
  width: 136px;
  height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.4s ease;
}

.plan-card:hover{
  transform:translateY(-8px) scale(1.03);
}

.plan-card img{
  width:78%;
  object-fit:contain;
}

/* DOTS */
.plan-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
}

.plan-dots span{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#bdbdbd;
}

.plan-dots span.active{
  background:#8f8f8f;
}

/* NOTICE */
.important-notice{
  margin-top: 24px;
  background:#e9e9e9;
  border-radius:22px;
  display:flex;
  overflow:hidden;
  box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.notice-bar{
  width:14px;
  background:#d40000;
  flex-shrink:0;
}

.notice-content{
  padding:38px 40px;
}

.notice-content h5{
  color:#d40000;
  font-size: 2rem;
  font-weight:800;
  margin-bottom:18px;
}

.notice-content p{
  font-size: 1rem;
  line-height:1.8;
  color:#222;
  margin-bottom:20px;
}

.notice-content strong{
  display:block;
  font-size: 1rem;
  line-height:1.7;
  font-weight:800;
  color:#000;
}

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

  .guide-header h2{
    font-size:54px;
  }

  .floorplans-block h3{
    font-size:42px;
  }

}

@media(max-width:991px){

  .guide-header{
    margin-bottom:50px;
  }

  .guide-header h2{
    font-size:42px;
  }

  .guide-divider{
    display:none;
  }

  .guide-right-content{
    padding-left:0;
    margin-top:50px;
  }

  .floorplans-block h3{
    font-size:34px;
  }

  .guide-intro,
  .guide-tips li,
  .notice-content p,
  .notice-content strong{
    font-size:18px;
  }

}

@media(max-width:767px){

  .guide-header h2{
    font-size:34px;
  }

  .guide-tips h4{
    font-size:28px;
  }

  .floorplans-grid{
    justify-content:center;
  }

  .plan-card{
    width:140px;
    height:140px;
  }

  .notice-content{
    padding:28px;
  }

}
/* =========================
   UNIVERSAL VIEWER
========================= */
.universal-viewer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.universal-viewer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.universal-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.universal-viewer__content {
  position: relative;
  z-index: 2;
  width: min(95vw, 1200px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.universal-viewer__media {
  width: 100%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.universal-viewer__media img,
.universal-viewer__media video {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  background: #000;
}

.universal-viewer__media video {
  width: auto;
  min-width: min(90vw, 420px);
}

.universal-viewer__close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, background 0.2s ease;
}

.universal-viewer__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

body.viewer-open {
  overflow: hidden;
}

/* cursor bonito para indicar que se puede ampliar */
[data-lightbox] {
  cursor: pointer;
}

/* en mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil */
@media (max-width: 768px) {
  .universal-viewer__content {
    width: 100vw;
    padding: 14px;
  }

  .universal-viewer__close {
    top: 10px;
    right: 10px;
    position: fixed;
  }

  .universal-viewer__media img,
  .universal-viewer__media video {
    max-height: 80vh;
    border-radius: 10px;
  }
}

/* BADGE */
.hbp-badge {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  background: rgba(217,4,41,0.1);
  color: #d90429;
  border-radius: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* ACTIONS */
.hbp-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary-pro {
  background: #be0c11;
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  
}

.btn-primary-pro:hover {
  color:#fff;
  transform: translateY(-3px);

}

/* OUTLINE BUTTON */
.btn-outline-pro {
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #fff;
}

.btn-outline-pro:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-3px);
}
/* SECTION */
.hbp-shipping-section {
  background: #f8f9fb;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
}

.section-subtitle {
  color: #666;
  font-size: 16px;
}

/* TABS */
.hbp-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hbp-tab-btn {
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  background: #fff;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid #eee;
  outline: none;
}

.hbp-tab-btn:hover {
  background: #111;
  color: #fff;
}

.hbp-tab-btn.active {
  background: #be0c11;
  color: #fff;
  outline: none;
}

/* CONTENT */
.hbp-tab-content {
  display: none;
}

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

/* CARD */
.hbp-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* PRICE BADGE */
.hbp-price {
  display: inline-block;
  background: rgba(217,4,41,0.1);
  color: #d90429;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* IMAGE BOX */
.hbp-image-box {
  border-radius: 20px;
  overflow: hidden;
}

.hbp-image-box img {
  transition: 0.5s;
}

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

/* SECTION */
.hbp-info-section {
  background: #fff;
}

/* VIDEO CARD */
.hbp-video-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.hbp-video-card video {
  width: 100%;
  display: block;
}

/* TITLE */
.hbp-section-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hbp-section-title span {
  color: #d90429;
}

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

/* TEXT */
.hbp-text-block p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* LIST */
.hbp-list {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.hbp-list li {
  position: relative;
  padding: 0px 16px;
  margin: 14px 0;
  color: #444;
}

/* CUSTOM BULLET */
.hbp-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d90429;
  font-size: 14px;
}

/* HOVER VIDEO */
.hbp-video-card:hover video {
  transform: scale(1.02);
  transition: 0.4s;
}

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

  .hbp-info-section {
    text-align: center;
  }

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

  .hbp-list li {
    text-align: left;
  }
}

/* SECTION */
.hbp-mattresses-section {
  background: #f8f9fb;
}

/* IMAGE CARD */
.hbp-mattress-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.hbp-mattress-card img {
  transition: 0.5s;
}

.hbp-mattress-card:hover img {
  transform: scale(1.05);
}

/* TITLE */
.hbp-section-title {
  font-size: 34px;
  font-weight: 600;
}

.hbp-section-title span {
  color: #be0c11;
}

/* LINE */
.hbp-title-line {
  width: 60px;
  height: 3px;
  background: #d90429;
  margin: 15px 0 20px;
}

/* TEXT */
.hbp-text-block p {
  color: #555;
  line-height: 1.7;
}

/* ALERT BOX */
.hbp-alert {
  background: rgba(217,4,41,0.08);
  border-left: 4px solid #d90429;
  padding: 15px 20px;
  border-radius: 10px;
  color: #333;
  font-size: 15px;
}

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

  .hbp-mattresses-section {
    text-align: center;
  }

  .hbp-title-line {
    margin: 15px auto 20px;
  }

  .hbp-alert {
    text-align: left;
  }
}

/* BACKGROUND */
.dp-info-block--dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* TITLE */
.dp-info-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}

.dp-info-title span {
  color: #bf0c04;
}

/* DIVIDER */
.dp-info-divider {
  width: 60px;
  height: 3px;
  background: #ff3b3b;
  margin: 20px 0;
}

/* TEXT */
.dp-info-text {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-size: 15.5px;
}

/* VIDEO CARD */
.dp-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  cursor: pointer;
}

.dp-video-card video {
  width: 100%;
  display: block;
  transition: 0.5s;
}

/* HOVER ZOOM */
.dp-video-card:hover video {
  transform: scale(1.05);
}

/* PLAY OVERLAY */
.dp-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: 0.3s;
}

.dp-video-card:hover .dp-video-overlay {
  background: rgba(0,0,0,0.5);
}

/* PLAY BUTTON */
.play-btn {
  width: 70px;
  height: 70px;
  background: #ff3b3b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(255,59,59,0.5);
  transition: 0.3s;
}

.dp-video-card:hover .play-btn {
  transform: scale(1.1);
}

/* CTA BUTTON */
.dp-btn-primary {
  display: inline-block;
  padding: 12px 22px;
  background: #be0c11;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

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

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

  .dp-info-title {
    font-size: 30px;
    text-align: center;
  }

  .dp-info-divider {
    margin: 15px auto;
  }

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

  .dp-btn-primary {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}


/* BACKGROUND */
.dp-info-block--light {
  background: #f8f9fb;
  color: #111;
}

/* TITLE */
.dp-info-title--dark {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.dp-info-title--dark span {
  color: #bf0c04;
}

/* DIVIDER */
.dp-info-divider--dark {
  width: 60px;
  height: 3px;
  background: #d90429;
  margin: 20px 0;
}

/* TEXT */
.dp-info-text--dark {
  color: #555;
  line-height: 1.7;
}

/* NOTE */
.dp-info-note {
  margin-top: 15px;
  font-size: 14px;
  color: #d90429;
  font-weight: 500;
}

/* VIDEO CARD */
.dp-video-card.light {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  cursor: pointer;
}

.dp-video-card video {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.dp-video-card:hover video {
  transform: scale(1.05);
}

/* OVERLAY */
.dp-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: 0.3s;
}

.dp-video-card:hover .dp-video-overlay {
  background: rgba(0,0,0,0.35);
}

/* PLAY BUTTON */
.play-btn.light {
  width: 65px;
  height: 65px;
  background: #fff;
  color: #d90429;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.dp-video-card:hover .play-btn {
  transform: scale(1.1);
}

/* CTA BUTTON */
.dp-btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid #be0c11;
  color: #d90429;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.dp-btn-outline:hover {
  background: #be0c11;
  color: #fff;
  transform: translateY(-2px);
}

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

  .dp-info-title--dark {
    font-size: 28px;
    text-align: center;
  }

  .dp-info-divider--dark {
    margin: 15px auto;
  }

  .dp-info-text--dark {
    text-align: center;
  }

  .dp-btn-outline {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}