/*

TemplateMo 588 ebook landing

https://templatemo.com/tm-588-ebook-landing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #1E3A8A;
  --secondary-color:              #10B981;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #F4A261;
  --custom-btn-bg-hover-color:    #E76F51;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --link-hover-color:             #E76F51;

  --body-font-family:             'Unbounded', sans-serif;

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  16px;
  --menu-font-size:               12px;
  --btn-font-size:                14px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border: 4px solid var(--white-color);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.avatar-image-left {
  position: relative;
  left: -10px;
}

.avatar-image-left + .avatar-image-left {
  left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -30px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -40px;
}

.avatar-group,
.reviews-group {
  position: relative;
  z-index: 22;
}

.reviews-group {
  display: inline-block;
  vertical-align: top;
}

.reviews-group strong {
  font-size: var(--h3-font-size);
  margin-right: 10px;
}


/*---------------------------------------
  CUSTOM LINK              
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: var(--white-color);
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
}

.link--kale::before {
  height: 10px;
  top: 100%;
  opacity: 0;
}

.link--kale:hover::before {
  opacity: 1;
  animation: lineUp 0.3s ease forwards;
}

@keyframes lineUp {
    0% {
      transform-origin: 50% 100%;
      transform: scale3d(1, 0.045, 1);
    }

    50% {
      transform-origin: 50% 100%;
      transform: scale3d(1, 1, 1);
    }

    51% {
      transform-origin: 50% 0%;
      transform: scale3d(1, 1, 1);
    }

    100% {
      transform-origin: 50% 0%;
      transform: scale3d(1, 0.045, 1);
    }
}

.link--kale::after {
    content: '';
    transition: opacity 0.3s;
    opacity: 0;
    transition-delay: 0s;
}

.link--kale:hover::after {
    opacity: 1;
    transition-delay: 0.3s;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.btn-naira {
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn-naira::before {
  content: '';
  position: absolute;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--primary-color);
  top: -50%;
  z-index: -1;
  -webkit-transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
  transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
}

.btn-naira.btn-inverted::before {
  background: var(--primary-color);
}

.btn-naira > span {
  display: block;
  vertical-align: middle;
}

.btn-naira .btn-icon {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  color: var(--white-color);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.btn-naira > span,
.btn-naira .btn-icon {
  padding: 10px 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-naira:hover::before {
  -webkit-animation: anim-naira-1 0.3s forwards ease-in;
  animation: anim-naira-1 0.3s forwards ease-in;
}

@-webkit-keyframes anim-naira-1 {
  50% {
    -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes anim-naira-1 {
  50% {
    -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
  }
}

.btn-naira:hover {
  background-color: var(--primary-color);
  -webkit-transition: background-color 0s 0.3s;
  transition: background-color 0s 0.3s;
}

.btn-naira.btn-inverted:hover {
  background-color: var(--primary-color);
}

.btn-naira:hover .btn-icon {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn-naira:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: rgba(0, 0, 0, 0.85);
}

.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}

.navbar-brand-icon {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  vertical-align: top;
  color: var(--white-color);
  font-size: var(--h6-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}

.navbar-brand-icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10px;
  right: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
  transform: rotate(65deg);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: url('../images/businessman-sitting-by-table-cafe.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 50px;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero-section .row {
  position: relative;
  z-index: 22;
  top: 100px;
}

.hero-image {
  position: relative;
  z-index: 2;
  bottom: 100px;
  display: block;
  margin: auto;
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: calc(90vh - 88px);
    padding-top: 350px;
  }
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-section {
  background-color: var(--custom-btn-bg-color);
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.featured-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 450px 450px;
  border-color: transparent transparent var(--white-color) transparent;
  pointer-events: none;
}


/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  background-image: url('../images/businessman-sitting-by-table-cafe.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.45);
}

.custom-block .avatar-image {
  min-width: 60px;
  margin: auto;
  left: 0;
}

.custom-block .bi-star {
  color: var(--white-color);
}

.custom-block .bi-star-fill {
  color: var(--secondary-color);
}

.custom-block-image-wrap {
  background-color: rgba(231, 111, 81, 0.85);
  border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: auto;
  padding: 25px 45px;
}

.custom-block-info {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.custom-block-info strong,
.custom-block-info p {
  color: var(--white-color);
}

.custom-block-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}


/*---------------------------------------
  THE BOOK SECTION            
-----------------------------------------*/
.book-section-info {
  padding-top: 40px;
  padding-right: 40px;
  padding-left: 40px;
}

.nav-pills {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: sticky;
  top: 120px;
  padding: 30px;
}

.nav-pills .nav-link {
  background: var(--section-bg-color);
  color: var(--p-color);
  border-radius: var(--border-radius-large);
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 15px 30px;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active, 
.nav-pills .show>.nav-link {
  background: var(--primary-color);
  color: var(--white-color);
}

.scrollspy-example-2 {
  padding-right: 30px;
  padding-left: 30px;
}

.scrollspy-example-item {
  border-bottom: 5px dotted var(--p-color);
  min-height: 300px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.scrollspy-example-item:last-child {
  border-bottom: 0;
}

.scrollspy-example-item-image {
  border-radius: var(--border-radius-medium);
}

.scrollspy-example-item h5 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 80px 40px 40px 40px;
  text-align: center;
}

.blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}


