/* =============================================
   DEVEU PERDEU - CSS PIXEL-PERFECT
   Valores extraídos diretamente do original Shopify
   ============================================= */

/* ----- RESET & BASE ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Prevenir overflow horizontal global - MOBILE */
html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
}

main, section, div, header, footer, article, aside, nav {
  max-width: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Wrapper para conter todo o conteúdo */
.page-wrapper {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.section-header,
.announcement-bar,
main,
.footer-wrapper {
  overflow-x: hidden;
  width: 100%;
}

/* ----- VARIÁVEIS CSS (Exatamente como o original) ----- */
:root {
  /* Tipografia */
  --font-body-family: Poppins, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-family: Poppins, sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 700;
  --font-body-scale: 1.1;
  --font-heading-scale: 1.1818181818181819;
  --font-heading-letter-spacing: 0.06rem;
  --font-heading-line-height: 1.3;
  
  /* Cores Base (formato RGB) */
  --color-base-text: 18, 18, 18;
  --color-foreground: 46, 42, 57;
  --color-base-background-1: 255, 255, 255;
  --color-base-background-2: 243, 243, 243;
  --color-base-accent-1: 255, 116, 0;
  --color-base-accent-2: 109, 56, 139;
  
  /* Cores dos Botões */
  --color-button: 221, 29, 29;
  --color-button-text: 255, 255, 255;
  
  /* Cores do Footer */
  --color-footer-bg: 18, 18, 18;
  --color-footer-text: 255, 255, 255;
  
  /* Estrelas */
  --star-color: #ffcc00;
  --bg-star-color: #ececec;
  
  /* Layout */
  --page-width: 120rem;
  
  /* Botões */
  --buttons-radius: 6px;
  --buttons-border-width: 2px;
  
  /* Cards */
  --text-boxes-radius: 24px;
  --media-radius: 12px;
  --product-card-corner-radius: 1.2rem;
  
  /* Grid */
  --grid-desktop-vertical-spacing: 40px;
  --grid-desktop-horizontal-spacing: 40px;
  --grid-mobile-vertical-spacing: 20px;
  --grid-mobile-horizontal-spacing: 20px;
  
  /* Transições */
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-long: 500ms;
}

html {
  font-size: calc(var(--font-body-scale) * 62.5%);
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  overflow-x: hidden;
  max-width: 100vw;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-base-background-1));
}

@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: currentColor;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* ----- UTILITÁRIOS ----- */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.center {
  text-align: center;
}

/* ----- TIPOGRAFIA ----- */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: var(--font-heading-letter-spacing);
  line-height: var(--font-heading-line-height);
  color: rgb(var(--color-foreground));
}

.h0 { font-size: calc(var(--font-heading-scale) * 4rem); }
.h1 { font-size: calc(var(--font-heading-scale) * 3rem); }
.h2 { font-size: calc(var(--font-heading-scale) * 2rem); }

@media screen and (min-width: 750px) {
  .h0 { font-size: calc(var(--font-heading-scale) * 5.2rem); }
  .h1 { font-size: calc(var(--font-heading-scale) * 4rem); }
  .h2 { font-size: calc(var(--font-heading-scale) * 2.4rem); }
}

.title-with-highlight {
  --hightlight-color: #6d388b;
}

