@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root{
    --font-primary: 'Manrope', sans-serif;
}

body{
    font-family: var(--font-primary);
    font-weight: 400;
    color: #ffffff;
    background: #000;
    line-height: 1.6;
}

h1,h2,h3,h4,h5,h6{
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

p{
    font-weight: 400;
    color: rgba(255,255,255,.85);
}

.btn{
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: .2px;
}


.text-warning, .btn-warning {
  color: #FFC700 !important;
}
.btn-warning {
  background-color: #FFC700 !important;
  border-color: #FFC700 !important;
  color: #000000 !important;
}

.btn-warning:hover {
  background-color: #e6b300 !important;
  border-color: #e6b300 !important;
  color: #000000 !important;
}


.fw-black {
  font-weight: 800;
}


.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(255, 199, 0, 0.3) !important;
}


.hero-img {
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.5));
}

/*.hero-persona{
    transform: translateY(60px);
}*/

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
  }
  .hero-img {
    max-height: 420px;
  }
}



.clientes-cinta {
  border-top: 1px solid #eee; 
  border-bottom: 1px solid #eee; 
}

.cinta-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}


.cinta-track {
  display: flex;
  width: calc(250px * 10); 
  animation: scroll-cinta 30s linear infinite; 
}

.cinta-track:hover {
  animation-play-state: running; 
}


.logo-cliente {
  height: 60px; 
  width: auto; 
  max-width: 200px;
  object-fit: contain; 
  opacity: 0.8; 
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: grayscale(100%); 
}

.logo-cliente:hover {
  opacity: 1;
  filter: grayscale(0%); 
  transform: scale(1.05); 
}


@keyframes scroll-cinta {
  0% {
    transform: translateX(0); 
  }
  100% {
    transform: translateX(calc(-250px * 5)); 
  }
}



@media (max-width: 991.98px) {
  .logo-cliente {
    height: 45px; 
    mx: 3; 
  }
  .cinta-track {
     width: calc(180px * 10); 
  }
  @keyframes scroll-cinta {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 5)); } 
  }
}

@media (max-width: 575.98px) {
  .logo-cliente {
    height: 35px; 
    mx: 2; 
  }
  h2.display-6 {
    font-size: 1.5rem; 
  }
}


.video-container {
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.3) !important;
}


.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.hover-card:hover {
  transform: translateY(-5px);
}

.hover-card .ratio {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.hover-card:hover .ratio {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.card-text.small {
  font-size: 0.85rem;
  color: #555555;
}


.avatar-circle {
  width: 200px;
  height: 200px;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bubble-pointer {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid #e06c53;
  margin: -2px auto 0 auto;
}


@media (max-width: 767.98px) {
  .avatar-circle {
    width: 160px;
    height: 160px;
  }
}



.fw-black {
  font-weight: 800;
}

.opacity-85 {
  opacity: 0.85;
}


.hover-grow {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 199, 0, 0.4) !important;
}


.hero-side-img {
  max-height: 380px;
  object-fit: contain;
}


.concentric-circles {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 0 0 15px transparent,
    0 0 0 16px rgba(255, 255, 255, 0.15),
    0 0 0 30px transparent,
    0 0 0 31px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 1;
}


@media (max-width: 991.98px) {
  .hero-side-img {
    max-height: 280px;
  }
}



.benefits-list li {
  line-height: 1.5;
}


.benefits-list i {
  color: #000000;
  flex-shrink: 0;
}


.benefit-img {
  max-height: 520px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .benefit-img {
    max-height: 380px;
  }
}



.lh-lg {
  line-height: 1.7;
}


.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.35) !important;
}


.cta-banner-section {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), 
              url('../../assets/img/cts/martin-cerro-contador-scaled.webp') no-repeat center center;
  background-size: cover;
  min-height: 380px;
}


.zi-2 {
  z-index: 2;
}


.cta-person-img {
  max-height: 400px;
  object-fit: contain;
}