/*---------------------------------------
  AUTHOR SECTION            
-----------------------------------------*/
.author-section {
  background-image: url('../images/circle-scatter-haikei.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  position: relative;
  margin-top: 50px;
}

.author-image {
  border: 10px solid var(--secondary-color);
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 350px;
  height: 350px;
  object-fit: cover;
}


/*---------------------------------------
  DIVIDER SECTION               
-----------------------------------------*/
.divider-section {
  background-image: url('../images/wave-haikei.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--custom-btn-bg-color);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 450px 450px 0 0;
  border-color: var(--white-color) transparent transparent;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
}

.contact-section p {
  color: var(--white-color);
  font-size: var(--h6-font-size);
}

.contact-link {
  color: var(--white-color);
}

.contact-section .copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  EBOOK DOWNLOAD FORM               
-----------------------------------------*/
.ebook-download-form {
  border-radius: var(--border-radius-medium);
  position: relative;
  z-index: 2;
  padding: 50px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--p-color);
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 40px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--primary-color);
}

.custom-form .form-control:focus + .input-group-text .custom-form-icon,
.custom-form .form-control:hover + .input-group-text .custom-form-icon {
  opacity: 1;
}

.custom-form .input-group-text {
  background: transparent;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 10px;
}

.custom-form-icon {
  position: relative;
  z-index: 22;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-radius: var(--border-radius-large);
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: rgba(0, 0, 0, 0.65);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .scrollspy-example-2 .scrollspy-example-item:first-child {
    padding-top: 0;
  }

  .scrollspy-example-item h5 {
    padding-bottom: 5px;
  }

  .book-section-info {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .ebook-download-form {
    padding: 30px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .btn-naira > span, 
  .btn-naira .btn-icon {
    font-size: 12px;
    padding: 5px 15px;
  }
}

/* ===== FIX LOGO CERTIC GLOBAL ===== */

/* Control del navbar */
.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Logo */
.brand-logo {
  max-height: 65px;   /* tamaño correcto en desktop */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Evita que el navbar crezca */
.navbar-brand {
  padding: 0;
  margin: 0;
}

/* Tablets */
@media (max-width: 991px){
  .brand-logo{
    max-height: 55px;
  }
}

/* Móviles */
@media (max-width: 576px){
  .brand-logo{
    max-height: 48px;
  }
}

/* ============================= */
/* CERTIC GLOBAL - PALETA COLORES */
/* ============================= */

:root{
  --cert-blue: #1E3A8A;
  --cert-green:#10B981;
  --cert-gray: #6B7280;
  --cert-white:#FFFFFF;
}

/* Color principal (botones) */
.custom-btn{
  background: var(--cert-green) !important;
  border-color: var(--cert-green) !important;
  color: var(--cert-white) !important;
}
.custom-btn:hover{
  background: var(--cert-blue) !important;
  border-color: var(--cert-blue) !important;
}

/* Links del menú */
.navbar .nav-link{
  color: rgba(255,255,255,0.92) !important;
}
.navbar .nav-link.active,
.navbar .nav-link:hover{
  color: var(--cert-green) !important;
}

/* Texto destacado (antes naranja) */
.hero-section .text-warning,
.text-warning{
  color: var(--cert-green) !important;
}

/* Textos secundarios */
p, .text-muted{
  color: var(--cert-gray) !important;
}

/* ===== HERO CAROUSEL (CertIC) ===== */
.hero-carousel{
  border-radius: 18px;
  overflow: hidden;            /* recorta bordes redondeados */
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

/* Ajusta la altura sin deformar */
.hero-carousel-img{
  width: 100%;
  height: 520px;               /* escritorio */
  object-fit: cover;           /* recorta sin deformar */
}

/* Tablet */
@media (max-width: 991px){
  .hero-carousel-img{ height: 380px; }
}

/* Móvil */
@media (max-width: 576px){
  .hero-carousel-img{ height: 260px; }
}

/* Flechas un poco más visibles sobre imágenes */
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon{
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.55));
}

/* ===== FIX: HERO CAROUSEL se integra al layout del template ===== */

/* El template usa .hero-image como contenedor grande.
   Hacemos que el carrusel llene ese contenedor. */
.hero-image{
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero-image .hero-carousel,
.hero-image .carousel-inner,
.hero-image .carousel-item{
  width: 100%;
  height: 100%;
}

/* La imagen del carrusel debe comportarse como la imagen original */
.hero-carousel-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Mantén la estética (bordes y sombra), pero sin romper el tamaño */
.hero-carousel{
  border-radius: 18px;
  overflow: hidden;
}

/* Opcional: flechas más visibles */
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon{
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.65));
}

/* =========================
   NAVBAR CERTIC (BLANCA)
   ========================= */

/* Fondo blanco + sombra suave */
.navbar{
  background: rgba(255,255,255,0.96) !important;
  box-shadow: 0 10px 30px rgba(2,6,23,0.10);
  border-bottom: 1px solid rgba(2,6,23,0.06);
}

/* Color de los links (verde) */
.navbar .nav-link{
  color: var(--cert-green) !important;
  font-weight: 700;
}

/* Hover/activo: azul para contraste (o deja verde si prefieres) */
.navbar .nav-link:hover,
.navbar .nav-link.active{
  color: var(--cert-blue) !important;
}

/* Ícono hamburguesa (móvil) visible en fondo blanco */
.navbar-toggler{
  border-color: rgba(30,58,138,0.25) !important;
}
.navbar-toggler-icon{
  filter: invert(1) grayscale(1); /* hace visible el icono */
  opacity: 0.9;
}

/* ===== BOTÓN SOLICITAR (degradado Azul->Verde) ===== */
.navbar .btn.custom-btn.custom-border-btn{
  background: linear-gradient(135deg, var(--cert-blue), var(--cert-green)) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(2,6,23,0.08);
}

/* Hover del botón: un poquito más brillante */
.navbar .btn.custom-btn.custom-border-btn:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Icono del botón en blanco */
.navbar .btn .btn-icon{
  color: #fff !important;
}

/* ===============================
   NAVBAR BLANCA SÓLIDA (FIX REAL)
   =============================== */

/* Barra completamente opaca */
.navbar{
  background-color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
}

/* Evita que el hero "se vea a través" */
.navbar::before,
.navbar::after{
  display: none !important;
}

/* Si el template aplica transparencia en sticky */
.navbar.is-sticky,
.navbar.sticky-top{
  background-color: #ffffff !important;
  opacity: 1 !important;
}

/* Asegura que esté por encima del hero */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1050;
}

