.hero-partners-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
  max-width: 450px;
}

@media (max-width: 576px) {
  .hero-partners-logos {
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
  }
}

.partner-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
  overflow: hidden;
}

.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0.75rem;
}

.hero {
  position: relative;
  background-color: var(--primary);
  color: white;
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.15) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.hero-text {
  flex: 2.2;
  padding-right: 3rem;
}

.hero-image-wrapper {
  flex: 2.8;
  display: block;
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image-wrapper {
    width: 100%;
    flex: 1;
    margin-top: 1.25rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.hero h2 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (max-width: 320px) {
  .hero h2 {
    font-size: 1.5rem;
  }
  .hero {
    padding: 3rem 0 5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero h2 {
    font-size: 2.35rem;
  }
}

@media (min-width: 992px) {
  .hero h2 {
    font-size: 2.9rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, #bfdbfe, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.125rem;
  color: #dbeafe;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: #dbeafe;
  font-weight: 500;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust-icon {
  color: #4ade80;
}

.hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

/* Slideshow do Hero da Home */
.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.75rem;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transform: rotate(3deg);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  z-index: 2;
}

.hero-slide[data-produto-slug] {
  cursor: pointer;
}

.hero-slide[data-produto-id] {
  cursor: pointer;
}

.hero-img:hover {
  transform: rotate(0deg);
}

.float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: white;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 380px;
  z-index: 10; /* garante que fica na frente dos slides */
  pointer-events: none; /* permite clicar no banner/slides por baixo */
}

.float-card a,
.float-card button {
  pointer-events: auto;
}

.float-icon {
  background-color: #dbeafe;
  color: var(--primary);
  padding: 0.65rem;
  border-radius: 50%;
  display: flex;
}

.quick-links {
  position: relative;
  z-index: 20;
  margin: 2.5rem auto;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 992px) {
  .quick-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
  }
}

.quick-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-blue {
  border-bottom-color: var(--primary);
}
.card-red {
  border-bottom-color: var(--accent);
}
.card-green {
  border-bottom-color: var(--success);
}
.card-gray {
  border-bottom-color: #475569;
}

.quick-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.quick-card p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

.quick-icon {
  font-size: 2.5rem;
  opacity: 0.2;
  transition: opacity 0.3s;
}

.quick-card:hover .quick-icon {
  opacity: 1;
}

.card-blue .quick-icon {
  color: var(--primary);
}
.card-red .quick-icon {
  color: var(--accent);
}
.card-green .quick-icon {
  color: var(--success);
}
.card-gray .quick-icon {
  color: #475569;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: block;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0.25rem;
}

.view-all {
  color: var(--primary);
  font-weight: 500;
  display: none;
}

@media (min-width: 640px) {
  .view-all {
    display: block;
  }
}

.view-all:hover {
  text-decoration: underline;
}

.categories {
  padding: 2rem 0;
  background-color: white;
}

.categories-wrapper {
  position: relative;
  width: 100%;
}

.cat-viewport {
  overflow: hidden;
  width: 100%;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  transition: transform 0.45s ease;
}

.categories-carousel-active .cat-grid {
  display: flex;
  gap: 0;
  width: calc(var(--cat-slide-count) * 100% / var(--cat-per-view));
}

.categories-carousel-active .cat-item {
  flex: 0 0 calc(100% / var(--cat-slide-count));
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.cat-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.cat-carousel-btn:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.cat-prev {
  left: -1.25rem;
}
.cat-next {
  right: -1.25rem;
}

@media (max-width: 1320px) {
  .cat-prev {
    left: 0.5rem;
  }
  .cat-next {
    right: 0.5rem;
  }
}

@media (max-width: 320px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .cat-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.cat-item {
  text-align: center;
}

.cat-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cat-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background-color: #f1f5f9;
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.1);
  z-index: 10;
  transition: background-color 0.3s;
}

.cat-item:hover .cat-overlay {
  background-color: transparent;
}

.cat-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.cat-item:hover .cat-img-box img {
  transform: scale(1.1);
}

.cat-name {
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s;
  font-size: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cat-item:hover .cat-name {
  color: var(--primary);
}

.products {
  padding: 2.5rem 0;
}

.center-header {
  text-align: center;
  margin-bottom: 3rem;
}

.divider {
  width: 5rem;
  height: 4px;
  background-color: var(--primary);
  margin: 1rem auto 0;
  border-radius: 9999px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 321px) and (max-width: 577px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 578px) and (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: white;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.product-img-box {
  position: relative;
  background-color: #f8fafc;
  padding: 0.75rem;
  min-height: 14rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* evita recorte perceptivo da altura */
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.bg-primary-badge {
  background-color: var(--primary);
}
.bg-accent-badge {
  background-color: var(--accent);
}

.product-img-box img {
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-info {
  padding: 1.25rem;
}

.product-brand {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 0.25rem;
}

.product-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
  font-size: 1rem;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
}

.product-bottom a {
  text-decoration: none;
  color: inherit;
}

.product-price-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-price-link .price-label,
.product-price-link .price-val {
  color: inherit;
}

.price-label {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
}

.price-val {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.add-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #475569;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.add-btn:hover {
  background-color: var(--accent);
  color: white;
}

.catalog-link {
  text-align: center;
  margin-top: 2.5rem;
}

.catalog-link a {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 74, 153, 0.2);
  padding-bottom: 0.25rem;
  display: inline-flex;
  align-items: center;
}

.catalog-link a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.brands {
  padding: 2rem 0;
  background-color: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brands h3 {
  text-align: center;
  color: var(--text-gray);
  font-weight: 500;
  margin-bottom: 2rem;
}

.brands-carousel-root {
  --slide-count: 1;
  --per-view: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.25rem;
  box-sizing: border-box;
}

@media (min-width: 321px) and (max-width: 577px) {
  .brands-carousel-root {
    gap: 0.35rem;
    padding: 0 0.35rem;
  }
}

@media (min-width: 578px) and (max-width: 767px) {
  .brands-carousel-root {
    gap: 0.45rem;
    padding: 0 0.45rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .brands-carousel-root {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .brands-carousel-root {
    gap: 0.65rem;
    padding: 0 0.65rem;
  }
}

@media (min-width: 1200px) {
  .brands-carousel-root {
    gap: 0.75rem;
    padding: 0 0.75rem;
  }
}

.brands-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.brands-carousel-track {
  display: flex;
  width: calc(var(--slide-count) * 100% / var(--per-view));
  transition: transform 0.45s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .brands-carousel-track {
    transition: none;
  }
}

.brands-carousel-slide {
  flex: 0 0 calc(100% / var(--slide-count));
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 0.35rem;
}

@media (min-width: 321px) and (max-width: 577px) {
  .brands-carousel-slide {
    padding: 0 0.45rem;
  }
}

@media (min-width: 578px) and (max-width: 767px) {
  .brands-carousel-slide {
    padding: 0 0.55rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .brands-carousel-slide {
    padding: 0 0.65rem;
  }
}

@media (min-width: 1200px) {
  .brands-carousel-slide {
    padding: 0 0.75rem;
  }
}

.brands-carousel-slide {
  flex: 0 0 calc(100% / var(--slide-count));
  padding: 0 0.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-carousel-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.brands-carousel-logo:hover {
  opacity: 1;
}

.brands-carousel-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background-color: #fff;
  color: var(--text-dark);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.brands-carousel-btn:hover:not(:disabled) {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.brands-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.brands-carousel-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.brands-carousel-btn .material-icons {
  font-size: 1.35rem;
}

@media (min-width: 321px) and (max-width: 577px) {
  .brands-carousel-btn {
    width: 2.3rem;
    height: 2.3rem;
  }
}

@media (min-width: 578px) and (max-width: 767px) {
  .brands-carousel-btn {
    width: 2.4rem;
    height: 2.4rem;
  }
}

@media (min-width: 768px) {
  .brands-carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brands-carousel-btn .material-icons {
    font-size: 1.5rem;
  }
}

.differentials {
  padding: 2.5rem 0;
  background-color: var(--primary);
  color: white;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 320px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .diff-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.diff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.diff-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.diff-item:hover .diff-icon-box {
  background-color: var(--accent);
}

.diff-label {
  font-weight: 500;
  font-size: 0.875rem;
}

.segments {
  padding: 3rem 0;
}

.segments-no-top {
  padding-top: 0;
}

.seg-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .seg-wrapper {
    flex-direction: row;
  }
}

.seg-card {
  flex: 1;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .seg-card {
    flex-direction: row;
  }
}

.seg-border-primary {
  border-left: 8px solid var(--primary);
}
.seg-border-accent {
  border-left: 8px solid var(--accent);
}

.seg-img {
  position: relative;
}

@media (min-width: 768px) {
  .seg-img {
    width: 40%;
  }
}

.seg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.overlay-primary {
  background-color: var(--primary);
}
.overlay-accent {
  background-color: var(--accent);
}

.seg-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  z-index: 2;
}

.seg-content .seg-title {
  position: relative;
  bottom: auto;
  left: auto;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.seg-title h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.seg-title p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.seg-content .seg-title p {
  color: var(--text-gray);
}

.seg-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.seg-list li {
  display: flex;
  align-items: center;
  color: #334155;
  margin-bottom: 0.75rem;
}

.seg-list .material-icons {
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.text-primary {
  color: var(--primary);
}
.text-accent {
  color: var(--accent);
}
.text-cec {
  color: #e30613;
}

.seg-btn {
  width: 100%;
  margin-top: 1rem;
}

.btn-cec {
  background-color: #e30613;
  border-color: #e30613;
  color: white;
}

.btn-cec:hover {
  background-color: #c40510;
  border-color: #c40510;
  color: white;
}

@media (min-width: 768px) {
  .seg-btn {
    width: auto;
    align-self: flex-start;
  }
}

.blog {
  padding: 2.5rem 0;
  background-color: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 321px) and (max-width: 577px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 578px) and (max-width: 767px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-img-box {
  height: 12rem;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.25rem;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
}

.blog-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt a {
  color: inherit;
  text-decoration: none;
}

.blog-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.blog-link:hover {
  text-decoration: underline;
}

.cta-section {
  padding: 2.5rem 0 4rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: var(--primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  transform: translate(50%, -50%);
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .cta-content {
    flex-direction: row;
    gap: 3rem;
  }
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-text p {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-whatsapp {
  background-color: #22c55e;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp:hover {
  background-color: #16a34a;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: #0f172a;
}

.btn-whatsapp i,
.btn-outline .material-icons {
  margin-right: 0.5rem;
}

.cta-rating {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #334155;
}

.star-row {
  display: flex;
  align-items: center;
  color: #facc15;
}

.contact-form-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  color: var(--text-dark);
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image-wrapper .hero-image-inner {
  position: relative;
}

.float-card .float-label {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.float-card .float-value {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.hero-buttons .btn .material-icons.icon-arrow {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

.hero-buttons .btn .icon-left {
  margin-right: 0.5rem;
}

.add-btn .material-icons {
  font-size: 1rem;
}

.catalog-link a .material-icons {
  font-size: 1rem;
  margin-left: 0.25rem;
}

.brands-cta {
  text-align: center;
  margin-top: 2rem;
}

.brands-cta a {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
}

.diff-icon-box .material-icons {
  font-size: 2rem;
}

.seg-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.seg-title p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.cta-buttons .btn .material-icons {
  margin-right: 0.5rem;
}

.cta-rating .cta-rating-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.star-row .rating-value {
  color: white;
  font-weight: 700;
  margin-left: 0.5rem;
}

.contact-form-card .contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
