@layer base {
  :root {
    /* Yellow/Gold Primary Palette */
    --primary: 45 100% 50%;
    --primary-foreground: 0 0% 0%;
    --primary-glow: 45 100% 60%;
    --primary-dark: 45 100% 40%;
	  
	--primary-mind: #3636c6;
	--secondary-mind:#80bcff;
	  
	--primary-scout: #6236c6;
	--secondary-scout:#9d89f6;
    
    /* Background */
    --background: 45 30% 97%;
    --foreground: 0 0% 5%;
    
    /* Cards */
    --card: 0 0% 100%;
    --card-foreground: 0 0% 5%;
    
    /* Popover */
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 5%;
    
    /* Secondary - Cream/Warm */
    --secondary: 45 40% 92%;
    --secondary-foreground: 0 0% 5%;
    
    /* Muted */
    --muted: 45 20% 90%;
    --muted-foreground: 0 0% 35%;
    
    /* Accent */
    --accent: 35 100% 55%;
    --accent-foreground: 0 0% 0%;
    
    /* Destructive */
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    
    /* Border & Input */
    --border: 45 30% 85%;
    --input: 45 30% 85%;
    --ring: 45 100% 50%;
    
    /* Radius */
    --radius: 1rem;
    
    /* Custom Colors */
    --gold: 45 100% 50%;
    --gold-light: 45 100% 70%;
    --gold-dark: 45 100% 35%;
    --charcoal: 0 0% 10%;
    --warm-white: 45 50% 98%;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(45 100% 50%), hsl(35 100% 55%));
    --gradient-gold-radial: radial-gradient(circle at 50% 50%, hsl(45 100% 60%), hsl(45 100% 45%));
    --gradient-dark: linear-gradient(135deg, hsl(0 0% 5%), hsl(0 0% 15%));
    
    /* Shadows */
    --shadow-gold: 0 10px 40px -10px hsl(45 100% 50% / 0.4);
    --shadow-lg: 0 20px 60px -15px hsl(0 0% 0% / 0.15);
    --shadow-card: 0 4px 20px -5px hsl(0 0% 0% / 0.1);

    /* Sidebar */
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }

  .dark {
    --background: 0 0% 5%;
    --foreground: 45 30% 95%;
    
    --card: 0 0% 8%;
    --card-foreground: 45 30% 95%;
    
    --popover: 0 0% 8%;
    --popover-foreground: 45 30% 95%;
    
    --primary: 45 100% 50%;
    --primary-foreground: 0 0% 0%;
    
    --secondary: 0 0% 15%;
    --secondary-foreground: 45 30% 95%;
    
    --muted: 0 0% 15%;
    --muted-foreground: 45 20% 65%;
    
    --accent: 35 100% 55%;
    --accent-foreground: 0 0% 0%;
    
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 100%;
    
    --border: 0 0% 20%;
    --input: 0 0% 20%;
    --ring: 45 100% 50%;
    
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground font-sans antialiased;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  h1, h2, h3, h4, h5, h6 {
    @apply font-bold text-foreground tracking-tight;
  }
}

@layer utilities {
  .text-gradient-gold {
    @apply bg-clip-text text-transparent;
    background-image: var(--gradient-gold);
  }
  
  .bg-gradient-gold {
    background: var(--gradient-gold);
  }
  
  .bg-gradient-dark {
    background: var(--gradient-dark);
  }
  
  .shadow-gold {
    box-shadow: var(--shadow-gold);
  }
  
  .shadow-card {
    box-shadow: var(--shadow-card);
  }
}

/* Custom Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float-delayed {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(45 100% 50% / 0.3);
  }
  50% {
    box-shadow: 0 0 40px hsl(45 100% 50% / 0.6);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 8s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out forwards;
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary-dark));
}

/* MIND */

.bg-pmind{
	background-color: var(--primary-mind);
}