.brand-logo{
  background: transparent !important;
  padding: 0 !important;
}

.navbar{
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}


/* ===== LOGO CERTIC - TAMAÑO ===== */
.brand-logo{
  height: 75px;        /* antes ~55–60px */
  width: auto;
}

/* Tablets */
@media (max-width: 991px){
  .brand-logo{
    height: 60px;
  }
}

/* Móviles */
@media (max-width: 576px){
  .brand-logo{
    height: 52px;
  }
}


/* =========================
   HERO: carrusel integrado
   ========================= */

/* Asegura que la columna derecha sea un contenedor real */
.hero-image-wrap{
  position: relative;
  z-index: 2;
}

/* El template usa figure.hero-image con un tamaño; lo respetamos y llenamos */
.hero-image{
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
}

/* Carrusel debe llenar el contenedor del hero */
.hero-image .hero-carousel,
.hero-image .carousel-inner,
.hero-image .carousel-item{
  width: 100%;
  height: 100%;
}

/* Imágenes: siempre bien recortadas, sin deformar */
.hero-carousel-img{
  width: 100%;
  height: 520px;        /* escritorio */
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* Tablet */
@media (max-width: 991px){
  .hero-carousel-img{ height: 380px; }
}

/* Móvil */
@media (max-width: 576px){
  .hero-carousel-img{ height: 260px; }
}

/* Flechas visibles pero elegantes */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next{
  width: 12%;
  opacity: 0.9;
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon{
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.65));
}

.hero-section{
  background-image: none !important;
  background-color: #f8fafc; /* blanco suave */
}

.hero-section::after{
  display: none !important;
}

/* ==========================================
   FIX: el carrusel NO debe invadir la sección de abajo
   (quita offsets del template)
   ========================================== */

/* 1) El hero ya no usa height fijo del template */
.hero-section{
  height: auto !important;
  padding-top: 110px !important;   /* ajusta si quieres más/menos */
  padding-bottom: 70px !important;
}

/* 2) Quita el "top:100px" que baja toda la fila */
.hero-section .row{
  top: 0 !important;
}

/* 3) Quita el "bottom:100px" que hacía que la imagen se meta abajo */
.hero-image{
  bottom: 0 !important;
}

/* 4) Asegura que el bloque derecho se quede dentro del hero */
.hero-image-wrap{
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 5) (Opcional) Evita que algo se vea "encima" por z-index */
.hero-section{
  position: relative;
  z-index: 2;
}
.featured-section{
  position: relative;
  z-index: 1;
}

/* =========================
   ELIMINAR FRANJA NARANJA
   ========================= */
.featured-section{
  display: none !important;
}

.hero-full {
  padding: 0;
  min-height: 90vh;
}

.hero-bg {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* overlay profesional */
}

.hero-bg .container {
  position: relative;
  z-index: 2;
}

/* ===== FIX HERO: quitar franjas/offsets del template ===== */
.hero-section{
  padding-top: 0 !important;
  height: auto !important;
}

.hero-section .row{
  top: 0 !important;
}

.hero-image{
  bottom: 0 !important;
}

/* Evita espacios blancos por wrappers sticky */
.sticky-wrapper{
  position: sticky !important;
  top: 0;
}

/* Navbar SIEMPRE por encima */
.navbar, .sticky-wrapper { 
  z-index: 9999 !important; 
}

/* Evita que el hero se ponga encima */
.hero-section, .carousel, .carousel-inner, .carousel-item { 
  z-index: 1 !important; 
}

/* Quitar franja/sombra fantasma debajo del hero */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item{
  box-shadow: none !important;
  filter: none !important;
}

#heroCarousel .carousel-item > div{
  box-shadow: none !important;
}

/* Asegura que el hero no deje padding extra abajo */
.hero-section{
  padding-bottom: 0 !important;
}

/* Si el template te estaba empujando contenido con offsets */
.hero-section .row{ top: 0 !important; }
.hero-image{ bottom: 0 !important; }


/* Compensar navbar fijo al hacer click en menú */
.anchor-offset{
  scroll-margin-top: 110px; /* ajusta si tu navbar es más alto */
}

.text-justified {
  text-align: justify;
}

/* ===== NAV PILLS - SOBRE NOSOTROS (GRADIENTE CERTIC) ===== */

.nav-pills .nav-link {
  border-radius: 999px;
  font-weight: 700;
  color: #6b7280; /* gris elegante */
  background: #f1f8ff; /* fondo suave */
  margin-bottom: 14px;
  padding: 14px 22px;
  transition: all 0.35s ease;
}

/* ACTIVO */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ffffff;
  background: linear-gradient(135deg, #1E3A8A, #10B981);
  box-shadow: 0 14px 35px rgba(30, 58, 138, 0.25);
}