.highlight {
  color: var(--hightlight-color, #6d388b);
}

.rte p {
  margin: 0 0 1rem;
}

.rte p:last-child {
  margin-bottom: 0;
}

/* ----- BOTÕES ----- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 1.2rem 3rem;
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  font-weight: var(--font-body-weight-bold);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(var(--color-button-text));
  background-color: rgb(var(--color-button));
  border: var(--buttons-border-width) solid rgb(var(--color-button));
  border-radius: var(--buttons-radius);
  max-width: 100%;
  word-break: break-word;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(221, 29, 29, 0.3),
              0 0 20px rgba(221, 29, 29, 0.15);
  transition: background-color var(--duration-default) ease,
              border-color var(--duration-default) ease,
              color var(--duration-default) ease,
              transform var(--duration-default) ease,
              box-shadow var(--duration-default) ease;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
}

.button:hover {
  background-color: rgb(190, 25, 25);
  border-color: rgb(190, 25, 25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(221, 29, 29, 0.4),
              0 0 30px rgba(221, 29, 29, 0.25);
}

.button--secondary {
  background-color: transparent;
  color: rgb(var(--color-button));
}

.button--secondary:hover {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
}

/* Botão Laranja */
.button--orange {
  background-color: rgb(var(--color-base-accent-1));
  border-color: rgb(var(--color-base-accent-1));
  text-transform: none;
  font-size: 1.6rem;
  letter-spacing: 0;
  padding: 1.4rem 4rem;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(255, 116, 0, 0.3),
              0 0 20px rgba(255, 116, 0, 0.15);
}

.button--orange:hover {
  background-color: rgb(230, 100, 0);
  border-color: rgb(230, 100, 0);
  box-shadow: 0 6px 20px rgba(255, 116, 0, 0.4),
              0 0 30px rgba(255, 116, 0, 0.25);
}

.btn--mt-center {
  margin-top: 2rem;
}

/* ----- ANNOUNCEMENT BAR ----- */
.announcement-bar {
  background-color: rgb(var(--color-button));
  background-image: linear-gradient(
    110deg,
    rgb(var(--color-button)) 0%,
    rgb(var(--color-button)) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgb(var(--color-button)) 60%,
    rgb(var(--color-button)) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  color: rgb(var(--color-button-text));
  padding: 6px 1.5rem;
  text-align: center;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media screen and (min-width: 750px) {
  .announcement-bar {
    padding: 8px 1.5rem;
  }
}

.announcement-bar__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (min-width: 750px) {
  .announcement-bar__message {
    font-size: 1.5rem;
  }
}

.announcement-bar__icon {
  display: flex;
  align-items: center;
}

.announcement-bar__icon svg,
.announcement-bar__icon .material-symbols-outlined {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
}

@media screen and (min-width: 750px) {
  .announcement-bar__icon svg,
  .announcement-bar__icon .material-symbols-outlined {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 2.4rem;
  }
}

/* ----- HEADER ----- */
.section-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrapper {
  background-color: rgb(var(--color-base-background-1));
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

/* Logo centralizado */
.header__heading {
  margin: 0;
  line-height: 0;
}

.header__heading-link {
  display: block;
}

.header__heading-logo {
  width: 100px;
  height: auto;
}


/* ----- HERO / SLIDESHOW ----- */
.slideshow {
  position: relative;
  width: 100%;
}

.slideshow__media {
  width: 100%;
}

.slideshow__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- SECTION PADDING (Valores exatos do original) ----- */
.section-padding {
  padding-top: 27px;
  padding-bottom: 27px;
}

@media screen and (min-width: 750px) {
  .section-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* ----- PARALLAX HERO (O que é Storage) ----- */
.parallax-hero {
  padding: 38px 1.5rem;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .parallax-hero {
    padding: 50px 5rem;
  }
}

.hero-slide__content {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0;
}

.hero__heading {
  font-size: 3.0rem;
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 750px) {
  .hero__heading {
    font-size: 3.5rem;
  }
}

.hero__text {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 750px) {
  .hero__text {
    font-size: 1.6rem;
  }
}

.hero__text p {
  margin: 0 0 1.5rem;
}

.hero__buttons {
  margin-top: 2rem;
  padding: 0 1rem;
}

.hero__buttons .button {
  width: 100%;
  max-width: 320px;
}

/* ----- HORIZONTAL TICKER (Valores exatos) ----- */
.horizontal-ticker {
  background-color: #FF7400;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 750px) {
  .horizontal-ticker {
    padding-top: 12px;
    padding-bottom: 16px;
  }
}

.horizontal-ticker__container {
  display: flex;
  animation: horizontalTicker 5s linear infinite normal forwards;
  column-gap: 60px;
}

@media screen and (min-width: 750px) {
  .horizontal-ticker__container {
    column-gap: 100px;
  }
}

.horizontal-ticker__item {
  font-size: 1.6rem;
  font-weight: var(--font-body-weight-bold);
  font-style: italic;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}

@media screen and (min-width: 750px) {
  .horizontal-ticker__item {
    font-size: 1.8rem;
  }
}

@keyframes horizontalTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 30px)); }
}

@media screen and (min-width: 750px) {
  @keyframes horizontalTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 50px)); }
  }
}

