/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.7
	Stable tag: 3.4.7
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* ================================================================
   :ROOT — TOKENS GLOBAIS
   ================================================================ */
:root {
  /* Cores */
  --color-primary:        #f37021;
  --color-primary-hover:  #d65d1a;
  --color-primary-light:  rgba(243, 112, 33, 0.12);
  --color-secondary:      #1a2b4b;
  --color-bg-dark:        #0a0a0a;
  --color-bg-blue:        #2a4381;
  --color-bg-blue-deep:   #1a2b4b;
  --color-bg-light:       #ffffff;
  --color-bg-surface:     #f8f9fb;
  --color-text-light:     #ffffff;
  --color-text-dark:      #0F172A;
  --color-text-muted:     #6b7280;
  --color-text-subtle:    #9ca3af;
  --color-border:         rgba(255, 255, 255, 0.1);
  --color-border-light:   #e5e7eb;
  --color-grey-rr: #64748B;
	
  /* Gradient */
  --gradient-primary: linear-gradient(90deg, #FF7A1A 0%, #994910 100%);

  /* Tipografia */
  --font-main:         "Inter", sans-serif;
  --font-size-base:    16px;
  --font-size-xs:      0.75rem;
  --font-size-sm:      0.875rem;
  --font-size-md:      1rem;
  --font-size-lg:      1.125rem;
  --font-size-xl:      1.25rem;
  --font-size-2xl:     1.5rem;
  --font-size-3xl:     2rem;
  --font-size-h2:      2.5rem;
  --font-size-h1:      3.5rem;

  /* Espaçamento */
  --spacing-xs:   0.5rem;
  --spacing-sm:   1rem;
  --spacing-md:   1.5rem;
  --spacing-lg:   2.5rem;
  --spacing-xl:   4rem;
  --spacing-2xl:  6rem;

  /* Layout */
  --container-width:  1200px;
  --border-radius-sm: 6px;
  --border-radius-normal:    10px !important;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.16);

  /* Transições */
  --transition:      all 0.25s ease;
  --transition-slow: all 0.4s ease;
	

	--rr-color-primary: #2f6bff;
	--rr-color-bg-light: #ffffff;
	--rr-color-bg-dark: #0a0a0a;
	--rr-color-bg-surface: #f8f9fb;
	--rr-color-bg-card-dark: #141414;
	--rr-color-text-dark: #0f172a;
	--rr-color-text-muted: #6b7280;
	--rr-color-text-light: #ffffff;
	--rr-color-text-muted-light: #a1a1aa;
	--rr-color-border: #e5e7eb;
	--rr-color-border-dark: #27272a;

	--rr-color-blue: #3b82f6;
	--rr-color-purple: #a855f7;
	--rr-color-orange: #f97316;
	--rr-color-red: #ef4444;
	--rr-color-green: #22c55e;
	--rr-color-cyan: #06b6d4;

	--rr-spacing-sm: 1rem;
	--rr-spacing-md: 1.5rem;
	--rr-spacing-lg: 2.5rem;
	--rr-spacing-xl: 4rem;

	--rr-radius-md: 12px;
	--rr-radius-lg: 16px;
	--rr-transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size:   var(--font-size-base);
  color:       var(--color-text-dark);
  line-height: 1.65;
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit !important;
  transition: var(--transition);
}

ul { list-style: none; }

button { font-family: inherit; }

/* ================================================================
   UTILITÁRIOS
   ================================================================ */

/* ── container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── section-padding ── */
.section-padding {
  padding: var(--spacing-2xl) 0;
}

/* ── text-center ── */
.text-center { text-align: center; }

/* ── section-header (reutilizável entre seções) ── */
.section-header {
  margin-bottom: var(--spacing-xl);
}

.section-header__label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.section-header__title {
  font-size: var(--font-size-h2);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* ── botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--border-radius-normal);
  font-size:   var(--font-size-sm);
  font-weight: 600;
  cursor:      pointer;
  transition:  var(--transition);
  border: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(243,112,33,0.35);
}

.btn--primary:hover {
  filter: brightness(0.9);
  box-shadow: 0 6px 20px rgba(243,112,33,0.45);
  transform: translateY(-1px);
}


.btn--primary-blue {
  background: linear-gradient(90deg, #2454CC 0%, #122A66 100%);
  color: white !important;
  box-shadow: 0 2px 8px rgba(18, 42, 102, 0.3);
}

.btn--primary-blue:hover {
  background: linear-gradient(90deg, #2454CC 0%, #122A66 80%);
  box-shadow: 0 2px 8px rgba(18, 42, 102, 0.45);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding: 13px 0;
}

.btn--ghost:hover {
  color: var(--color-primary-hover);
  gap: 12px;
}

/* ── animação de entrada ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   HEADER
   ================================================================ */
#rr-header {
  background-color: #ffffff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 1px 0 var(--color-border-light);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

#rr-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

#rr-header .rr-header__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ── Branding ── */
#rr-header .rr-header__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

#rr-header .rr-header__logo span {
  color: var(--color-primary);
}

#rr-header .rr-header__logo:hover {
  color: var(--color-text-dark);
  opacity: 0.85;
}

/* ── Desktop nav ── */
#rr-header .rr-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

#rr-header .rr-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

#rr-header .rr-header__nav-list li {
  text-align: center;
  display: flex;
}