/* HOVER (opcional pero recomendado) */
.nav-pills .nav-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1E3A8A, #10B981);
}

.mission-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mission-icon {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    color: #ffffff;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-icon i {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}

.mission-icon span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
}

.mission-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.values-list{
  list-style: none;
  padding-left: 0;
  max-width: 900px;
}

.values-list li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  color: #374151; /* gris elegante */
  line-height: 1.6;
}

.values-list i{
  font-size: 1.4rem;
  margin-top: -3px;
  flex-shrink: 0;

  background: linear-gradient(135deg, #1E3A8A, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

.values-list strong{
  font-weight: 600;
}

.impartiality-list{
  list-style: none;
  padding-left: 0;
  max-width: 900px;
}

.impartiality-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #374151;
  line-height: 1.6;
}

.impartiality-list i{
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;

  background: linear-gradient(135deg, #1E3A8A, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* =========================
   SERVICIOS (HOME) - CERTIC
   ========================= */

.services-section{
  background: #fff;
}

.services-kicker{
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 8px;
}

.services-title{
  margin-bottom: 14px;
}

.services-lead{
  max-width: 86ch;
  margin: 0 auto;
  color: var(--p-color);
  line-height: 1.7;
}

/* Card base */
.service-card{
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: 0 18px 45px rgba(2,6,23,0.06);
  padding: 26px;
}

.service-card-head{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-icon-badge{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(16,185,129,0.12);
  color: var(--primary-color);
  flex: 0 0 auto;
}

.service-icon-badge i{
  font-size: 22px;
}

.service-card-title{
  font-size: 22px;
  margin: 0 0 8px 0;
}

.service-card-text{
  color: var(--p-color);
  margin: 0;
  line-height: 1.7;
}

/* Chips */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30,58,138,0.08);
  color: var(--p-color);
  border: 1px solid rgba(30,58,138,0.12);
}

/* Divider */
.service-divider{
  height: 1px;
  background: rgba(2,6,23,0.10);
  margin: 18px 0;
}

/* Links */
.service-link{
  font-weight: 800;
  color: var(--primary-color);
}
.service-link:hover{
  color: var(--secondary-color);
}

/* Buttons */
.btn-gradient{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  color: #fff !important;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 14px 34px rgba(30,58,138,0.18);
}

.btn-gradient:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-outline-soft{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(2,6,23,0.16);
  color: var(--primary-color) !important;
  font-weight: 800;
}

.btn-outline-soft:hover{
  background: rgba(30,58,138,0.05);
}

.service-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* Process flow */
.process-flow{
  margin-top: 18px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}

.step{
  min-width: 150px;
  max-width: 170px;
  border-radius: 18px;
  padding: 14px 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 14px 34px rgba(2,6,23,0.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.step-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
}

.step-icon i{
  font-size: 20px;
}

.step-text{
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

/* Arrows between steps */
.arrow{
  display: grid;
  place-items: center;
  color: rgba(2,6,23,0.45);
  font-size: 18px;
  min-width: 22px;
}

/* Banner final */
.services-banner{
  border-radius: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(16,185,129,0.22);
  background: rgba(16,185,129,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.services-banner-title{
  margin: 0 0 6px 0;
  font-size: 22px;
}

.services-banner-text{
  color: var(--p-color);
}

/* Responsive tweaks */
@media (max-width: 991px){
  .service-card{
    padding: 22px;
  }
  .process-flow{
    gap: 10px;
  }
  .step{
    min-width: 145px;
  }
}

@media (max-width: 576px){
  .services-lead{
    text-align: left;
  }
  .service-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .btn-gradient, .btn-outline-soft{
    width: 100%;
  }
}


/* =========================
   CertIC GLOBAL – Subpágina
   Productos y Reglamentos
   (pegar al final del CSS)
========================= */

:root{
  --cg-primary: #1E3A8A;   /* azul */
  --cg-secondary: #10B981; /* verde */
  --cg-ink: #0b1220;
  --cg-muted: rgba(11, 18, 32, 0.62);
  --cg-border: rgba(11, 18, 32, 0.10);
  --cg-card: #ffffff;
  --cg-soft: rgba(16,185,129,0.08);
  --cg-soft-2: rgba(30,58,138,0.08);
  --cg-radius: 22px;
}

/* HERO */
.cg-page-hero{
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cg-page-hero__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.cg-page-hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 22% 55%,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.34) 45%,
      rgba(0,0,0,0.12) 70%,
      rgba(0,0,0,0.00) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25));
}

.cg-page-hero__content{
  position: relative;
  z-index: 2;
  padding: 44px 0;
  color: #fff;
}

.cg-breadcrumbs{
  font-weight: 700;
  opacity: 0.92;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.cg-breadcrumbs a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.cg-dot{ margin: 0 10px; opacity: .75; }

.cg-page-title{
  font-weight: 800;

  background: linear-gradient(
    90deg,
    #10B981 0%,   /* azul corporativo */
    #1E3A8A 100%  /* verde corporativo */
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.cg-page-subtitle{
  max-width: 92ch;
  margin: 0;
  color: #ffffff !important;
  text-shadow: 0 8px 22px rgba(0,0,0,0.55);
  line-height: 1.6;
}

.cg-hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* BOTONES */
.cg-btn-primary{
  background: linear-gradient(135deg, var(--cg-primary), var(--cg-secondary));
  color:#fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 800 !important;
  box-shadow: 0 16px 40px rgba(30,58,138,0.25);
}

.cg-btn-primary:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.cg-btn-ghost{
  background: rgba(255,255,255,0.10) !important;
  color:#fff !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 800 !important;
  backdrop-filter: blur(6px);
}

.cg-btn-ghost:hover{
  background: rgba(255,255,255,0.14) !important;
}

/* ALERT */
.cg-alert{
  display:flex;
  gap: 14px;
  border-radius: var(--cg-radius);
  padding: 18px 18px;
  background: linear-gradient(180deg, var(--cg-soft), rgba(255,255,255,0.75));
  border: 1px solid rgba(16,185,129,0.25);
  box-shadow: 0 18px 40px rgba(11,18,32,0.06);
}

.cg-alert__icon{
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(16,185,129,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--cg-secondary);
  font-size: 22px;
  flex: 0 0 48px;
}

.cg-alert__title{
  font-weight: 900;
  color: var(--cg-ink);
  font-size: 18px;
  margin-bottom: 4px;
}

.cg-alert__text{
  color: rgba(11,18,32,0.72);
  line-height: 1.6;
  font-weight: 600;
}

.cg-alert__note{
  margin-top: 8px;
  font-weight: 900;
  color: var(--cg-primary);
}

/* HEAD */
.cg-section-head{ margin-bottom: 14px; }
.cg-section-title{
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--cg-ink);
  margin-bottom: 6px;
}
.cg-section-desc{
  color: rgba(11,18,32,0.65);
  font-weight: 600;
  margin: 0;
}

/* TABLE CARD */
.cg-table-card{
  background: var(--cg-card);
  border: 1px solid var(--cg-border);
  border-radius: var(--cg-radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11,18,32,0.06);
}

.cg-table{
  margin: 0;
}

.cg-table thead th{
  background: linear-gradient(135deg, rgba(30,58,138,0.10), rgba(16,185,129,0.10));
  color: var(--cg-ink);
  font-weight: 900;
  border-bottom: 1px solid rgba(11,18,32,0.10) !important;
  padding: 16px 16px;
}

.cg-table td{
  padding: 16px 16px;
  border-top: 1px solid rgba(11,18,32,0.08);
  color: rgba(11,18,32,0.78);
  font-weight: 600;
  line-height: 1.55;
  vertical-align: top;
}

.cg-muted{ color: rgba(11,18,32,0.55); font-weight: 700; }
.cg-hr{ border-color: rgba(11,18,32,0.10); margin: 12px 0; }

/* PILLS */
.cg-pill{
  display:inline-block;
  padding: 0px 14px;
  border-radius: 999px;
  background: rgba(30,58,138,0.12);
  color: var(--cg-primary);
  font-weight: 900;
  font-size: 18px;
  margin-right: 6px;
  border: 1px solid rgba(30,58,138,0.18);
  min-width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cg-pill--alt{
  background: rgba(16,185,129,0.12);
  color: #0b7a57;
  border-color: rgba(16,185,129,0.22);
}

/* ACTIONS BOTTOM */
.cg-page-actions{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cg-page-actions .cg-btn-ghost{
  background: rgba(30,58,138,0.08) !important;
  color: var(--cg-primary) !important;
  border: 1px solid rgba(30,58,138,0.18) !important;
}

.cg-page-actions .cg-btn-ghost:hover{
  background: rgba(30,58,138,0.10) !important;
}

/* FOOTER */
.cg-footer{
  background: linear-gradient(135deg, var(--cg-primary), var(--cg-secondary));
  color: rgba(255,255,255,0.92);
  padding: 18px 0;
  margin-top: 20px;
}

.cg-footer__row{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 800;
}

.cg-footer__right{ opacity: 0.92; }

/* Responsive tweaks */
@media (max-width: 768px){
  .cg-page-hero{ min-height: 64vh; }
  .cg-page-title{ font-size: 30px; }
}


/* ================================
   CERTIC GLOBAL - Info Cards (Sección 4)
   ================================ */
.cg-info-card{
  position: relative;
  border-radius: 22px;
  min-height: 340px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.cg-info-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.0) 100%),
    radial-gradient(700px 260px at 20% 30%, rgba(0,0,0,0.2), rgba(0,0,0,0)) !important;
}

.cg-info-content{
  position: relative;
  padding: 28px 26px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.cg-btn-gradient{
  background: linear-gradient(135deg, #1E3A8A, #10B981);
  color: #fff !important;
  border: none !important;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 16px 40px rgba(30,58,138,0.25);
}

.cg-btn-gradient:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cg-info-carta{
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 40px;
  margin-top: 6 px;
  margin-bottom: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  border-left: 6px solid #1E3A8A; /* azul CertIC */
}

.cg-info-text{
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 18px;
}

.cg-info-text:last-child{
  margin-bottom: 0;
}

.cg-beneficios-card{
  background: #fff;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
  max-width: 900px;     /* 👈 clave */
  margin-left: auto;
  margin-right: auto;
}

.cg-beneficios{
  list-style: none;
  margin: 0;
  padding: 0;
}

.cg-beneficios li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: #6b7280;
}

.cg-beneficios li + li{
  border-top: 1px solid rgba(0,0,0,.06);
}

.cg-beneficios i{
  margin-top: 3px;
  color: #10B981; /* verde CertIC */
  font-size: 18px;
  flex: 0 0 auto;
}

.cg-legal-card{
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 30px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
}

.cg-legal-item{
  display: flex;
  gap: 16px;
  padding: 16px 0;
}

.cg-legal-item + .cg-legal-item{
  border-top: 1px solid rgba(0,0,0,.08);
}

.cg-legal-icon{
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30,58,138,.08); /* azul CertIC suave */
  color: #1E3A8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cg-legal-content h4{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #1E3A8A;
}

.cg-legal-content p{
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 576px){
  .cg-legal-item{
    align-items: flex-start;
  }
}

/* ================================
   SECCIÓN 5: Contacto + Quejas
   ================================ */

.cg-contact{
  position: relative;
  overflow: hidden;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;

  /* Fondo base */
  background: #F8FAFC; /* blanco frío */
}

.cg-contact-card{
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

.cg-contact-card--light{
  background: rgba(255,255,255,0.78);
}

.cg-contact-head .cg-kicker{
  color: #1E3A8A;
  font-weight: 900;
  margin: 0;
}

.cg-contact-head .cg-title{
  margin: 8px 0 6px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cg-contact-head .cg-lead{
  color: rgba(15,23,42,0.70);
  line-height: 1.6;
}

/* Tabs */
.cg-tabs .nav-link{
  border-radius: 999px;
  font-weight: 800;
  padding: 10px 14px;
  color: rgba(15,23,42,0.75);
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.08);
  margin-right: 8px;
}

.cg-tabs .nav-link.active{
  color: #fff;
  background: linear-gradient(135deg, #1E3A8A, #10B981);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(30,58,138,0.18);
}

/* Form */
.cg-form .form-label{
  font-weight: 800;
  color: rgba(15,23,42,0.75);
}

.cg-form .form-control,
.cg-form .form-select{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15,23,42,0.12);
}

.cg-form-note{
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(30,58,138,0.08);
  border-left: 5px solid #1E3A8A;
  color: rgba(15,23,42,0.75);
  margin-bottom: 14px;
}

.cg-form-note--warn{
  background: rgba(16,185,129,0.10);
  border-left-color: #10B981;
}

/* Captcha */
.cg-captcha{
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.65);
}

.cg-captcha-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cg-captcha-label{
  font-weight: 900;
  color: rgba(15,23,42,0.75);
}

.cg-captcha-refresh{
  border: 1px solid rgba(15,23,42,0.18);
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Botones */
.cg-btn-gradient{
  background: linear-gradient(135deg, #1E3A8A, #10B981);
  color: #fff !important;
  border: none !important;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 40px rgba(30,58,138,0.25);
}

.cg-btn-gradient:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cg-btn-outline{
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  border: 1px solid rgba(15,23,42,0.18);
  background: rgba(255,255,255,0.65);
  color: rgba(15,23,42,0.85);
}

/* Lista de contacto */
.cg-contact-list{
  display: grid;
  gap: 14px;
}

.cg-contact-item{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.cg-contact-item i{
  font-size: 20px;
  color: #1E3A8A;
  margin-top: 2px;
}

.cg-contact-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15,23,42,0.55);
  font-weight: 900;
}

.cg-contact-value{
  color: rgba(15,23,42,0.78);
  font-weight: 700;
}

.cg-contact-value a{
  color: rgba(15,23,42,0.78);
  text-decoration: none;
}

.cg-contact-value a:hover{
  text-decoration: underline;
}

.cg-social{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.10);
  color: #1E3A8A;
}

/* Footer */
.cg-footer{
  padding: 30px 0;
  background: linear-gradient(135deg, #1E3A8A, #10B981);
  color: rgba(255,255,255,0.95);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  Position: relative;
}

.cg-footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 800;
}

.cg-footer-right{
  opacity: 0.95;
}


/* Fondo con figura tipo "diagonal" (como la anterior), pero con tu degradado */
.cg-contact-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

/* Figura principal arriba-derecha (diagonal) */
.cg-contact-bg::before{
  content:"";
  position:absolute;
  top: -70px;
  right: -200px;
  width: 4000px;
  height: 3000px;

  background: linear-gradient(135deg, #1E3A8A, #10B981);
  opacity: 1;                 /* ajusta: 0.18 a 0.30 */
  transform: rotate(-6deg);

  /* forma tipo sombra diagonal */
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 78%);
  border-radius: 28px;           /* sutil, no redondea de más */
}

/* Figura secundaria suave para profundidad (opcional) */
.cg-contact-bg::after{
  content:"";
  position:absolute;
  top: -160px;
  right: -260px;
  width: 880px;
  height: 420px;

  background: linear-gradient(135deg, #1E3A8A, #10B981);
  opacity: 1;
  transform: rotate(-10deg);
  clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 70%);
  border-radius: 26px;
}

/* Anti-espacios fantasmas */
.cg-contact .row,
.cg-contact .cg-contact-card,
.cg-contact .tab-content,
.cg-contact form{
  height: auto !important;
  min-height: 0 !important;
}


.cg-contact > .container{
  position: relative;
  z-index: 2;
}
.cg-footer{
  position: relative;
  z-index: 3;
}

/* 1) Quita el espacio que deja el template en la sección de contacto */
#section_5.section-padding{
  padding-bottom: 0 !important;
}

/* 2) Evita márgenes colapsados extra */
#section_5{ 
padding-bottom: 28 px;
position: relative;
overflow: hidden; }

#section_5 > .container{
  position: relative;
  z-index: 2;
}
#section_5.section-padding{
  padding-top: 38px !important;      /* si no lo quieres arriba, opcional */
  padding-bottom: 38px !important; /* controla aquí el espacio antes del footer */
  margin-bottom: 0 !important;
}


.cg-footer{
  margin-top: 0 !important;
  box-shadow: 0 -18px 40px rgba(0,0,0,0.12);
}

.cg-footer::before{
  content:"";
  position:absolute;
  top: -70px;        /* altura de transición */
  left: 0;
  right: 0;
  height: 70px;

  /* MISMA paleta que tu fondo grande */
  background: linear-gradient(
    135deg,
    rgba(30,58,138,0.00) 0%,
    rgba(30,58,138,0.22) 35%,
    rgba(16,185,129,0.30) 100%
  );

  pointer-events:none;
}

/* HERO - Texto CertIC GLOBAL */
.hero-kicker{
  font-size: 40px;          /* ← AJUSTA AQUÍ */
  font-weight: 800;
  color: #10B981;
  text-transform: none;
  letter-spacing: 0.5px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Tablet */
@media (max-width: 991px){
  .hero-kicker{
    font-size: 24px;
  }
}

/* Móvil */
@media (max-width: 576px){
  .hero-kicker{
    font-size: 20px;
  }
}

/* HERO subtítulo */
.hero-subtitle{
  font-size: 18px;
  font-weight: 500;
  max-width: 62ch;
  color: #DBDBDB !important;   /* 👈 más visible */
  text-shadow: 0 6px 18px rgba(0,0,0,0.65);
}

/* Tablet */
@media (max-width: 991px){
  .hero-subtitle{
    font-size: 16px;
  }
}

/* Móvil */
@media (max-width: 576px){
  .hero-subtitle{
    font-size: 15px;
  }
}


/* ===== Valores: estructura alineada (extensión segura) ===== */
.values-list li{
  display: grid;
  grid-template-columns: 34px 190px 1fr;
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
}

.values-list .value-term{
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
}

.values-list .value-desc{
  color: #374151;
  font-weight: 500;
}

/* El término NO se justifica */
.values-list .value-term{
  text-align: left;
  justify-self: start;
  white-space: normal;
}

/* SOLO la descripción va justificada */
.values-list .value-desc{
  text-align: justify;
}

.service-card-text{
  text-align: justify;
}

/* ===== SOLO tabla de Esquemas (no afecta otras) ===== */
.cg-table-esquemas td,
.cg-table-esquemas th{
  vertical-align: middle !important;
}

/* Ajuste fino del texto (columna Descripción) */
.cg-table-esquemas td:nth-child(2){
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Link dentro del aviso (CTA suave) */
.cg-alert-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-weight: 800;
  color: var(--cg-primary);
  text-decoration: none;
}

.cg-alert-link i{
  transition: transform 0.25s ease;
}

.cg-alert-link:hover{
  color: var(--cg-secondary);
}

.cg-alert-link:hover i{
  transform: translateX(4px);
}

/* SOLO el texto descriptivo gris dentro de las cards */
.cg-info-desc{
  color: #DBDBDB !important;
  padding: 6px 0 10px 0;   /* padding solo para ese texto */
  line-height: 1.45;
}

/* =========================
   NOTICIAS HUB (Subpágina)
   ========================= */
.cg-news-hub{
  padding: 14px 0 6px;
}

.cg-news-hub__head{
  text-align: center;
  max-width: 90ch;
  margin: 0 auto 22px;
}

.cg-news-hub__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cg-news-hub__lead{
  margin: 0;
  color: rgba(11,18,32,0.65);
  font-weight: 600;
  line-height: 1.65;
}

/* Grid */
.cg-news-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

/* Card */
.cg-news-card{
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(11,18,32,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  box-shadow: 0 18px 45px rgba(11,18,32,0.06);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cg-news-card:hover{
  transform: translateY(-3px);
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 22px 60px rgba(11,18,32,0.10);
}

/* Icon */
.cg-news-card__icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.18);
  color: var(--cg-primary);
}

.cg-news-card__icon i{
  font-size: 22px;
}

/* Content */
.cg-news-card__title{
  margin: 0 0 6px;
  font-weight: 900;
  color: var(--cg-ink);
}

.cg-news-card__desc{
  margin: 0 0 12px;
  color: rgba(11,18,32,0.68);
  font-weight: 600;
  line-height: 1.6;
}

.cg-news-card__cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  color: var(--cg-primary);
}

.cg-news-card:hover .cg-news-card__cta{
  color: var(--cg-secondary);
}

/* Strip */
.cg-news-strip{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(16,185,129,0.22);
  background: rgba(16,185,129,0.07);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cg-news-strip__left{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(11,18,32,0.72);
  font-weight: 700;
}

.cg-news-strip__left i{
  color: var(--cg-primary);
  font-size: 18px;
}

.cg-news-strip__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cg-primary), var(--cg-secondary));
  color: #fff !important;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(30,58,138,0.18);
}

