.clg-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 50%, #f4f6f9 0%, #e2e8f0 100%);
}
.hero-glow-1, .hero-glow-2, .hero-glow-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
  animation: floatGlow 15s ease-in-out infinite alternate;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(43, 57, 144, 0.15);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(245, 132, 31, 0.15);
  bottom: -50px; right: -50px;
  animation-delay: -5s;
}

.hero-glow-3 {
  width: 300px; height: 300px;
  background: rgba(75, 108, 183, 0.1);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes floatGlow {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, 50px) scale(1.1); }
  100% { transform: translate(-30px, 20px) scale(0.9); }
}

.hero-badge-wrapper {
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(43, 57, 144, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px; height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 132, 31, 0.5);
  animation: pulse-dot 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-dot {
  to { box-shadow: 0 0 0 10px rgba(245, 132, 31, 0); }
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--color-accent), #ff9f43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--color-accent);
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 90%;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-btn-glow {
  position: relative;
  box-shadow: 0 10px 20px -5px rgba(245, 132, 31, 0.4);
  transition: all 0.3s ease;
}
.hero-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(245, 132, 31, 0.5);
  color: #fff !important;
}

.hero-btn-outline {
  background: white  ;
  border: 1px solid var(--color-gray-200)  ;
  color: var(--color-gray-700)  ;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.hero-btn-outline:hover {
  background: var(--color-gray-50)  ;
  border-color: var(--color-gray-300)  ;
  color: var(--color-primary)  ;
  transform: translateY(-2px);
}

.hero-features .feature-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-700);
  display: flex;
  align-items: center;
}
.hero-features .bi-check-circle-fill {
  color: #10b981  ;
}

.hero-visual-wrapper {
  position: relative;
  z-index: 2;
  padding-left: 1rem;
}

.hero-shape-blob {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 100%;
  height: 90%;
  background: linear-gradient(135deg, rgba(43, 57, 144, 0.1), rgba(245, 132, 31, 0.05));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: morphBlob 10s ease-in-out infinite alternate;
}

@keyframes morphBlob {
  0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
  50%  { border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%; transform: rotate(5deg); }
  100% { border-radius: 70% 30% 50% 50% / 70% 70% 30% 30%; transform: rotate(-5deg); }
}

.hero-main-img {
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 6px solid white;
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-glass-card {
  position: absolute;
  bottom: 1rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  animation: floatCard 5s ease-in-out infinite 1s;
  z-index: 5;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.card-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: 0 8px 16px rgba(43, 57, 144, 0.3);
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.card-label {
  font-size: 0.8rem;
  color: var(--color-gray-600);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-progress {
  width: 100px;
  height: 4px;
  background: var(--color-gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.card-progress .progress-bar {
  width: 75%;
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
}

.r-brands-section {
  padding: 3rem 0; background: var(--color-white);
  border-top: 1px solid var(--color-gray-100); border-bottom: 1px solid var(--color-gray-100);
}
.r-brands-label {
  text-align: center; font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-gray-400); margin-bottom: 1.5rem;
}
.r-marquee {
  overflow: hidden; white-space: nowrap;
  position: relative; width: 100%; padding: 1.5rem 0;
}
.r-marquee::before,
.r-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 8rem; z-index: 2; pointer-events: none;
}
.r-marquee::before { left: 0; background: linear-gradient(to right, var(--color-white), transparent); }
.r-marquee::after  { right: 0; background: linear-gradient(to left, var(--color-white), transparent); }

.r-marquee-track {
  display: inline-flex; white-space: nowrap; min-width: 200%;
  justify-content: space-around; align-items: center;
}
.r-marquee-track.left  { animation: r-scroll-left  40s linear infinite; }
.r-marquee-track.right { animation: r-scroll-right 40s linear infinite; }
.r-marquee:hover .r-marquee-track { animation-play-state: paused; }

.r-brand-img {
  width: 11rem; height: 5rem; object-fit: contain; margin: 0 1.5rem;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s var(--ease-out); cursor: pointer;
  display: inline-block; vertical-align: middle;
}

.r-brand-img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.12); }

@keyframes r-scroll-left  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes r-scroll-right { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

.r-benefits { padding: 3.5rem 0; background: var(--color-bg-body); }
.r-benefit-card {
  background: var(--color-white); border-radius: var(--radius-sm);
  padding: 2rem; height: 100%; border: 1px solid var(--color-gray-100);
  transition: all 0.4s var(--ease-out); position: relative; overflow: hidden;
}
.r-benefit-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--color-primary);
  transform: scaleX(0); transition: transform 0.4s var(--ease-out);
}
.r-benefit-card:hover {
  transform: translateY(-0.5rem); box-shadow: var(--shadow-lg); border-color: transparent;
}
.r-benefit-card:hover::after { transform: scaleX(1); }
.r-benefit-icon {
  width: 3.5rem; height: 3.5rem; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  transition: transform 0.2s var(--ease-spring);
}
.r-benefit-card:hover .r-benefit-icon { transform: scale(1.1); }
.r-benefit-icon.blue   { background: rgba(43,57,144,0.08); color: var(--color-primary); }
.r-benefit-icon.orange { background: rgba(245,132,31,0.1);  color: var(--color-accent); }
.r-benefit-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--color-gray-900); margin-bottom: 0.5rem; }
.r-benefit-card p   { font-size: 0.9375rem; color: var(--color-gray-600); line-height: 1.6; margin: 0; }