/* ----- MULTICOLUMN (Cards) ----- */
.multicolumn {
  --columns-desktop: 3;
  --columns-mobile: 1;
  --gap-desktop: 40px;
  --gap-mobile: 15px;
}

.multicolumn-padding {
  padding-top: 27px;
  padding-bottom: 27px;
}

@media screen and (min-width: 750px) {
  .multicolumn-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Seção com fundo laranja (color-accent-1) */
.multicolumn--accent {
  background-color: rgb(var(--color-base-accent-1));
  padding-bottom: 0;
}

.multicolumn--accent .page-width {
  padding-bottom: 2rem;
}

.multicolumn--accent .multicolumn__title {
  color: rgb(var(--color-button-text));
}

.title-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.title-wrapper--with-margin {
  margin-bottom: 1.5rem;
}

.multicolumn__title {
  margin-top: 1.5rem;
  margin-bottom: 0;
  text-align: center;
}

/* Grid para desktop */
.multicolumn__grid {
  display: grid;
  grid-template-columns: repeat(var(--columns-desktop), 1fr);
  gap: var(--gap-desktop);
}

/* Mobile: Carrossel */
@media screen and (max-width: 749px) {
  .multicolumn--accent .page-width {
    padding-left: 0;
    padding-right: 0;
  }
  
  .multicolumn--accent .title-wrapper {
    padding: 0 1.5rem;
    text-align: center;
  }
  
  .multicolumn__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .multicolumn__grid::-webkit-scrollbar {
    display: none;
  }
  
  .multicolumn__grid .multicolumn-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}

.multicolumn-card {
  background-color: rgb(var(--color-base-background-2));
  border-radius: var(--text-boxes-radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--duration-default) ease,
              box-shadow var(--duration-default) ease;
}

.multicolumn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
              0 0 16px rgba(var(--color-base-accent-1), 0.12);
}

.multicolumn-card__image-wrapper {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.multicolumn-card__image-wrapper .media {
  padding-bottom: 50.8762322015334%;
  position: relative;
  background-color: transparent;
}

.multicolumn-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.multicolumn-card__info {
  padding: 24px;
}

.multicolumn-card__info h3 {
  font-size: 24px;
  margin: 0 0 1rem;
  color: rgb(34, 33, 38);
}

@media screen and (max-width: 749px) {
  .multicolumn-card__info h3 {
    font-size: 20px;
  }
  .multicolumn-card__info {
    padding: 20px;
  }
}

/* Estilo mobile para seção accent - SEM bordas brancas (deve vir DEPOIS das regras base) */
@media screen and (max-width: 749px) {
  .multicolumn--accent .multicolumn-card {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .multicolumn--accent .multicolumn-card__image-wrapper {
    border-radius: 0 !important;
    overflow: visible;
    box-shadow: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .multicolumn--accent .multicolumn-card__image-wrapper .media {
    padding-bottom: 0;
    position: relative;
    width: 100%;
  }
  
  .multicolumn--accent .multicolumn-card__image {
    position: relative !important;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 0 !important;
  }
  
  .multicolumn--accent .multicolumn-card__info {
    background-color: transparent !important;
    padding: 1.5rem 0 0.5rem !important;
    text-align: center;
    width: 100%;
  }
  
  .multicolumn--accent .multicolumn-card__info h3 {
    color: rgb(var(--color-button-text)) !important;
    font-size: 1.4rem !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .multicolumn--accent .multicolumn-card__info .link {
    color: rgb(var(--color-button-text));
  }
}

/* Navegação do carrossel mobile */
.multicolumn__navigation {
  display: none;
}

@media screen and (max-width: 749px) {
  .multicolumn__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
}

.multicolumn__nav-btn {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgb(var(--color-button-text));
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--duration-default) ease;
}

.multicolumn__nav-btn:hover {
  opacity: 1;
}

.multicolumn__nav-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.multicolumn__dots {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.multicolumn__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(var(--color-button-text), 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--duration-default) ease;
}

.multicolumn__dot.active,
.multicolumn__dot:hover {
  background-color: rgb(var(--color-button-text));
}

/* Link com seta animada */
.link.animate-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-body-weight-bold);
  color: rgb(var(--color-foreground));
  transition: color var(--duration-default) ease;
}

.link.animate-arrow:hover {
  color: rgb(var(--color-button));
}

.icon-wrap {
  display: inline-flex;
  transition: transform var(--duration-default) ease;
}

.link.animate-arrow:hover .icon-wrap {
  transform: translateX(4px);
}

.icon-arrow {
  width: 14px;
  height: 10px;
}

/* ----- SECTION DIVIDER (Wave) ----- */
.section-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
  margin-top: -1px; /* Remove gap between sections */
}