.cg-news-strip__btn:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991px){
  .cg-news-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Directorio (CertIC)
   ========================= */
.cg-dir-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(11,18,32,0.06);
}

.cg-dir-card--soft{
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.22);
}

.cg-dir-head{
  display:flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.cg-dir-icon{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.18);
  color: var(--cg-primary);
  flex: 0 0 54px;
}

.cg-dir-icon i{ font-size: 22px; }

.cg-dir-title{
  margin: 0 0 6px;
  font-weight: 900;
}

.cg-dir-lead{
  margin: 0;
  color: rgba(11,18,32,0.65);
  font-weight: 600;
}

.cg-dir-form{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: end;
  margin-top: 10px;
}

.cg-dir-field{
  flex: 1 1 420px;
  min-width: 260px;
}

.cg-dir-label{
  font-weight: 900;
  color: rgba(11,18,32,0.72);
  margin-bottom: 8px;
  display:block;
}

.cg-dir-input{
  border-radius: 14px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(11,18,32,0.14) !important;
}

.cg-dir-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.cg-dir-count{
  font-weight: 900;
  color: rgba(11,18,32,0.55);
  padding-left: 6px;
}

.cg-dir-results{
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

/* Result cards */
.cg-cert-card{
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: 22px;
  padding: 16px 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(11,18,32,0.05);
}

.cg-cert-card__top{
  display:flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 10px;
}

.cg-label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11,18,32,0.55);
}

