/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 5,700+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.11.1765929561
Updated: 2025-12-16 20:59:21

*/
/* ============ SCARF / SHADCN-LIKE BUTTONS (Spectra wrapper) ============ */

/* =======================
   TWEAKCN TOKENS (WP SAFE)
   ======================= */

:root{
  --background:#fcfcfc;
  --foreground:#171717;
  --card:#fcfcfc;
  --card-foreground:#171717;
  --popover:#fcfcfc;
  --popover-foreground:#525252;

  --primary:#01754a;
  --primary-foreground:#ffffff;

  --secondary:#fdfdfd;
  --secondary-foreground:#171717;

  --muted:#ededed;
  --muted-foreground:#202020;

  --accent:#ededed;
  --accent-foreground:#202020;

  --destructive:#ca3214;
  --destructive-foreground:#fffcfc;

  --border:#dfdfdf;
  --input:#f6f6f6;

  --ring:#72e3ad;

  --sidebar:#fcfcfc;
  --sidebar-foreground:#707070;
  --sidebar-primary:#01754a;
  --sidebar-primary-foreground:#1e2723;
  --sidebar-accent:#ededed;
  --sidebar-accent-foreground:#202020;
  --sidebar-border:#dfdfdf;
  --sidebar-ring:#72e3ad;

  --font-sans: Geist, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --radius:0.375rem;

  --shadow-2xs:0px 1px 3px 0px hsl(0 0% 0% / 0.09);
  --shadow-xs:0px 1px 3px 0px hsl(0 0% 0% / 0.09);
  --shadow-sm:0px 1px 3px 0px hsl(0 0% 0% / 0.17), 0px 1px 2px -1px hsl(0 0% 0% / 0.17);
  --shadow:0px 1px 3px 0px hsl(0 0% 0% / 0.17), 0px 1px 2px -1px hsl(0 0% 0% / 0.17);
  --shadow-md:0px 1px 3px 0px hsl(0 0% 0% / 0.17), 0px 2px 4px -1px hsl(0 0% 0% / 0.17);
  --shadow-lg:0px 1px 3px 0px hsl(0 0% 0% / 0.17), 0px 4px 6px -1px hsl(0 0% 0% / 0.17);

  --tracking-normal:0.025em;
}

.dark{
  --background:#121212;
  --foreground:#e2e8f0;
  --card:#171717;
  --card-foreground:#e2e8f0;
  --popover:#242424;
  --popover-foreground:#a9a9a9;

  --primary:#01754a;
  --primary-foreground:#dde8e3;

  --secondary:#242424;
  --secondary-foreground:#fafafa;

  --muted:#1f1f1f;
  --muted-foreground:#a2a2a2;

  --accent:#313131;
  --accent-foreground:#fafafa;

  --destructive:#541c15;
  --destructive-foreground:#ede9e8;

  --border:#292929;
  --input:#242424;

  --ring:#4ade80;

  --sidebar:#121212;
  --sidebar-foreground:#898989;
  --sidebar-primary:#01754a;
  --sidebar-primary-foreground:#dde8e3;
  --sidebar-accent:#313131;
  --sidebar-accent-foreground:#fafafa;
  --sidebar-border:#292929;
  --sidebar-ring:#4ade80;
}

body{
  letter-spacing:var(--tracking-normal);
  font-family:var(--font-sans);
}
/* =========================================
   SHADCN-LIKE BUTTONS (Spectra + Astra Header)
   Use classes on wrapper:
   - tw-btn tw-btn-white
   - tw-btn tw-btn-green
   - tw-btn tw-btn-dark
   - optional: tw-btn-sm | tw-btn-lg
   ========================================= */