.bg-smind{
	background-color: var(--secondary-mind);
}

.text-mind{
	color: var(--secondary-mind);
}


/* scout */

.bg-pscout{
	background-color: var(--primary-scout);
}

.bg-sscout{
	background-color: var(--secondary-scout);
}

.text-scout{
	color: var(--secondary-scout);
}

/* ================================
   GLOBAL POST STYLE
   Inspired by Tailwind Prose
================================ */

.post-content {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1.125rem; /* prose-lg */
  max-width: none;
}

/* Paragraphs */
.post-content p {
  margin: 1rem 0;
  color: var(--muted-foreground);
}

/* Strong text */
.post-content strong {
  color: var(--foreground);
  font-weight: 600;
}

/* H2 */
.post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* H3 */
.post-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

/* Lists */
.post-content ul,
.post-content ol {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1.25rem;
  color: var(--muted-foreground);
}

/* UL dots */
.post-content ul li {
  list-style-type: disc;
  margin: 0.4rem 0;
}

/* OL numbers */
.post-content ol li {
  list-style-type: decimal;
  margin: 0.4rem 0;
}

/* Links */
.post-content a {
  color: var(--foreground);
  text-decoration: underline;
  font-weight: 500;
}

/* Blockquotes */
.post-content blockquote {
  border-left: 4px solid var(--foreground);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--foreground);
  font-style: italic;
}

/* Images */
.post-content img {
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  max-width: 100%;
  height: auto;
}

/* Code blocks */
.post-content pre {
  background: #1f1f1f;
  color: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

/* Inline code */
.post-content code {
  background: rgba(0,0,0,0.1);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.95rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee {
  animation: marquee 30s linear infinite;
  will-change: transform;
}
@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fm-scale,
.fm-up,
.fm-right {
  opacity: 0;
}
.fm-scale.is-visible {
  animation: fadeScale 0.7s ease-out forwards;
}

.fm-up.is-visible {
  animation: fadeUp 0.7s ease-out forwards;
}

.fm-right.is-visible {
  animation: fadeRight 0.7s ease-out forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }


@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.2;
  }
}

.scroll-dot {
  animation: scroll 1.2s ease-in-out infinite;
}

.form-content form {
  display: flex;
  flex-direction: column;
  gap: 8rem; /* space-y-6 */
}