.cg-cert-code{
  font-weight: 900;
  font-size: 18px;
  color: var(--cg-ink);
}

.cg-cert-card__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cg-value{
  color: rgba(11,18,32,0.78);
  font-weight: 650;
  line-height: 1.5;
}

.cg-cert-card__actions{
  margin-top: 12px;
  display:flex;
  justify-content: flex-end;
}

/* pills */
.cg-dir-card .cg-pill{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30,58,138,0.10);
  color: var(--cg-primary);
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(30,58,138,0.16);
}

.cg-dir-card .cg-pill--alt{
  background: rgba(148,163,184,0.16);
  color: rgba(11,18,32,0.72);
  border-color: rgba(148,163,184,0.28);
}

.cg-dir-card .cg-pill--ok{
  background: rgba(16,185,129,0.14);
  color: #0b7a57;
  border-color: rgba(16,185,129,0.26);
}

.cg-dir-card .cg-pill--warn{
  background: rgba(245,158,11,0.16);
  color: #8a5a00;
  border-color: rgba(245,158,11,0.28);
}
.cg-pill--alt{
  background: rgba(148,163,184,0.16);
  color: rgba(11,18,32,0.72);
  border-color: rgba(148,163,184,0.28);
}
.cg-pill--ok{
  background: rgba(16,185,129,0.14);
  color: #0b7a57;
  border-color: rgba(16,185,129,0.26);
}
.cg-pill--warn{
  background: rgba(245,158,11,0.16);
  color: #8a5a00;
  border-color: rgba(245,158,11,0.28);
}