@media screen and (min-width: 750px) {
  .section-divider {
    height: 80px;
  }
}

.section-divider--orange {
  background-color: rgb(var(--color-base-accent-1));
}

.section-divider--red {
  background-color: rgb(var(--color-button));
}

.section-divider--white-bg {
  background-color: rgb(var(--color-base-background-1));
}

.section-divider__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-divider__svg svg {
  width: 100%;
  height: 100%;
}

.section-divider__svg--white {
  color: rgb(var(--color-base-background-1));
}

.section-divider__svg--red {
  color: rgb(var(--color-button));
}

/* Wave animation */
.waves-animated-1 .parallax1 { animation: wave-move 25s cubic-bezier(.55,.5,.45,.5) infinite; }
.waves-animated-1 .parallax2 { animation: wave-move 15s cubic-bezier(.55,.5,.45,.5) -2s infinite; }
.waves-animated-1 .parallax3 { animation: wave-move 20s cubic-bezier(.55,.5,.45,.5) -4s infinite; }
.waves-animated-1 .parallax4 { animation: wave-move 10s cubic-bezier(.55,.5,.45,.5) -6s infinite; }

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

/* ----- VIDEO CAROUSEL ----- */
/* Seção de vídeos - largura total */
.video-section {
  padding: 27px 0;
  overflow: hidden;
  background-color: rgb(var(--color-base-background-1));
}

@media screen and (min-width: 750px) {
  .video-section {
    padding: 36px 0;
  }
}

.video-carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.video-carousel__container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 12px;
}

@media screen and (min-width: 750px) {
  .video-carousel__container {
    padding: 0 5rem;
    gap: 28px;
  }
}

.video-carousel__container::-webkit-scrollbar {
  display: none;
}

.video-carousel__slide {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--media-radius);
  overflow: hidden;
  background-color: #000;
}

@media screen and (min-width: 750px) {
  .video-carousel__slide {
    flex: 0 0 calc(33.333% - 19px);
    min-width: calc(33.333% - 19px);
  }
}

.video-carousel__media {
  position: relative;
  padding-bottom: 177.78%; /* Aspect ratio 9:16 para vídeos verticais */
}

.video-carousel__media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button - LARANJA como no original */
.video-carousel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 5.5rem;
  height: 5.5rem;
  background-color: rgb(var(--color-base-accent-1)); /* Laranja */
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--duration-default) ease;
}

.video-carousel__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-carousel__play svg {
  width: 1.6rem;
  height: 1.6rem;
  color: #fff;
  margin-left: 3px;
}

.video-carousel__play {
  animation: pulse-play 2s ease-in-out infinite;
}

@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 116, 0, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255, 116, 0, 0); }
}

.video-carousel__slide.playing .video-carousel__play {
  opacity: 0;
  animation: none;
}

/* Navegação do carrossel - setas nas laterais */
.video-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-carousel__arrow {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background-color var(--duration-default) ease;
}

.video-carousel__arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.video-carousel__arrow svg {
  width: 1rem;
  height: 1rem;
}

.video-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.video-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(var(--color-base-text), 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--duration-default) ease;
}

.video-carousel__dot.active,
.video-carousel__dot:hover {
  background-color: rgb(var(--color-base-text));
}

/* Legacy - manter para compatibilidade */
.image-slider {
  display: none;
}

.play-button svg {
  width: 1.4rem;
  height: 1.8rem;
  fill: rgb(var(--color-button-text));
  margin-left: 3px;
}

.image-slide.playing .internal-video__play,
.image-slide.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* ----- SECTION GROUP (Videos + Results side by side on desktop) ----- */
.section-group-padding {
  padding: 27px 1.5rem;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .section-group-padding {
    padding: 36px 5rem;
  }
}

.section-group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  overflow: hidden;
}

@media screen and (min-width: 990px) {
  .section-group-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 8rem;
    row-gap: 5rem;
  }
}

/* ----- RESULTS ----- */
.results-section {
  padding: 27px 0;
  background-color: rgb(var(--color-base-background-1));
}