.r-categories { padding: 3.5rem 0; background: var(--color-white); }
.r-cat-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  border-radius: var(--radius-md); background: var(--color-gray-50);
  border: 1px solid transparent; transition: all 0.4s var(--ease-out); cursor: default;
}
.r-cat-card:hover {
  background: var(--color-white); border-color: var(--color-gray-100);
  box-shadow: var(--shadow-md); transform: translateX(0.5rem);
}
.r-cat-icon {
  width: 3rem; height: 3rem; border-radius: var(--radius-sm);
  background: var(--color-primary); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--color-white); flex-shrink: 0;
  transition: all 0.2s var(--ease-spring);
}
.r-cat-card:hover .r-cat-icon { background: var(--color-white); color: var(--color-primary);border: 1px solid var(--color-primary); }
.r-cat-card h6    { font-size: 0.9375rem; font-weight: 700; color: var(--color-gray-800); margin-bottom: 0.125rem; }
.r-cat-card small { font-size: 0.8125rem; color: var(--color-gray-400); }

.r-process { padding: 3.5rem 0; background: var(--color-bg-body); }
.r-step-card { text-align: center; padding: 2rem 1.5rem; position: relative; }
.r-step-number {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.25rem; margin: 0 auto 1.25rem;
  box-shadow: 0 0.5rem 1.5rem rgba(43,57,144,0.2);
  transition: all 0.3s var(--ease-spring);
}
.r-step-card:hover .r-step-number {
  transform: scale(1.12);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}
.r-step-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-gray-900); margin-bottom: 0.5rem; }
.r-step-card p  { font-size: 0.875rem; color: var(--color-gray-600); line-height: 1.6; margin: 0; }
.r-step-connector {
  position: absolute; top: 3.75rem; right: -1rem;
  width: 2rem; color: var(--color-gray-200); font-size: 1.25rem; display: none;
}
@media (min-width: 768px) { .r-step-connector { display: block; } }

.r-testimonials { padding: 4rem 0; background: var(--color-white); overflow: hidden; }
.r-testimonial-premium-card {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: 0 2rem 4rem rgba(43,57,144,0.08);
  border: 1px solid var(--color-gray-50);
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
}
.r-testimonial-premium-img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 4px solid var(--color-gray-50);
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.r-testimonial-premium-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.r-testimonial-premium-img i {
  font-size: 3rem; color: #dee2e6;
}
.r-testimonial-premium-quote {
  font-size: 1.125rem;
  color: var(--color-gray-900);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}