/* Empty state */
.cg-empty{
  display:flex;
  gap: 12px;
  align-items: start;
  border-radius: 18px;
  padding: 14px 14px;
  border: 1px dashed rgba(11,18,32,0.14);
  background: rgba(248,250,252,0.85);
}
.cg-empty i{
  font-size: 18px;
  color: rgba(11,18,32,0.55);
  margin-top: 2px;
}
.cg-empty__title{
  font-weight: 900;
  margin-bottom: 2px;
  color: var(--cg-ink);
}
.cg-empty__text{
  color: rgba(11,18,32,0.65);
  font-weight: 600;
  line-height: 1.5;
}

/* restricted */
.cg-dir-restricted{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cg-btn-sm{
  padding: 10px 14px !important;
}

/* responsive */
@media (max-width: 768px){
  .cg-cert-card__grid{
    grid-template-columns: 1fr;
  }
  .cg-cert-card__actions{
    justify-content: flex-start;
  }
}


.form-header-soft {
  background: linear-gradient(
    180deg,
    rgba(16, 185, 129, 0.10),
    rgba(16, 185, 129, 0.04)
  );
  padding: 2.5rem 0;
}

.form-header-soft h2 {
  color: #111827;
}

.form-header-soft p {
  color: #374151;
}

.form-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.15);
  color: #065f46;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.back-link-soft {
  color: #065f46;
  font-weight: 600;
  text-decoration: none;
}

