/********** Template CSS **********/
:root {
  --primary: #6bbe44;
  --secondary: #2a6dbb;
  --light: #f8f8f9;
  --dark: #001d23;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-secondary-light {
  color: rgb(241, 162, 108) !important;
}

.bg-secondary {
  background-color: rgb(212, 236, 204) !important;
}

.border-primary {
  border-color: #6bbe44 !important;
}

.progress-bar {
  background-color: #6bbe44 !important;
}

.dropdown-item.active {
  background-color: #6bbe44 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn.btn-outline-primary {
  border-color: var(--primary);
  color: #6bbe44;
}

.btn.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn.btn-primary:hover {
  color: var(--primary);
  background: transparent;
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.bg-primary {
  background-color: #6bbe44 !important;
}

/*** Navbar ***/
.fixed-top {
  transition: 0.5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: var(--dark);
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(43, 80, 52, 0.5);
  z-index: 1;
}

#header-carousel .carousel-item:nth-child(1) > img {
  filter: brightness(1.25);
}

#header-carousel .carousel-item:nth-child(2) > img {
  filter: brightness(1.4);
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background:
    linear-gradient(rgba(43, 80, 52, 0.5), rgba(43, 80, 52, 0.5)),
    url(../img/carousel-3.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Causes ***/
.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}

.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #ffffff;
}

.causes-item .causes-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}

/*** Service ***/
.service-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

.service-item > .btn {
  align-self: center;
  margin-top: auto;
}

.service-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 554 / 502;
}

.service-image-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-image-frame .service-image-square {
  width: 86%;
}

/*** Donate ***/
.donate {
  background:
    linear-gradient(rgba(43, 80, 52, 0.5), rgba(43, 80, 52, 0.5)),
    url(../img/carousel-3.jpg) center center no-repeat;
  background-size: cover;
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked + label {
  color: var(--primary);
  border-color: var(--primary);
}

/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: 0.5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: 0.5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
}

.team-item .team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary);
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

/*** Footer ***/

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  text-transform: capitalize;
  white-space: nowrap;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: var(--primary);
}

/* Logo Navbar */

.navbar-brand {
  padding: 0;
}

.navbar-logo-plate {
  margin-top: 7px;
  margin-bottom: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(18, 39, 23, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.navbar-logo-plate:hover {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(18, 39, 23, 0.28);
  transform: translateY(-1px);
}

.fixed-top.bg-dark .navbar-logo-plate {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.navbar-logo {
  display: block;
  height: 82px;
  width: auto;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .navbar-logo-plate {
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 5px 10px;
    border-radius: 13px;
  }

  .navbar-logo {
    height: 59px;
  }
}

.footer-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  transition: 0.3s;
}

.footer-text {
  color: #cfcfcf;
  line-height: 1.8;
  text-align: justify;
}

.founder-letter {
  position: relative;
}

.founder-letter .section-heading {
  max-width: 720px;
}

.founder-letter .section-heading p {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.7;
}

.history-mini-story .section-heading p {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.75;
}

.history-story-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(107, 190, 68, 0.18);
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
}

.history-story-image {
  padding: 16px 16px 0;
}

.history-story-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.history-story-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.history-story-content h4 {
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.history-story-content p {
  margin-bottom: 0;
  color: #5f665f;
  line-height: 1.8;
}

.letter-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  background: #fffdf8;
  border: 1px solid rgba(107, 190, 68, 0.22);
  border-top: 5px solid var(--primary);
  border-radius: 16px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.letter-watermark {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--primary);
  font-size: 90px;
  line-height: 1;
  opacity: 0.055;
  pointer-events: none;
}

.founder-profile {
  position: sticky;
  top: 110px;
  padding: 24px;
  background: rgba(107, 190, 68, 0.09);
  border: 1px solid rgba(107, 190, 68, 0.18);
  border-radius: 14px;
}

.founder-profile h5 {
  color: var(--dark);
  font-weight: 700;
}

.founder-role {
  color: var(--primary);
  font-weight: 600;
}

.founder-photo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 420px;
  margin: 0 auto;
  object-fit: contain;
  border: 8px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.letter-quote {
  position: relative;
  margin: 0 0 32px;
  padding: 22px 24px 22px 58px;
  color: #376d25;
  background: rgba(107, 190, 68, 0.09);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  font-size: 1.2rem;
  line-height: 1.65;
  font-style: italic;
}

.letter-quote::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 18px;
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 54px;
  font-style: normal;
  line-height: 1;
}

.letter-content {
  color: #505750;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.9;
}

.letter-content p {
  margin-bottom: 1.4rem;
}

.letter-salutation {
  color: var(--dark);
  font-weight: 700;
}

.letter-highlight {
  margin: 30px 0;
  padding: 20px 24px;
  color: #376d25;
  background: rgba(212, 236, 204, 0.35);
  border: 1px solid rgba(107, 190, 68, 0.2);
  border-radius: 12px;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.75;
  text-align: center;
}

.letter-closing {
  margin-top: 40px;
  text-align: right;
}