.r-testimonial-premium-info {
  text-align: center;
}
.r-testimonial-premium-name {
  color: var(--color-accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}
.r-testimonial-premium-tag {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.8125rem;
  opacity: 0.8;
}

@media (max-width: 991.98px) {
  .r-testimonials { padding: 3rem 0 2rem; }
  .r-testimonials .mb-5 { margin-bottom: 2rem  ; }
  .r-testimonial-premium-card { padding: 1.5rem 1.25rem; box-shadow: 0 10px 20px rgba(43,57,144,0.06); border-radius: 1.5rem; }
  .r-testimonial-premium-img { width: 4rem; height: 4rem; margin-bottom: 1rem; border-width: 2px; }
  .r-testimonial-premium-img i { font-size: 2rem  ; }
  .r-testimonial-premium-quote { font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }
  .r-testimonial-premium-name { font-size: 0.85rem; margin-bottom: 0.15rem; }
  .r-testimonial-premium-tag { font-size: 0.75rem; }
  .r-testimonials .r-section-header,
  .r-testimonials .r-section-title,
  .r-testimonials .r-section-sub { text-align: center  ; }
  .r-testimonials .r-section-title { font-size: 1.75rem  ; margin-bottom: 0.5rem; }
  .r-testimonials .r-section-sub { font-size: 0.95rem  ; margin: 0 auto  ; max-width: 100%; }
  .r-testimonials .carousel-indicators { margin-top: 1rem; position: relative; margin-bottom: 0; }
}

.r-testimonials-indicators { position: relative; margin-top: 2rem; margin-bottom: 0; }
.r-testimonials-indicators button {
  background-color: var(--color-primary) !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  opacity: 0.3;
}
.r-testimonials-indicators button.active { opacity: 1; }

.r-coverage { padding: 4.5rem 0; background: var(--color-white); overflow: hidden; }
@media (max-width: 991.98px) {
  .r-coverage { padding: 3rem 0; }
  .r-coverage .r-section-header, .r-coverage .r-section-title, .r-coverage .r-section-sub { text-align: center  ; }
  .r-coverage .r-section-title { font-size: 1.875rem  ; }
  .r-coverage .gy-5 { --bs-gutter-y: 1.5rem; }
  .clg-map-wrapper { margin-top: -2rem  ; margin-bottom: -4rem  ; transform: scale(1.15); }
}

.clg-map-wrapper {
  max-width: 100%; width: 100%; margin: 0 auto;
  padding: 1.5rem;
  position: relative;
}

#features {
  filter: drop-shadow(1px 0px 0px #2b3990) drop-shadow(-1px 0px 0px #2b3990) drop-shadow(0px 1px 0px #2b3990) drop-shadow(0px -1px 0px #2b3990);
}

#features path {
  fill: #f1f5f9;
  stroke: #cbd5e1;
  stroke-width: 0.5px;
  transition: all 0.3s ease;
}
#features path#PEARE{
  fill: var(--color-accent-light); 
  stroke: #9b9b9b; 
  stroke-width: 0.8px; 
  opacity: 1;
}
#features path#PECUS, 
#features path#PEMOQ, 
#features path#PETAC{
  fill: #3b4bad; 
  stroke: #9b9b9b; 
  stroke-width: 0.8px; 
  opacity: 1;
}




#features path:hover {
  fill: #cbd5e1  ;
  cursor: pointer;
}

.route {
  stroke: #2b3990; 
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500; 
  stroke-dashoffset: 500;
  opacity: 0;
  fill: none;
}

@keyframes draw {
  from { stroke-dashoffset: 500; opacity: 1; }
  to { stroke-dashoffset: 0; opacity: 0.8; }
}

.pulse-point {
  fill: #ffffff;
  stroke: #2b3990;
  stroke-width: 3px;
  animation: breathe 1s infinite ease-in-out;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.5); opacity: 1; }
}



.pulse-text {
  font-family: 'Inter', sans-serif   ;
  font-weight: 800   ;
  font-size: 13px   ;
  fill: #000000   ; 
  stroke: none   ; 
  paint-order: markers fill stroke; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none   ;
  pointer-events: none;
}