.back-link-soft:hover {
  text-decoration: underline;
}

/* =====================================================
   MÓVIL: texto justificado NORMAL (sin guiones)
   letra más pequeña y consistente en todo el sitio
   ===================================================== */
@media (max-width: 576px){

  /* Textos largos generales */
  .service-card-text,
  .services-banner-text,
  .text-justified,
  .values-list .value-desc,
  .scrollspy-example-item p,
  .scrollspy-example-item li{
    text-align: justify;
    text-justify: inter-word;

    /* SIN guiones */
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;

    /* Tamaño y legibilidad */
    font-size: 0.8rem;
    line-height: 1.6;
    text-wrap: balance;
  }

  /* Evita que <strong> se vea más grande */
  .service-card-text strong,
  .services-banner-text strong,
  .text-justified strong,
  .values-list .value-desc strong,
  .scrollspy-example-item strong{
    font-size: inherit !important;
    line-height: inherit;
    font-weight: 700;
  }

  /* Correos y links largos */
  .cg-contact-value,
  .cg-contact-value a,
  .service-card a,
  .services-banner a,
  .scrollspy-example-item a{
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: none;
  }

  /* Valores: layout correcto en móvil */
  .values-list li{
    grid-template-columns: 32px 1fr !important;
    grid-template-areas:
      "icon term"
      "icon desc";
    column-gap: 12px;
  }

  .values-list li > i{ grid-area: icon; }
  .values-list .value-term{ grid-area: term; }
  .values-list .value-desc{ grid-area: desc; }
  }
  
@media (max-width: 576px){
	/* Correos: mismo tamaño que el texto en móvil */
  .cg-contact-value,
  .cg-contact-value a{
    font-size: 0.8rem;
    line-height: 1.6;
    font-weight: 600; /* mantiene presencia sin agrandar */
  }

@media (max-width: 576px){
  section .features-thumb h5{
    font-size: 0.8rem !important;
  }
}