.signature {
  color: #376d25;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.2;
}

.signature-title {
  color: #777777;
  font-family: Inter, sans-serif;
  font-size: 15px;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .founder-profile {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .letter-card {
    padding: 20px;
  }

  .letter-quote {
    padding: 20px 18px 20px 48px;
    font-size: 1.05rem;
  }

  .letter-content {
    font-size: 1rem;
    line-height: 1.75;
  }

  .letter-closing {
    text-align: left;
  }
}

/*=========================================
ABOUT
==========================================*/

.about-section {
  position: relative;
}

.about-images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(107, 190, 68, 0.18), rgba(212, 236, 204, 0.55));
  border: 1px solid rgba(107, 190, 68, 0.22);
  border-radius: 20px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

.about-images img {
  width: auto;
  max-width: 100%;
  max-height: 700px;
  object-fit: contain;
  border-radius: 14px;
}

.about-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 28px;
}

/*----------------------------------*/

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  margin-bottom: 16px;
  background: #ffffff;
  border: 1px solid rgba(107, 190, 68, 0.18);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
}

/*----------------------------------*/

.about-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(107, 190, 68, 0.14);
  font-size: 22px;
}

/*----------------------------------*/

.about-content h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-content {
  flex: 1;
  min-width: 0;
}

.about-content p {
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

/*----------------------------------*/

.values-list {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 15px;
}

.values-list span {
  background: rgba(107, 190, 68, 0.1);
  border: 1px solid rgba(107, 190, 68, 0.2);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #376d25;
  transition: 0.3s;
}

.values-list span:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.project-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.project-icon i {
  font-size: 4rem;
  color: var(--bs-primary);
  transition: 0.3s;
}

.causes-item:hover .project-icon i {
  transform: scale(1.1);
  color: var(--bs-secondary);
}

/*==============================================================
# EMPRESAS AMIGAS
==============================================================*/

.company-section {
  margin-bottom: 5rem;
}

.company-section--light {
  background: #f8f9fa;
  border-radius: 1.5rem;
  padding: 4rem 3rem;
}

/*==============================================================
# HERO
==============================================================*/

.empresas-img {
  position: relative;
}

.empresa-hero-panel {
  position: relative;
  padding-bottom: 4.5rem;
}

.empresas-img img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.empresas-img.institutional-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(107, 190, 68, 0.18), rgba(212, 236, 204, 0.55));
  border: 1px solid rgba(107, 190, 68, 0.22);
  border-radius: 20px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

.empresas-img.institutional-image-frame img {
  width: auto;
  max-width: 100%;
  max-height: 700px;
  object-fit: contain;
  border-radius: 14px;
}

.empresas-badge {
  position: absolute;
  left: 30px;
  bottom: 18%;

  display: flex;
  align-items: center;
  gap: 1rem;

  background: #fff;
  border-radius: 1rem;

  padding: 1rem 1.5rem;

  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.empresas-badge--below {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: fit-content;
  max-width: 100%;
  margin: 0;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .empresas-badge {
    bottom: 24px;
  }

  .empresas-badge--below {
    position: static;
    transform: none;
    margin: 1.25rem auto 0;
  }
}

.empresas-badge i {
  font-size: 2rem;
  color: var(--primary);
}

.empresas-badge strong {
  display: block;
  font-size: 1rem;
}

.empresas-badge small {
  display: block;
  color: #6c757d;
}

/*==============================================================
# BENEFICIOS
==============================================================*/

.empresa-benefit {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.empresa-benefit:last-child {
  margin-bottom: 0;
}

.empresa-benefit i {
  width: 60px;
  height: 60px;

  flex-shrink: 0;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(13, 110, 253, 0.08);

  color: var(--primary);

  font-size: 1.4rem;
}

.empresa-benefit h5 {
  margin-bottom: 0.5rem;

  font-weight: 600;
}

.empresa-benefit p {
  margin: 0;

  color: #6c757d;
}

/*==============================================================
# MODALIDADES
==============================================================*/

.partner-card {
  height: 100%;

  background: #fff;

  border-radius: 1rem;

  padding: 2.5rem;

  border: 1px solid #e9ecef;

  transition: 0.35s;
}

.partner-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.partner-card--primary {
  border-top: 5px solid var(--primary);
}

.partner-card__header {
  display: flex;

  gap: 1.25rem;

  align-items: flex-start;
}

.partner-card__icon {
  width: 70px;
  height: 70px;

  flex-shrink: 0;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(13, 110, 253, 0.08);

  color: var(--primary);

  font-size: 1.8rem;
}

.partner-card h3 {
  margin-bottom: 0.75rem;
}

.partner-card p {
  color: #6c757d;

  margin-bottom: 0;
}

.partner-card hr {
  margin: 2rem 0;

  opacity: 0.1;
}

.partner-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.partner-list li {
  display: flex;

  gap: 0.75rem;

  align-items: flex-start;

  margin-bottom: 1rem;
}

.partner-list li:last-child {
  margin-bottom: 0;
}

.partner-list i {
  margin-top: 0.2rem;

  color: #198754;
}

/*==============================================================
# NUESTROS ALIADOS
==============================================================*/

.company-logo {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 140px;

  background: #fff;

  border: 1px solid #e9ecef;

  border-radius: 1rem;

  padding: 2rem;

  transition: all 0.3s ease;
}

.company-logo:hover {
  transform: translateY(-6px);

  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.08);

  border-color: rgba(13, 110, 253, 0.25);
}

.company-logo img {
  max-width: 100%;
  max-height: 70px;

  object-fit: contain;
}

/*==============================================================
# EMPRESAS SOLIDARIAS
==============================================================*/

.company-solidary {
  margin-top: 5rem;

  background: #fff;

  border: 1px solid #e9ecef;

  border-radius: 1rem;

  padding: 3rem;
}

.company-list {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1rem 2rem;
}

.company-list__item {
  display: flex;
  align-items: center;

  gap: 0.75rem;

  padding: 0.85rem 0;

  border-bottom: 1px solid #f1f1f1;

  color: #495057;

  font-weight: 500;
}

.company-list__item:last-child {
  border-bottom: none;
}

.company-list__item i {
  color: var(--primary);

  font-size: 1rem;
}

/*==============================================================
# CTA
==============================================================*/

.companies-cta {
  margin-top: 6rem;

  background: linear-gradient(135deg, var(--primary), #0b5ed7);

  border-radius: 1.5rem;

  padding: 4rem;

  color: #fff;

  position: relative;

  overflow: hidden;
}

.companies-cta::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  top: -120px;
  right: -100px;
}

.companies-cta__content {
  position: relative;

  z-index: 2;

  max-width: 820px;

  margin: auto;

  text-align: center;
}

.companies-cta__badge {
  display: inline-block;

  padding: 0.5rem 1.4rem;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.2);

  font-weight: 600;

  margin-bottom: 1.5rem;
}