[data-city]:hover + .pulse-text {
  fill: #2b3990   ; 
}


circle[data-city] {
  cursor: help;
}

#route-cusco { animation-delay: 1s; }
#route-moquegua { animation-delay: 2.5s; }
#route-tacna { animation-delay: 4s; }

.pulse-hub-bg {
  fill: rgba(245, 132, 31, 0.2);
  stroke: #f5841f;
  stroke-width: 2;
  transform-origin: center; transform-box: fill-box;
  animation: radarPulse 1.5s infinite cubic-bezier(0.21, 0.53, 0.56, 1);
}

.pulse-hub {
  fill: #f5841f;
  animation: hubBeat 1s infinite ease-in-out;
  transform-origin: center; transform-box: fill-box;
}

@keyframes hubBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes radarPulse {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(4.5); opacity: 0; }
}


.r-faq { padding: 3.5rem 0; background: var(--color-white); }
.r-faq-item {
  border: 1px solid var(--color-gray-100); border-radius: var(--radius-md);
  margin-bottom: 0.75rem; overflow: hidden; transition: all 0.3s var(--ease-out);
}
.r-faq-item:hover { border-color: rgba(43,57,144,0.15); }
.r-faq-item.active { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.r-faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer; background: var(--color-white);
  font-size: 0.9375rem; font-weight: 600; color: var(--color-gray-900);
  transition: background 0.2s; border: none; width: 100%; text-align: left;
}
.r-faq-question:hover { background: var(--color-gray-50); }
.r-faq-question i {
  transition: transform 0.3s var(--ease-out); color: var(--color-primary);
  font-size: 1rem; flex-shrink: 0;
}
.r-faq-item.active .r-faq-question i { transform: rotate(180deg); }
.r-faq-item.active .r-faq-question { color: var(--color-primary); }
.r-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
  padding: 0 1.5rem;
}
.r-faq-item.active .r-faq-answer { max-height: 20rem; padding: 0 1.5rem 1.25rem; }
.r-faq-answer p { font-size: 0.9375rem; color: var(--color-gray-600); line-height: 1.7; margin: 0; }

.btn-marcas-home {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2.5px solid var(--color-primary-light);
  border-radius: var(--radius-full);
  padding: 0.875rem 2.25rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(43,57,144,0.1);
  cursor: pointer;
}

.btn-marcas-home:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 12px 25px rgba(43,57,144,0.25);
}

.btn-marcas-home i {
  transition: transform 0.4s ease;
}

.btn-marcas-home:hover i {
  transform: rotate(15deg);
}

@media (max-width: 991.98px) {
  .clg-hero { min-height: auto; padding: 5rem 0 2.5rem; }
  .hero-title { font-size: clamp(1.75rem,5vw,2.5rem); }
  .hero-text { max-width: 100%; font-size: 0.9375rem; }
  .hero-image-wrapper { margin-top: 1.5rem; }
}

