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

:root {
  /* Cores Principais - Tons mais escuros e vibrantes (Alto Impacto) */
  --primary: #0A8754; 
  --primary-light: #14B877;
  --primary-dark: #032718;
  
  /* Secundárias e Acentos */
  --secondary: #D92525; /* Vermelho mais forte */
  --accent: #11D494;
  
  /* Tons de Fundo e Superfícies */
  --bg-color: #F0F2F5; /* Cinza claro estilo WP */
  --surface: #FFFFFF;
  --surface-alt: #F8F9FA;
  --border-color: #E2E8E6;
  
  /* Textos */
  --text-main: #1A201E;
  --text-muted: #566861;
  
  /* Utilitários */
  --shadow-sm: 0 2px 8px rgba(15, 122, 85, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 122, 85, 0.1);
  --shadow-lg: 0 16px 40px rgba(15, 122, 85, 0.15);
  
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 15% 50%, rgba(24, 184, 130, 0.05), transparent 25%),
                    radial-gradient(circle at 85% 30%, rgba(15, 122, 85, 0.08), transparent 25%);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.9);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary);
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-logos-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 15px rgba(15, 122, 85, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 122, 85, 0.4);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero .tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(24, 184, 130, 0.1);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  letter-spacing: -1px;
}

.hero .gradient-text {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: inherit;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* Background Utilities */
.bg-dark {
  background-color: var(--primary-dark);
  color: white;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3 {
  color: white;
}
.bg-dark .text-muted {
  color: rgba(255,255,255,0.7);
}

.bg-light {
  background-color: var(--bg-color);
}

.bg-white {
  background-color: var(--surface);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-bg {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Solid Cards (Estilo WP) */
.solid-card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
}

.solid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--primary-light);
}

.solid-card h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

/* Banner Citação */
.quote-banner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.quote-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}
.quote-banner p {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Content Layouts */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.content-block {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.content-block h2 {
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(24, 184, 130, 0.2);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.content-block p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* List Styling */
.styled-list {
  list-style: none;
  margin-top: 1rem;
}

.styled-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.styled-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Badges / Tags */
.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-free { background: rgba(24, 184, 130, 0.1); color: var(--primary); }
.badge-paid { background: rgba(227, 53, 47, 0.1); color: var(--secondary); }

/* Resource Item */
.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.resource-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.resource-icon {
  font-size: 2.5rem;
  background: rgba(24, 184, 130, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.resource-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.resource-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}

/* Footer */
footer {
  background: var(--text-main);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-md);
    clip-path: circle(0 at top right);
    transition: clip-path 0.5s ease-out;
  }

  .nav-links.active {
    clip-path: circle(150% at top right);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2.2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  
  .resource-item { flex-direction: column; }
}
