.elementor-kit-7{--e-global-color-primary:#202324;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#9E4F32;--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;font-family:"Poppins", Sans-serif;font-size:18px;font-weight:400;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 a{color:var( --e-global-color-primary );font-size:18px;font-weight:600;}.elementor-kit-7 a:hover{color:#080808;font-weight:600;}.elementor-kit-7 h1{font-family:"Nunito Sans", Sans-serif;font-size:48px;font-weight:700;line-height:40px;}.elementor-kit-7 h2{font-family:"Nunito Sans", Sans-serif;font-size:32px;font-weight:500;}.elementor-kit-7 h3{font-family:"Poppins", Sans-serif;font-size:22px;font-weight:500;}.elementor-kit-7 h4{font-family:"Poppins", Sans-serif;font-weight:400;}.elementor-kit-7 h5{font-family:"Poppins", Sans-serif;}.elementor-kit-7 button,.elementor-kit-7 input[type="button"],.elementor-kit-7 input[type="submit"],.elementor-kit-7 .elementor-button{font-family:"Inter", Sans-serif;font-size:13.5px;border-style:solid;border-width:1px 1px 1px 1px;border-radius:6px 6px 6px 6px;padding:9px 9px 9px 9px;}.elementor-kit-7 button:hover,.elementor-kit-7 button:focus,.elementor-kit-7 input[type="button"]:hover,.elementor-kit-7 input[type="button"]:focus,.elementor-kit-7 input[type="submit"]:hover,.elementor-kit-7 input[type="submit"]:focus,.elementor-kit-7 .elementor-button:hover,.elementor-kit-7 .elementor-button:focus{border-style:solid;border-width:1px 1px 1px 1px;border-radius:6px 6px 6px 6px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-7 h2{font-size:30px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Variáveis globais */
:root {
  --achadim-bronze: #9e4f32;
}

/* BOTÃO ACHADIM (Outline) */
.btn-achadim-outline {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 20px;
  border-radius: 6px;
  border: 1.6px solid var(--achadim-bronze);
  background: rgba(158,79,50,.06);

  font: 600 13.5px/1 "Inter", system-ui, sans-serif;
  letter-spacing: .35px;
  color: var(--achadim-bronze);
  text-decoration: none;

  transition: all .25s ease;
}

/* Ícones SVG automaticamente na cor do tema */
.btn-achadim-outline svg,
.btn-achadim-outline i {
  stroke: var(--achadim-bronze);
  color: var(--achadim-bronze);
}

/* Brilho animado */
.btn-achadim-outline::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -40px;
  width: 30px;
  height: calc(100% + 4px);

  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: achadim-sweep 2.8s infinite;
  opacity: .7;
}

/* Movimento do brilho */
@keyframes achadim-sweep {
  0%   { left: -40px; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

/* Hover */
.btn-achadim-outline:hover {
  background: rgba(158,79,50,.12);
  transform: translateY(-1px);
}/* End custom CSS */