@media screen and (min-width: 750px) {
  .results-section {
    padding: 36px 0;
  }
}

.results__container {
  max-width: 100%;
}

.results__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.results__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.results__percentage {
  position: relative;
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(var(--color-base-accent-1), 0.25));
}

.results__ring-svg {
  width: 100%;
  height: 100%;
}

.results__ring-svg circle {
  fill: none;
  stroke-width: 7;
  stroke-linecap: unset;
}

.ring__bg {
  stroke: rgba(0, 0, 0, 0.08); /* Cinza claro como no original */
}

.ring__prog {
  stroke: rgb(var(--color-base-accent-1)); /* Laranja */
  transition: stroke-dasharray 650ms ease;
}

.results__percentage-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: var(--font-body-weight-bold);
  color: rgb(var(--color-base-accent-1)); /* Laranja */
}

.results__content {
  flex: 1;
}

.results__text {
  font-size: 1.5rem;
  line-height: 1.55;
  margin: 0;
  color: rgb(var(--color-foreground));
}

.results__text strong {
  font-weight: var(--font-body-weight-bold);
}

.results__caption {
  margin-top: 2rem;
  margin-bottom: 0;
}

.results__caption p {
  font-size: 1.4rem;
  color: rgb(117, 117, 117);
  line-height: 1.6;
  margin: 0;
}

/* Botao centralizado na secao RESULTS */
.results__container .button--orange {
  display: block;
  margin: 2rem 0 0;
  width: 100%;
  text-align: center;
}

/* ----- TESTIMONIALS ----- */
.testimonials {
  --columns-desktop: 3;
  --columns-mobile: 1;
  --gap-desktop: 4rem;
  --gap-mobile: 1.5rem;
  overflow: hidden;
}

.testimonials-padding {
  padding: 27px 1.5rem;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .testimonials-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.testimonials__title {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(var(--columns-mobile), 1fr);
  gap: var(--gap-mobile);
}

@media screen and (min-width: 750px) {
  .testimonials__grid {
    grid-template-columns: repeat(var(--columns-desktop), 1fr);
    gap: var(--gap-desktop);
  }
}

.testimonial-card {
  background-color: rgb(var(--color-base-background-2));
  border-radius: var(--text-boxes-radius);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--duration-default) ease,
              box-shadow var(--duration-default) ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1),
              0 0 14px rgba(var(--color-base-accent-1), 0.1);
}

.testimonial-card__image-wrapper {
  padding-bottom: 100%;
  position: relative;
}

.testimonial-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__info {
  padding: 2rem;
}

/* Rating stars */
.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.testimonial-card__stars svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--star-color);
}

.testimonial-card__quotes {
  display: flex;
  justify-content: center;
  color: rgb(var(--color-base-accent-2));
  margin-bottom: 0.5rem;
}

.testimonial-card__quotes svg {
  width: 2.4rem;
  height: 2.4rem;
}

.testimonial-card__info h3 {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
  margin: 0 0 0.5rem;
}