@media (max-width: 767.98px) {
  .clg-hero { text-align: center; padding: 4.5rem 0 2rem; }
  .hero-badge { justify-content: center; font-size: 0.75rem; padding: 0.375rem 0.75rem; }
  .hero-title { font-size: 1.5rem; line-height: 1.3; }
  .hero-text { margin-left: auto; margin-right: auto; font-size: 0.875rem; }
  .hero-actions { justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
  .r-brands-section { padding: 1.25rem 0 !important; }
  .r-brands-label { margin-bottom: 0.5rem !important; font-size: 0.7rem !important; }
  .r-marquee { padding: 0.25rem 0  ; }
  .r-marquee-track { justify-content: flex-start !important; }
  .r-brand-img { width: 5rem; height: 2.75rem; margin: 0 0.4rem; opacity: 0.85; }
  .r-marquee::before, .r-marquee::after { width: 1rem; }
  
  .hero-features { gap: 0.75rem 1.5rem !important; margin-top: 1.5rem !important; }
  .feature-item { font-size: 0.8rem !important; }
  
  .r-metrics-section { margin-top: -2rem; padding-bottom: 1rem; }
  .r-modern-metrics { padding: 1.5rem 0.5rem; border-radius: 1.25rem; }
  .r-metric-minimal { padding: 0.5rem; }
  .r-metric-minimal .metric-value { font-size: 1.75rem; }
  .metric-col:nth-child(2) { border-right: none; }
  .metric-col:first-child, .metric-col:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
  
  .btn-marcas-home { padding: 0.5rem 1.25rem; font-size: 0.85rem; border-width: 1.5px; width: 90%; max-width: 300px; justify-content: center; }
  
  .r-categories { padding: 0.25rem 0; }
  .r-benefits, .r-testimonials,
  .r-process, .r-faq, .r-coverage { padding: 1.25rem 0; }


  .r-benefit-card { 
    padding: 1rem 0.5rem  ; 
    text-align: center  ;
    display: flex  ;
    flex-direction: column  ;
    align-items: center  ;
    justify-content: flex-start  ;
    height: 100%  ;
  }
  .r-benefit-card h3 { font-size: 0.875rem  ; margin-bottom: 0.25rem  ; line-height: 1.2  ; }
  .r-benefit-card p { display: block  ; font-size: 0.6875rem  ; line-height: 1.3  ; }
  .r-benefit-icon { 
    width: 2.5rem; 
    height: 2.5rem; 
    font-size: 1rem; 
    margin: 0 auto 0.75rem auto; 
    flex-shrink: 0;
  }

  .r-cat-card { 
    padding: 1rem 0.5rem; 
    flex-direction: column; 
    text-align: center; 
    gap: 0.5rem;
    height: 100%;
  }
  .r-cat-card:hover { transform: none; }
  .r-cat-icon { width: 2.25rem; height: 2.25rem; font-size: 0.875rem; margin-bottom: 0.25rem; }
  .r-cat-card h6 { font-size: 0.8125rem; margin-bottom: 0px; }
  .r-cat-card small { font-size: 0.75rem; line-height: 1.2; }

  .r-step-card { padding: 0.75rem; text-align: center; }
  .r-step-card h3 { font-size: 0.8125rem; margin-bottom: 0.25rem; }
  .r-step-card p { font-size: 0.75rem; line-height: 1.3; }
  .r-step-number { width: 2.25rem; height: 2.25rem; font-size: 0.9375rem; margin-bottom: 0.5rem; display: inline-flex; }
  .r-step-connector { display: none; }

  .hero-image-wrapper img { max-height: 200px; width: auto; margin: 0 auto; display: block; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.375rem; margin-bottom: 1rem; }
  .hero-subtitle { font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.5rem; }
  .hero-features { gap: 0.5rem 1rem !important; flex-direction: column; align-items: center; }
  .feature-item { font-size: 0.8rem !important; width: fit-content; }
  .r-metric-minimal .metric-value { font-size: 1.5rem !important; }
  .r-metric-minimal .metric-label { font-size: 0.7rem !important; }

  .r-brand-img { width: 4.25rem; height: 2.25rem; margin: 0 0.3rem; }
  .r-marquee { padding: 0.35rem 0; }
  .r-marquee::before, .r-marquee::after { width: 0.5rem; }

  .r-categories img { height: 10rem; }
  .r-faq-question { padding: 0.875rem; font-size: 0.8125rem; }
}

.hero-waves-container {
  overflow: hidden;
}

.moving-waves {
  position: relative;
  width: 100%;
  height: 10vh;
  margin-bottom: -7px;
  min-height: 50px;
  max-height: 100px;
  display: block;
}

.parallax-waves > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax-waves > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax-waves > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax-waves > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax-waves > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

.stat-divider {
  border-right: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 767.98px) {
  .moving-waves {
    height: 40px;
    min-height: 40px;
  }
  .stat-divider:nth-child(2n) {
    border-right: none !important;
  }
  .stat-divider:nth-child(1), .stat-divider:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .hero-image-mobile {
    height: 250px !important;
  }
}