@media (max-width: 767.98px) {
  .cta-banner-section {
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
  }
  
  .cta-person-img {
    max-height: 300px;
  }
}


.lh-lg {
  line-height: 1.7;
}


.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.35) !important;
}



.lh-lg {
  line-height: 1.7;
}


.benefits-list li {
  line-height: 1.5;
}

.benefits-list i {
  color: #000000;
  flex-shrink: 0;
}


hr.opacity-10 {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}



.promesas-section {
  border-top-left-radius: 50% 40px;
  border-top-right-radius: 50% 40px;
  margin-top: -30px;
}


.promises-list li {
  line-height: 1.4;
}

.promises-list i {
  flex-shrink: 0;
}


.promise-person-img {
  max-height: 420px;
  object-fit: contain;
}


.zi-2 {
  z-index: 2;
}


@media (max-width: 767.98px) {
  .promesas-section {
    border-top-left-radius: 30% 20px;
    border-top-right-radius: 30% 20px;
    margin-top: 0;
  }

  .promise-person-img {
    max-height: 320px;
  }
}



.custom-faq-accordion .accordion-item {
  border: 1px solid #e0e0e0 !important;
}


.custom-faq-accordion .accordion-button.collapsed {
  background-color: #ffffff;
  color: #000000;
  box-shadow: none;
}


.custom-faq-accordion .accordion-button:not(.collapsed) {
  background-color: #ffc107 !important; 
  color: #000000 !important;
  box-shadow: none;
}


.custom-faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}


.custom-faq-accordion .accordion-button::after {
  filter: brightness(0); 
}



.max-w-700 {
  max-width: 700px;
}


.video-icon-img {
  width: 90px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}


.video-card-img:hover .video-icon-img {
  transform: translateY(-5px) scale(1.05);
}



.stats-section {
  border-top-left-radius: 50% 35px;
  border-top-right-radius: 50% 35px;
  margin-top: -30px;
}

.fw-black {
  font-weight: 800;
}


.stat-card {
  min-height: 140px;
}

.stat-number {
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.82rem;
  line-height: 1.25;
}


.stats-person-img {
  max-height: 480px;
  object-fit: contain;
}


@media (max-width: 991.98px) {
  .stat-card {
    min-height: 120px;
    padding: 0.5rem !important;
  }

  .stat-number {
    font-size: 1.8rem !important;
  }

  .stat-desc {
    font-size: 0.72rem;
  }
}

@media (max-width: 575.98px) {
  .stats-section {
    border-top-left-radius: 30% 20px;
    border-top-right-radius: 30% 20px;
    margin-top: 0;
  }

  .stat-card {
    min-height: 110px;
  }

  .stat-number {
    font-size: 1.4rem !important;
  }

  .stat-desc {
    font-size: 0.65rem;
  }
}


.contact-compound-img {
  max-height: 480px;
  object-fit: contain;
}


.border-subtle {
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
}


.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
}


.btn-primary {
  background-color: #2563eb;
  border-color: #2563eb;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}


@media (max-width: 991.98px) {
  .contact-compound-img {
    max-height: 360px;
  }
}


.footer-logo {
  max-height: 90px;
  object-fit: contain;
}


.footer-divider {
  width: 60px;
  height: 3px;
  background-color: #ffc107;
  border-radius: 2px;
}


.social-icon {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Enlaces del Footer */
.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffc107 !important;
}


.btn-whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; 
  color: #ffffff !important;
  z-index: 1050; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.btn-whatsapp-floating:hover {
  background-color: #20ba5a;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}


@media (max-width: 575.98px) {
  .btn-whatsapp-floating {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px !important;
  }
}

.section-cta-30dias {

    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../../assets/img/cts/section-home-1-scaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; 
    min-height: 450px;
    display: flex;
    align-items: center;
}


@media (max-width: 576px) {
    .section-cta-30dias {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}