.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  transition: transform 0.1s ease-out;
  will-change: transform;
}
.hero-gradient-orb.hero-gradient-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.4) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 70%);
  top: -200px;
  left: -100px;
}
.hero-gradient-orb.hero-gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, rgba(219, 39, 119, 0.15) 50%, transparent 70%);
  bottom: -150px;
  right: -100px;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  transition: transform 0.3s ease-out;
}

.hero-floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  animation: float 6s ease-in-out infinite;
}
.hero-floating-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 15%;
}
.hero-floating-shape:nth-child(2) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}
.hero-floating-shape:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 25%;
  animation-delay: 4s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: auto;
}
.hero-cta svg {
  transition: transform 0.3s ease;
}
.hero-cta.hero-cta-primary {
  background: #ffffff;
  color: #0a0a0f;
}
.hero-cta.hero-cta-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.hero-cta.hero-cta-primary:hover svg {
  transform: translateX(4px);
}
.hero-cta.hero-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-cta.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.oferta-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  padding: 160px 0 100px;
  overflow: hidden;
}
.oferta-hero .container {
  position: relative;
  z-index: 10;
}

.oferta-hero-content {
  max-width: 800px;
}

.oferta-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.oferta-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.oferta-audience {
  padding: 100px 0;
  background: #ffffff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.audience-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(159, 39, 222, 0.2);
}

.audience-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.audience-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}

.audience-desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}

.oferta-services {
  padding: 100px 0;
  background: #f9fafb;
}

.services-extended-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-extended-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.service-extended-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-extended-card:hover .service-card-header .service-card-overlay {
  opacity: 0.7;
}
.service-extended-card:hover .service-card-cta svg {
  transform: translateX(4px);
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  min-height: auto;
}

.service-card-header {
  position: relative;
  height: 120px;
  background: linear-gradient(135deg, #9f27de 0%, #7118a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(159, 39, 222, 0.9) 0%, rgba(98, 21, 138, 0.9) 100%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.service-card-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-card-content {
  padding: 28px;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 12px;
}

.service-card-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.service-card-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6c757d;
}
.service-card-benefits li svg {
  flex-shrink: 0;
  color: #9f27de;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #9f27de;
}
.service-card-cta svg {
  transition: transform 0.3s ease;
}

.oferta-process {
  padding: 100px 0;
  background: #ffffff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, #9f27de 0%, rgba(159, 39, 222, 0.2) 100%);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 64px;
  height: 64px;
  background: #9f27de;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(159, 39, 222, 0.3);
}

.process-step-content {
  padding: 0 16px;
}

.process-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}

.oferta-faq {
  padding: 100px 0;
  background: #f9fafb;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 120px;
}
.faq-header .section-title {
  margin-bottom: 16px;
}

.faq-subtitle {
  color: #6c757d;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.is-open {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.faq-item.is-open .faq-question {
  color: #9f27de;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: #9f27de;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  transition: color 0.3s ease;
  min-height: auto;
}
.faq-question:hover {
  color: #9f27de;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: all 0.3s ease;
}
.faq-answer p {
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

.oferta-final-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  overflow: hidden;
}
.oferta-final-cta .hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.oferta-final-cta .container {
  position: relative;
  z-index: 10;
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
}

.final-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.final-cta-note svg {
  color: #4ade80;
}

.service-page .service-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}
.service-page .service-hero .container {
  position: relative;
  z-index: 10;
}
.service-page .service-breadcrumbs {
  margin-bottom: 32px;
}
.service-page .service-breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.service-page .service-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
}
.service-page .service-breadcrumbs li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.3);
}
.service-page .service-breadcrumbs li:last-child::after {
  display: none;
}
.service-page .service-breadcrumbs li:last-child {
  color: rgba(255, 255, 255, 0.8);
}
.service-page .service-breadcrumbs a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  min-height: auto;
}
.service-page .service-breadcrumbs a:hover {
  color: #ffffff;
}
.service-page .service-hero-content {
  max-width: 800px;
}
.service-page .service-icon-large {
  font-size: 1.5rem;
  margin-right: 8px;
}
.service-page .service-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.service-page .service-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
  font-style: italic;
}

