

.service-hero-light {
    position: relative;
    padding: 6.5rem 0 4.5rem;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #1a1a1a;
}

.hero-light-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-light-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%);
}

.hero-light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1) 30%, rgba(255,255,255,0.1) 60%, rgba(10, 40, 100, 0.8) 100%);
}

.btn-base-blue {
  display: inline-flex;
  border-radius: 36px;
  background: #03173b;
  padding: 4px 4px 4px 16px;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-base-blue span {
    color: white;
}

.btn-base-blue .arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  transition: all 0.5s ease;
}

.btn-base-blue .arrow img {
    width: 12px;
}

.btn-base-blue:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 23, 59, 0.3);
}

.btn-base-blue:hover .arrow {
  transform: rotate(45deg);
  background: #fff;
  margin-left: 10px;
}

.hero-tag-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(231, 62, 29, 0.1);
    color: #E73E1D;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    border: 1px solid rgba(231, 62, 29, 0.2);
}

.hero-title-light {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title-light span {
    color: #666;
}

.hero-desc-light {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #03173b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary-light:hover {
    background-color: #0a2e6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 23, 59, 0.3);
}

.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #03173b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-secondary-light:hover {
    background-color: #0a2e6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 23, 59, 0.3);
}

.hero-image-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

@media (max-width: 991px) {
    .hero-title-light {
        font-size: 2.5rem;
    }
    .service-hero-light {
        padding: 5rem 0 3.25rem;
        min-height: 62vh;
        text-align: center;
    }
    .hero-desc-light {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-container {
        margin-top: 3rem;
    }
    .hero-light-overlay {
        background: rgba(255,255,255,0.9);
    }
}

@media (min-width: 1200px) {
    .ds-somos-copy {
        padding-top: 4.1rem;
    }
}