#rr-header .rr-header__nav-link {
  font-size:   var(--font-size-sm);
  font-weight: 500;
  color:       var(--color-text-muted);
  padding:     6px 12px;
  border-radius: var(--border-radius-sm);
  transition:  var(--transition);
}

#rr-header .rr-header__nav-link:hover,
#rr-header .rr-header__nav-link--active {
  color:            var(--color-primary);
  background-color: var(--color-primary-light);
}

/* ── CTA ── */
#rr-header .rr-header__cta { flex-shrink: 0; }

#rr-header .rr-header__cta-btn {
  display:     inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #2454CC 0%, #122A66 100%);
  color:       white !important;
  font-size:   var(--font-size-sm);
  font-weight: 600;
  padding:     10px 22px;
  border-radius: var(--border-radius-sm);
  transition:  var(--transition);
  box-shadow: 0 2px 8px rgba(18, 42, 102, 0.3);
}

#rr-header .rr-header__cta-btn:hover {
  background: linear-gradient(90deg, #2454CC 0%, #122A66 80%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(18, 42, 102, 0.4);
}

/* ── Toggle mobile ── */
#rr-header .rr-header__toggle {
  display:    none;
  background: none;
  border:     none;
  cursor:     pointer;
  padding:    8px;
  flex-shrink: 0;
  border-radius: var(--border-radius-sm);
  transition: background-color 0.2s;
}

#rr-header .rr-header__toggle:hover {
  background-color: var(--color-bg-surface);
}

#rr-header .rr-header__toggle-icon,
#rr-header .rr-header__toggle-icon::before,
#rr-header .rr-header__toggle-icon::after {
  display:    block;
  width:      22px;
  height:     2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  position:   relative;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

#rr-header .rr-header__toggle-icon::before,
#rr-header .rr-header__toggle-icon::after {
  content:  "";
  position: absolute;
  left:     0;
}

#rr-header .rr-header__toggle-icon::before { top: -7px; }
#rr-header .rr-header__toggle-icon::after  { top:  7px; }

#rr-header .rr-header__toggle[aria-expanded="true"] .rr-header__toggle-icon {
  background-color: transparent;
}
#rr-header .rr-header__toggle[aria-expanded="true"] .rr-header__toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
}
#rr-header .rr-header__toggle[aria-expanded="true"] .rr-header__toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav ── */
#rr-header .rr-header__mobile-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: var(--shadow-lg);
  padding: 8px 16px 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  display: block;
}

#rr-header .rr-header__mobile-nav--open {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#rr-header .rr-header__mobile-list {
  list-style: none;
  margin:  0;
  padding: 0;
}

#rr-header .rr-header__mobile-link {
  display:     block;
  padding:     11px 12px;
  font-size:   var(--font-size-md);
  font-weight: 500;
  color:       var(--color-text-dark);
  border-radius: var(--border-radius-sm);
  transition:  var(--transition);
}

#rr-header .rr-header__mobile-link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

#rr-header .rr-header__mobile-link--cta {
  display:     block;
  margin-top:  10px;
  padding:     13px 12px;
  background:  var(--color-primary);
  color:       white !important;
  border-radius: var(--border-radius-sm);
  text-align:  center;
  font-weight: 600;
  box-shadow:  0 2px 8px rgba(243,112,33,0.3);
}

#rr-header .rr-header__mobile-link--cta:hover {
  background: var(--color-primary-hover);
}
/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background-color: rgba(15, 23, 42, 1);
  color: rgba(100, 116, 139, 1);
  padding: 64px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  font-weight: 600;
  font-size: var(--font-size-xl);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer__logo span { color: rgba(230, 234, 240, 1); }

.footer__desc {
  font-size:   var(--font-size-sm);
  color:       rgba(100, 116, 139, 1);
  max-width:   260px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width:  36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__social-link svg {
  transition: all 0.3s ease;
}
.footer__social-link:hover svg {
  stroke: var(--color-primary);
}
.footer__social-link:hover {
  background: rgba(214, 93, 26, 0.2);
}

.footer__social svg { width: 16px; height: 16px; }

.footer__title {
  font-size:   var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__link {
  display:    block;
  margin-bottom: 10px;
  font-size:  var(--font-size-sm);
  color:      rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer__link:hover { color: var(--color-primary) !important; }

.footer__contact-item {
  display:    flex;
  align-items: center;
  gap:        10px;
  margin-bottom: 12px;
  font-size:  var(--font-size-sm);
  color:      rgba(255,255,255,0.55);
}

.footer__contact-item svg { 
	width: 15px; 
	height: 15px; 
	flex-shrink: 0; 
	color: rgba(148, 163, 184, 1); 
	transition: all 0.3s ease;
}

.footer__contact-item:hover {
	color: var(--color-primary);
}

.footer__contact-item:hover svg {
	stroke: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display:    flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size:  var(--font-size-sm);
  color:      rgba(148, 163, 184, 1);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a:hover { color: var(--color-primary) !important; }

/* ================================================================
   RESPONSIVE GLOBAL
   ================================================================ */
@media (max-width: 960px) {
  #rr-header .rr-header__cta  { display: none; }
  #rr-header .rr-header__nav-list { gap: 4px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  :root {
    --font-size-h1: 2.4rem;
    --font-size-h2: 2rem;
  }

  #rr-header .rr-header__nav    { display: none; }
  #rr-header .rr-header__toggle { display: flex; }
  #rr-header .rr-header__cta    { display: none; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer__bottom-links { justify-content: center; }
}