/* TARGETS (clickable element)
   1) Spectra: .uagb-buttons-repeater.wp-block-button__link
   2) Astra header button: .ast-builder-button-wrap ... a
*/
.tw-btn .uagb-buttons-repeater.wp-block-button__link,
.ast-builder-button-wrap.tw-btn a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:.5rem !important;

  font-family:var(--font-sans) !important;
  font-size:0.875rem !important;   /* text-sm */
  font-weight:500 !important;      /* font-medium */
  letter-spacing:var(--tracking-normal) !important;

  padding:0.625rem 1.25rem !important;
  border-radius:var(--radius) !important;

  border:1px solid transparent !important;
  text-decoration:none !important;
  cursor:pointer !important;
  user-select:none !important;
  -webkit-tap-highlight-color:transparent !important;

  line-height:1 !important;
  background-image:none !important;

  box-shadow:var(--shadow-sm) !important;

  transition:
    transform 150ms cubic-bezier(.4,0,.2,1),
    box-shadow 150ms cubic-bezier(.4,0,.2,1),
    background-color 150ms cubic-bezier(.4,0,.2,1),
    border-color 150ms cubic-bezier(.4,0,.2,1),
    color 150ms cubic-bezier(.4,0,.2,1) !important;
}

.tw-btn .uagb-buttons-repeater.wp-block-button__link:hover,
.ast-builder-button-wrap.tw-btn a:hover{
  transform:translateY(-1px) !important;
  box-shadow:var(--shadow-md) !important;
}

.tw-btn .uagb-buttons-repeater.wp-block-button__link:active,
.ast-builder-button-wrap.tw-btn a:active{
  transform:translateY(0px) !important;
  box-shadow:var(--shadow-sm) !important;
}

/* focus ring (WP-safe, no color-mix dependency) */
.tw-btn .uagb-buttons-repeater.wp-block-button__link:focus,
.ast-builder-button-wrap.tw-btn a:focus{
  outline:none !important;
}

.tw-btn .uagb-buttons-repeater.wp-block-button__link:focus-visible,
.ast-builder-button-wrap.tw-btn a:focus-visible{
  box-shadow:
    0 0 0 2px var(--background),
    0 0 0 5px rgba(114, 227, 173, .55),
    var(--shadow-md) !important;
}

/* WHITE (outline/secondary) — border DOES NOT change on hover */
.tw-btn-white .uagb-buttons-repeater.wp-block-button__link,
.ast-builder-button-wrap.tw-btn-white a{
  background:var(--background) !important;
  color:var(--foreground) !important;
  border-color:var(--border) !important;
}

.tw-btn-white .uagb-buttons-repeater.wp-block-button__link:hover,
.ast-builder-button-wrap.tw-btn-white a:hover{
  background:var(--muted) !important;
  color:var(--foreground) !important;
  border-color:var(--border) !important;
}

/* GREEN (primary) */
.tw-btn-green .uagb-buttons-repeater.wp-block-button__link,
.ast-builder-button-wrap.tw-btn-green a{
  background:var(--primary) !important;
  color:var(--primary-foreground) !important;
  border-color:var(--primary) !important;
}

.tw-btn-green .uagb-buttons-repeater.wp-block-button__link:hover,
.ast-builder-button-wrap.tw-btn-green a:hover{
  background:#01875a !important;
  border-color:#01875a !important;
}

/* DARK */
.tw-btn-dark .uagb-buttons-repeater.wp-block-button__link,
.ast-builder-button-wrap.tw-btn-dark a{
  background:#1E3832 !important;
  color:#ffffff !important;
  border-color:#1E3832 !important;
}

.tw-btn-dark .uagb-buttons-repeater.wp-block-button__link:hover,
.ast-builder-button-wrap.tw-btn-dark a:hover{
  background:#2a4d43 !important;
  border-color:#2a4d43 !important;
}

/* optional sizes (apply on wrapper too) */
.tw-btn-sm .uagb-buttons-repeater.wp-block-button__link,
.ast-builder-button-wrap.tw-btn-sm a{
  padding:0.5rem 0.875rem !important;
  font-size:0.8125rem !important;
}

.tw-btn-lg .uagb-buttons-repeater.wp-block-button__link,
.ast-builder-button-wrap.tw-btn-lg a{
  padding:0.75rem 1.75rem !important;
  font-size:1rem !important;
}

/* =========================================
   ASTRA HEADER BUTTON #1 — CTA (DARK · NORMAL)
   ========================================= */

/* remove link duplicado */
.ast-header-button-1 .ast-builder-button-wrap > a.menu-link{
  display:none !important;
}

/* neutraliza o <a> */
.ast-header-button-1 .ast-builder-button-wrap > a.ast-custom-button-link{
  background:transparent !important;
  border:0 !important;
  padding:0 !important;
  box-shadow:none !important;
}

