/* Color rojo para títulos */
.red-color { 
  color: red !important;
}

/* Base circle style */
.circle { 
   width: 140px;
   height: 140px;
   background: red; 
   -moz-border-radius: 70px; 
   -webkit-border-radius: 70px; 
   border-radius: 70px;
}

/* content-2 specific circle background: place behind the image block */
#content-2 .circle-wrap { 
  position: relative;
  width: 60%;
  max-width: 500px;
  margin: 0 auto;
}

#content-2 .left-column.txt-block,
#content-2 .right-column.txt-block {
  position: relative;
  z-index: 10;
  text-shadow: 0 0 7px #f0f0f0;
}

/*#content-2 .left-column.txt-block {
  padding-bottom: 5%;
}*/

/*#content-2 .right-column.txt-block {
  padding-top: 2em;
}*/

#content-2 .circle { 
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* mantiene proporción cuadrada */
  background: #223776;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

/* Image block sits on top of circle */
#content-2 .img-block { 
  position: relative; 
  z-index: 1;
  padding: 30px;
}

/* Video and image responsive sizing */
#content-2 .img-block video,
#content-2 .img-block img { 
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Video specific styles */
#content-2 .img-block video {
  object-fit: cover;
}

#content-2 .img-block video {
  transition: transform 0.4s ease;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  #content-2 .circle-wrap {
    max-width: 450px;
  }
  #content-2 .img-block {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  #content-2 .circle-wrap {
    max-width: 400px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  #content-2 .img-block {
    padding: 20px;
  }
}

@media (min-width: 991px) {
  #content-2.content-section .col-lg-6.pt-60 { padding-top: 0; }
}

@media (max-width: 767px) {
  #content-2 .circle-wrap {
    max-width: 350px;
  }
  #content-2 .img-block {
    padding: 18px;
  }
}

@media (max-width: 575px) {
  #content-2 .circle-wrap {
    max-width: 300px;
  }
  #content-2 .img-block {
    padding: 15px;
  }
  #content-2 .circle {
    opacity: 0.95;
  }
}

/* Background video style */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* fbox-ico circle background: decorative circle behind feature box icons */
.fbox-ico-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 35px;
}

/* decorative circle positioned behind the icon */
.fbox-ico-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  background: #1C6BC8;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.15;
}

/* ensure icon sits on top of circle */
.fbox-ico-wrap .fbox-ico {
  position: relative;
  z-index: 1;
}

/* FAQ accordion styles with card-like white background and padding */
.questions-holder {
  background: #ffffff;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid #efefef;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-toggle {
  display: block;
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: 0;
  padding: 1.25rem 1.5rem;
  font: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-toggle:hover {
  background-color: #fafafa;
}

.faq-toggle:focus {
  outline: 2px solid rgba(28,107,200,0.25);
  outline-offset: -3px;
}

.faq-toggle[aria-expanded="true"] {
  background-color: #f5f5f5;
  font-weight: 600;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  background: #ffffff;
  overflow: hidden;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.pa-25 { 
  padding: 25px; 
}

.fbox-3.bg-red {
  background-color: #DB1023 !important; /* rojo */
}

.fbox-3-wrapper .fbox-txt {
  min-height: 10em !important; /* altura completa */
}

.fbox-3.bg-red .fbox-ico {
  color: #ffffff !important; /* icono blanco */
}

.fbox-3.bg-red .fbox-txt h5,
.fbox-3.bg-red .fbox-txt .h5-xs {
  color: #ffffff !important; /* título blanco */
}

.fbox-3.bg-red .fbox-txt p,
.fbox-3.bg-red .fbox-txt .p-md {
  color: #ffffff !important; /* texto blanco */
}
/* Sección de FAQs con fondo rojo */
.bg-red {
  background-color: #DB1023 !important; /* rojo */
  color: #ffffff !important; /* texto blanco */
}

.is-checked {
  font-weight: 800 !important; /* negrita */
}

.categories-list a {
  font-weight: 600;
}

ul.thumbnails {
    display: grid;
    -moz-column-gap: 10px;
    column-gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

ul.thumbnails li {
    height: 150px;
    border: solid 1px #bbbbbb;
    border-radius: 5px;
    overflow: hidden;
}

ul.thumbnails li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}