.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:transparent;font-family:"Glancyr", Sans-serif;font-weight:700;background-image:linear-gradient(180deg, #000000 0%, #000000 100%);}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{font-family:"Stage Grotesk", Sans-serif;font-weight:100;}.elementor-kit-6 h1{font-family:"Glancyr", Sans-serif;font-weight:900;}.elementor-kit-6 h2{font-family:"Glancyr", Sans-serif;font-weight:300;}.elementor-kit-6 h3{font-family:"Stage Grotesk", Sans-serif;font-weight:400;}.elementor-kit-6 h5{font-family:"Stage Grotesk", Sans-serif;font-weight:300;}.elementor-kit-6 h6{font-family:"Stage Grotesk", Sans-serif;font-weight:200;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}.site-footer .site-branding .site-logo img{width:10vw;max-width:10vw;}.site-footer .site-description{color:#444444;}.site-footer .copyright p{color:#2E2E2E;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}.site-footer .site-branding .site-logo img{width:50px;max-width:50px;}}/* Start custom CSS *//* Texto rolando */
.scrolling-text {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  text-align: center;
  padding: 20px 0;
}

.scrolling-text span {
  display: inline-block;
  font-weight: bold;

  /* Tamanho padrão (desktop grande) */
  font-size: 50px;

  /* Degradê animado */
  background: linear-gradient(270deg, #333, #f2f2f2, #333);
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: animate-gradient 4s ease-in-out infinite alternate;
}

/* Animação do degradê */
@keyframes animate-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Tablet (768px a 1024px) */
@media (max-width: 1024px) {
  .scrolling-text span {
    font-size: 35px;
  }
}

/* Mobile (até 767px) */
@media (max-width: 767px) {
  .scrolling-text span {
    font-size: 30px;
  }
}




/* Container dos cards */
.cards-container {
  max-width: 1200px;
  margin: 0px auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
}

/* Estilo dos cards */
.card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 5px 20px rgba(255, 75, 43, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Efeito de elevação ao passar o mouse */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 75, 43, 0.35);
}

/* Animação de entrada dos elementos do card */
.card h3,
.card p {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.5s ease forwards;
}

.card h3 {
  animation-delay: 0.2s;
}

.card p {
  animation-delay: 0.4s;
}

/* Animação de entrada */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão animado dentro do card */
.card .btn-animado {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #f2f2f2;
  background: linear-gradient(#282828, #020202, #f101);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: slideBtn 0.2s ease forwards;
  animation-delay: 0.6s;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* Hover do botão */
.card:hover .btn-animado {
  box-shadow: 0 5px 20px rgba(255, 75, 43, 0.3);
  transform: translateY(-2px) scale(1.02);
}

/* Animação de entrada do botão */
@keyframes slideBtn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: white;
}

.cards-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 5px 20px rgba(255, 75, 43, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card.large {
  flex: 1;
  min-width: 280px;
}

.card.small {
  flex: 1;
  min-width: 280px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 75, 43, 0.35);
}

/* Elementos internos animados */
.card h3,
.card p,
.card .btn-animado {
  opacity: 1;
  transform: translateY(0px);
}

/* Animação no hover do card */
.card:hover h3 {
  animation: slideUp 0.4s ease forwards;
  animation-delay: 0.1s;
}

.card:hover p {
  animation: slideUp 0.4s ease forwards;
  animation-delay: 0.5s;
}

.card:hover .btn-animado {
  animation: slideUp 0.4s ease forwards;
  animation-delay: 0.5s;
}

/* Animação de entrada */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilo do botão */
.btn-animado {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.card:hover .btn-animado:hover {
  box-shadow: 0 5px 20px rgba(255, 75, 43, 0.3);
  transform: translateY(-2px) scale(1.00);
  
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 100;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 200;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 800;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
@font-face {
	font-family: 'Glancyr';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/Glancyr-Variable-VF.ttf') format('truetype');
}
/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Stage Grotesk';
	font-style: normal;
	font-weight: 100;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/StageGrotesk-Thin.ttf') format('truetype');
}
@font-face {
	font-family: 'Stage Grotesk';
	font-style: normal;
	font-weight: 200;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/StageGrotesk-Light.ttf') format('truetype');
}
@font-face {
	font-family: 'Stage Grotesk';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/StageGrotesk-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Stage Grotesk';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/StageGrotesk-Medium.ttf') format('truetype');
}
@font-face {
	font-family: 'Stage Grotesk';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/StageGrotesk-Bold.ttf') format('truetype');
}
@font-face {
	font-family: 'Stage Grotesk';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/StageGrotesk-ExtraBold.ttf') format('truetype');
}
@font-face {
	font-family: 'Stage Grotesk';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('https://raiffacessorios.com.br/wp-content/uploads/2025/06/StageGrotesk-Black.ttf') format('truetype');
}
/* End Custom Fonts CSS */