/* botão visual real */
.ast-header-button-1
.ast-builder-button-wrap
> a.ast-custom-button-link
.ast-custom-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  font-family:var(--font-sans) !important;
  font-size:0.875rem !important;
  font-weight:500 !important;
  letter-spacing:var(--tracking-normal) !important;

  padding:0.625rem 1.25rem !important;   /* NORMAL */
  border-radius:6px !important;

  background:#1E3832 !important;         /* 🔲 DARK */
  color:#ffffff !important;
  border:1px solid #1E3832 !important;

  box-shadow:var(--shadow-sm) !important;
  cursor:pointer !important;

  transition:
    transform 150ms cubic-bezier(.4,0,.2,1),
    box-shadow 150ms cubic-bezier(.4,0,.2,1),
    background-color 150ms cubic-bezier(.4,0,.2,1),
    border-color 150ms cubic-bezier(.4,0,.2,1) !important;
}

/* hover / active */
.ast-header-button-1
.ast-builder-button-wrap
> a.ast-custom-button-link:hover
.ast-custom-button{
  background:#2a4d43 !important;
  border-color:#2a4d43 !important;
  box-shadow:var(--shadow-md) !important;
  transform:translateY(-1px) !important;
}

.ast-header-button-1
.ast-builder-button-wrap
> a.ast-custom-button-link:active
.ast-custom-button{
  transform:translateY(0) !important;
  box-shadow:var(--shadow-sm) !important;
}


/* =========================================
   ASTRA HEADER BUTTON #3 — LOGIN (NORMAL SIZE)
   ========================================= */

/* remove link duplicado */
.ast-header-button-3 .ast-builder-button-wrap > a.menu-link{
  display:none !important;
}

/* zera o anchor */
.ast-header-button-3 .ast-builder-button-wrap > a.ast-custom-button-link{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* botão visual (mesmo tamanho do CTA normal) */
.ast-header-button-3
.ast-builder-button-wrap
> a.ast-custom-button-link
.ast-custom-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  font-family: var(--font-sans) !important;
  font-size:0.875rem !important;        /* normal */
  font-weight:500 !important;
  letter-spacing:var(--tracking-normal) !important;

  /* 🔑 MESMO padding do botão normal */
  padding:0.625rem 1.25rem !important;

  border-radius:6px !important;

  background: transparent !important;
  color: var(--primary-foreground) !important;

  border: 1px solid transparent !important;
  box-shadow: none !important;

  cursor:pointer !important;

  transition:
    color 150ms cubic-bezier(.4,0,.2,1),
    background-color 150ms cubic-bezier(.4,0,.2,1) !important;
}

/* hover — mesma altura, leve destaque */
.ast-header-button-3
.ast-builder-button-wrap
> a.ast-custom-button-link:hover
.ast-custom-button{
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
}

/* focus acessível */
.ast-header-button-3
.ast-builder-button-wrap
> a.ast-custom-button-link:focus-visible
.ast-custom-button{
  outline:none !important;
  background: rgba(255,255,255,0.12) !important;
}

/* =========================================
   ASTRA HEADER — tighten spacing between buttons
   ========================================= */

.site-header .ast-header-button-1{
  margin-left: -12px; /* pull CTA closer to Login */
}

/* FOOTER background (Astra) – hit all common wrappers */
footer.site-footer,
footer.site-footer .ast-footer-wrap,
footer.site-footer .ast-footer-overlay,
footer.site-footer .ast-small-footer,
footer.site-footer .ast-small-footer-wrap {
  background-color: #01754a !important; /* needed for blend-mode */
  background-image: url('/wp-content/uploads/2024/09/noise-light.png') !important;
  background-size: auto !important;
  background-repeat: repeat !important;
  background-attachment: scroll !important;
  background-blend-mode: overlay !important;
}



/* =========================================
   FOOTER — TOP WAVE DIVIDER
   ========================================= */

footer.site-footer{
  position: relative;
  overflow: hidden;	
	background-color: var(--primary-foreground)

}

/* wave injected above footer content */
footer.site-footer::before{

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;

  background-image: url('/wp-content/uploads/2024/09/bumper-bottom_white.svg');
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto;


  z-index: 2;
  pointer-events: none;
}

/* push content below the wave so it doesn’t overlap */
footer.site-footer > *{
  position: relative;
  z-index: 1;
}