.companies-cta h2 {
  color: #fff;

  margin-bottom: 1.25rem;
}

.companies-cta p {
  color: rgba(255, 255, 255, 0.9);

  font-size: 1.05rem;

  margin-bottom: 2.5rem;
}

.companies-cta__actions {
  display: flex;

  justify-content: center;

  gap: 1rem;

  flex-wrap: wrap;
}

.companies-cta__actions .btn {
  min-width: 240px;

  transition: 0.3s;
}

.companies-cta__actions .btn:hover {
  transform: translateY(-3px);
}

/*==============================================================
# RESPONSIVE
==============================================================*/

@media (max-width: 991.98px) {
  .company-section--light {
    padding: 3rem 2rem;
  }

  .empresas-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;

    padding: 1rem;
  }

  .company-solidary {
    padding: 2rem;
  }

  .company-list {
    grid-template-columns: 1fr;
  }

  .companies-cta {
    padding: 3rem 2rem;
  }
}

@media (max-width: 767.98px) {
  .partner-card {
    padding: 2rem;
  }

  .partner-card__header {
    flex-direction: column;
  }

  .partner-card__icon {
    margin-bottom: 1rem;
  }

  .empresa-benefit {
    align-items: flex-start;
  }

  .companies-cta__actions {
    flex-direction: column;
  }

  .companies-cta__actions .btn {
    width: 100%;

    min-width: auto;
  }
}

@media (max-width: 575.98px) {
  .company-section {
    margin-bottom: 4rem;
  }

  .company-section--light {
    padding: 2rem 1.5rem;
  }

  .company-logo {
    height: 110px;

    padding: 1.5rem;
  }

  .empresas-badge {
    position: relative;

    left: auto;
    right: auto;
    bottom: auto;

    margin-top: -1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (max-width: 991px) {
  .empresas-badge {
    position: relative;

    left: auto;
    bottom: auto;

    margin-top: -40px;

    margin-left: 20px;
  }
}

/*----------------------------------*/

@media (max-width: 991px) {
  .about-images {
    margin-bottom: 40px;
  }

  .about-images img {
    max-height: 620px;
  }
}

/*** Boton flotante Whatsapp ***/
.whatsapp-float-extended {
  position: fixed;
  top: 50%;
  right: 35px;
  padding: 18px 28px;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s ease;
  overflow: hidden;
}

.whatsapp-float-extended i {
  font-size: 28px;
}

.whatsapp-float-extended span {
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Expansión en desktop */
.whatsapp-float-extended:hover span {
  max-width: 250px;
  opacity: 1;
}

/* Efecto hover */
.whatsapp-float-extended:hover {
  transform: translateY(-3px);
  background: #579f38;
}

/* En móvil siempre compacto */
@media (max-width: 768px) {
  .whatsapp-float-extended span {
    display: none;
  }
}

a.whatsapp-float-extended {
  color: #ffffff !important;
}

a.whatsapp-float-extended span {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 500;
}

a.whatsapp-float-extended:hover,
a.whatsapp-float-extended:hover span {
  color: #ffffff !important;
}
/*----------------------------------*/