/* Inputs e textarea */
.form-content form input[type="text"],
.form-content form input[type="email"],
.form-content form input[type="tel"],
.form-content form textarea {
  width: 100%;
  padding: 1rem 0; /* py-4 */
  background: transparent;
  border: 0;
  border-bottom: 2px solid hsl(var(--border));
  outline: none;
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

/* Placeholder */
.form-content form input::placeholder,
.form-content form textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

/* Focus */
.form-content form input:focus,
.form-content form textarea:focus {
  border-bottom-color: hsl(var(--primary));
}

/* Remove resize feio */
.form-content form textarea {
  resize: none;
  height: 80px;
}

/* ===== Botão ===== */
.form-content form input[type="submit"] {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px; /* rounded-full */
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

/* Hover / active */
.form-content form input[type="submit"]:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.form-content form input[type="submit"]:active {
  transform: scale(0.95);
}

/* Mensagens CF7 */
.form-content .wpcf7-response-output {
  margin-top: 1rem;
  border: none;
  color: hsl(var(--foreground));
  font-size: 0.9rem;
}

.form-content .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #ef4444; /* red-500 */
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-numbers li {
  display: inline-flex;
}

.page-numbers a,
.page-numbers .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Link padrão */
.page-numbers a {
  background-color: hsl(var(--muted) / 0.5);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.page-numbers a:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
  transform: scale(1.05);
  box-shadow: 0 0 20px hsl(var(--primary) / 0.3);
}

/* Página atual */
.page-numbers .current {
  background: linear-gradient(135deg, #D4AF37 0%, #F4E5A1 50%, #D4AF37 100%);
  color: hsl(var(--background));
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  font-weight: 700;
}

/* Setas prev/next */
.page-numbers .prev,
.page-numbers .next {
  min-width: 2.75rem;
  padding: 0;
}

.page-numbers .prev svg,
.page-numbers .next svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Dots (...) */
.page-numbers .dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

/* Responsive */
@media (max-width: 640px) {
  .page-numbers a,
  .page-numbers .current {
    min-width: 2.5rem;
    height: 2.5rem;
    font-size: 0.8125rem;
    padding: 0 0.75rem;
  }
  
  /* Esconde alguns números em mobile */
  .page-numbers li:not(.prev):not(.next):not(.current):nth-child(n+6) {
    display: none;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.form-program {
  color: #0f172a;
  border-radius: 24px;
  padding: 32px;
}

/* Espaçamento entre campos (equivalente ao space-y-4) */
.form-program form > p,
.form-program form > div,
.form-program .wpcf7-form-control-wrap {
  margin-bottom: 16px;
}

/* Labels */
.form-program label {
  display: flex;
	flex-direction:column;
	gap:4px;
  font-size: 12px /* text-sm */
  font-weight: 600;
	color: hsl(var(--primary-foreground));
}

.form-program label span{
	margin:8px 0 0;
}

/* Inputs e selects */
.form-program input[type="text"],
.form-program input[type="email"],
.form-program input[type="tel"],
.form-program select,
.form-program textarea {
  width: 100%;
  padding: 12px 16px; /* px-4 py-3 */
  border-radius: 16px; /* rounded-xl */
  border: 1px solid #e5e7eb;
  background-color: transparent;
  color: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Placeholder */
.form-program input::placeholder,
.form-program textarea::placeholder {
  color: #9ca3af;
}

/* Focus */
.form-program input:focus,
.form-program select:focus,
.form-program textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 1px #d4af37;
}

/* Botão */
.form-program input[type="submit"],
.form-program button,
.form-program .wpcf7-submit {
  width: 100%;
  padding: 16px 0; /* py-4 */
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.1s ease;
}

/* Hover do botão */
.form-program input[type="submit"]:hover,
.form-program .wpcf7-submit:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35); /* shadow-gold */
}

/* Texto pequeno (política de privacidade) */
.form-program .form-footer,
.form-program .wpcf7-response-output,
.form-program small {
  font-size: 0.75rem; /* text-xs */
  color: #6b7280;
  text-align: center;
  margin-top: 16px;
}

/* Mensagens do Contact Form 7 */
.form-program .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 4px;
}

.form-program .wpcf7-response-output {
  border: none;
  padding: 0;
}

/* Remove estilos padrão estranhos do CF7 */
.form-program .wpcf7-spinner {
  display: none;
}

 @keyframes scrollLeft {
	 0% { transform: translateX(0); }
	 100% { transform: translateX(-50%); }
}
.animate-scroll {
	animation: scrollLeft 40s linear infinite;
}
 @media (max-width: 768px) {
	 .animate-scroll {
		 animation: scrollLeft 20s linear infinite;
	 }
}

/* rhello Session */
.rhello-session {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .rhello-session {
    flex-direction: row;
  }
  .rhello-session-col {
    width: 50%;
  }
}
.rhello-cta-link:hover {
  opacity: 0.8;
}
.rhello-cta-link:hover svg {
  transform: translateX(4px);
}
.rhello-cta-link svg {
  transition: transform 0.2s;
}

/* Animação carrossel logos mobile */
@keyframes logosScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-logos-scroll {
  animation: logosScroll 20s linear infinite;
}

h1, h2, h3, h4{
	font-family: "Hubot Sans", sans-serif;
}
h5, h6, p, a, span, li, strong,{
	font-family: "Montserrat", sans-serif;
}

body, html{
	font-family: "Montserrat", sans-serif;
}