.service-problem {
  padding: 80px 0;
  background: #fef2f2;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.problem-header {
  position: sticky;
  top: 120px;
}

.section-badge-warning {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.problem-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
}

.problem-item p {
  margin: 0;
  color: #212529;
  line-height: 1.6;
  padding-top: 12px;
}

.service-solution {
  padding: 100px 0;
  background: #ffffff;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.solution-text {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1.05rem;
}
.solution-text p {
  margin-bottom: 16px;
}
.solution-text p:last-child {
  margin-bottom: 0;
}

.solution-visual {
  position: relative;
}

.solution-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(159, 39, 222, 0.1) 0%, rgba(159, 39, 222, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-huge {
  font-size: 6rem;
  opacity: 0.5;
}

.service-includes {
  padding: 100px 0;
  background: #f9fafb;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.includes-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.includes-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(159, 39, 222, 0.2);
}

.includes-number {
  font-size: 2rem;
  font-weight: 700;
  color: #9f27de;
  opacity: 0.3;
  margin-bottom: 16px;
}

.includes-item p {
  margin: 0;
  color: #212529;
  font-weight: 500;
  line-height: 1.5;
}

.service-details {
  padding: 100px 0;
  background: #ffffff;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.details-column {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.details-column.details-column-highlight {
  background: linear-gradient(135deg, rgba(159, 39, 222, 0.05) 0%, rgba(159, 39, 222, 0.02) 100%);
  border-color: rgba(159, 39, 222, 0.15);
}

.section-badge-primary {
  background: rgba(159, 39, 222, 0.1);
  color: #9f27de;
}

.details-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 24px;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.details-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #212529;
  line-height: 1.5;
}
.details-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.details-list.details-list-users svg {
  color: #6c757d;
}
.details-list.details-list-benefits svg {
  color: #16a34a;
}

.service-content {
  padding: 80px 0;
  background: #ffffff;
}

.service-content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.service-content-inner h2, .service-content-inner h3, .service-content-inner h4 {
  color: #212529;
  margin-top: 40px;
  margin-bottom: 16px;
}
.service-content-inner p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-content-inner ul, .service-content-inner ol {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.service-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  overflow: hidden;
}
.service-cta .container {
  position: relative;
  z-index: 10;
}

.service-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.service-cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.service-cta-subtitle {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.service-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}
.service-cta-note svg {
  opacity: 0.7;
}

.service-related {
  padding: 100px 0;
  background: #f9fafb;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.related-service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  min-height: auto;
}
.related-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(159, 39, 222, 0.2);
}
.related-service-card:hover .related-service-link svg {
  transform: translateX(4px);
}

.related-service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.related-service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(159, 39, 222, 0.1);
  color: #9f27de;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.related-service-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
}

.related-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9f27de;
}
.related-service-link svg {
  transition: transform 0.3s ease;
}

.related-services-cta {
  text-align: center;
  margin-top: 40px;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(159, 39, 222, 0.1);
  color: #9f27de;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title-large {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-description-large {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6c757d;
  line-height: 1.6;
  max-width: 700px;
}

@media (max-width: 1200px) {
  .services-extended-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-timeline::before {
    display: none;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-header {
    position: static;
  }
  .problem-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-header {
    position: static;
  }
  .solution-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solution-visual {
    order: -1;
  }
  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .oferta-hero,
  .service-page .service-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .service-card-benefits {
    grid-template-columns: 1fr;
  }
  .includes-grid {
    grid-template-columns: 1fr;
  }
  .related-services-grid {
    grid-template-columns: 1fr;
  }
  .oferta-audience,
  .oferta-services,
  .oferta-process,
  .oferta-faq,
  .service-problem,
  .service-solution,
  .service-includes,
  .service-details,
  .service-related {
    padding: 60px 0;
  }
  .oferta-final-cta,
  .service-cta {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .oferta-hero-title,
  .service-page .service-hero-title {
    font-size: 2rem;
  }
  .service-card-content {
    padding: 20px;
  }
  .details-column {
    padding: 28px;
  }
  .includes-item {
    padding: 24px;
  }
}

/*# sourceMappingURL=oferta.css.map */