.testimonial-card__info .rte {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-card__author {
  font-size: 1.4rem;
  color: rgb(117, 117, 117);
  margin: 0;
}

.testimonial-card__author em {
  font-style: italic;
}

/* ----- COLLAPSIBLE CONTENT (FAQ) ----- */
.collapsible-content-padding {
  padding: 27px 1.5rem;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .collapsible-content-padding {
    padding: 36px 5rem;
  }
}

.collapsible-content__title {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.collapsible-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media screen and (min-width: 750px) {
  .collapsible-content__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.collapsible-content__media {
  border-radius: var(--media-radius);
  overflow: hidden;
  position: relative;
  padding-bottom: 101.2063492063492%;
}

@media screen and (min-width: 750px) {
  .collapsible-content__media {
    order: -1;
  }
}

.collapsible-content__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accordion */
.accordion {
  border-bottom: 1px solid rgba(var(--color-base-text), 0.1);
}

.accordion + .accordion {
  margin-top: 0.4rem;
}

.accordion__details {
  list-style: none;
}

.accordion__details::-webkit-details-marker {
  display: none;
}

.accordion__summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.summary__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.material-icon {
  font-size: 2.4rem;
  color: rgb(var(--color-foreground));
}

.accordion__title {
  font-size: 1.6rem;
  font-weight: var(--font-body-weight-bold);
  margin: 0;
  color: rgb(var(--color-foreground));
}

.accordion__collapse-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.accordion__collapse-icon svg {
  width: 1rem;
  height: 1rem;
}

.accordion__details[open] .accordion__collapse-icon {
  transform: rotate(180deg);
}

.accordion__content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
}

.accordion__details[open] .accordion__content-wrapper {
  grid-template-rows: 1fr;
}

.accordion__content {
  overflow: hidden;
}

.accordion__content__inner {
  padding: 0 0 1.5rem 3.4rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgb(117, 117, 117);
}

.accordion__content__inner p {
  margin: 0;
}

/* ----- FOOTER ----- */
.footer-wrapper {
  background-color: rgb(var(--color-footer-bg));
  overflow: hidden;
}

.footer {
  color: rgb(var(--color-footer-text));
  padding: 24px 1.5rem 15px;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 20px;
  }
}

.footer__content-top {
  margin-bottom: 2rem;
}

/* Mobile: Footer em coluna única */
.footer__blocks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

@media screen and (min-width: 990px) {
  .footer__blocks-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr 3fr 4fr;
    gap: 3rem;
    text-align: left;
  }
}

.footer-block {
  text-align: center;
}

@media screen and (min-width: 990px) {
  .footer-block {
    text-align: left;
  }
}

.footer-block--full-width {
  order: -1;
}

.footer-block-image {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .footer-block-image {
    justify-content: flex-start;
  }
}

.footer-block__image-wrapper {
  max-width: 120px;
}

.footer-block__image-wrapper img {
  width: 100%;
  height: auto;
}

.footer-block__heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: rgb(var(--color-footer-text));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 990px) {
  .footer-block__heading {
    font-size: 1.8rem;
  }
}

.footer-block__details-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block__details-content .link {
  font-size: 1.4rem;
  color: rgba(var(--color-footer-text), 0.75);
  text-decoration: none;
  transition: color var(--duration-default) ease;
}

.footer-block__details-content .link:hover {
  color: rgb(var(--color-footer-text));
}

.footer-block__details-content.rte {
  font-size: 1.4rem;
  color: rgba(var(--color-footer-text), 0.75);
}

.footer-block__details-content.rte h6 {
  font-size: 1.4rem;
  font-weight: var(--font-body-weight);
  margin: 0;
  line-height: 1.8;
}

/* Footer social */
.footer__list-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 0;
  list-style: none;
}

.footer__list-social .list-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: rgb(var(--color-footer-text));
  transition: color var(--duration-default) ease;
}

.footer__list-social .list-social__link svg {
  width: 2.2rem;
  height: 2.2rem;
}

.footer__list-social .list-social__link:hover {
  color: rgb(var(--color-base-accent-1));
  filter: drop-shadow(0 0 6px rgba(var(--color-base-accent-1), 0.4));
}

/* Footer bottom */
.footer__content-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--color-footer-text), 0.15);
}

.footer__copyright {
  font-size: 1.2rem;
  color: rgba(var(--color-footer-text), 0.5);
  margin: 0;
}

.footer__copyright a {
  color: rgba(var(--color-footer-text), 0.7);
  text-decoration: none;
}

.footer__copyright a:hover {
  color: rgb(var(--color-footer-text));
}

/* ----- SCROLL TO TOP ----- */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4.8rem;
  height: 4.8rem;
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-default) ease,
              visibility var(--duration-default) ease,
              transform var(--duration-default) ease,
              background-color var(--duration-default) ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0 16px rgba(221, 29, 29, 0.35);
}

.scroll-to-top:hover {
  background-color: rgb(190, 25, 25);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(221, 29, 29, 0.45);
}

.scroll-to-top svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.scroll-to-top .material-symbols-outlined {
  font-size: 2.2rem;
}

/* ----- MEDIA QUERIES MOBILE ----- */
@media screen and (max-width: 749px) {
  .mobile-full-page {
    padding-left: 0;
    padding-right: 0;
  }
  
  .mobile-full-page > .multicolumn__grid,
  .mobile-full-page > .testimonials__grid {
    padding: 0 1.5rem;
  }
  
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
  }
}

/* ----- MATERIAL SYMBOLS FONT ----- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
