/*
Theme Name: INOVE ÁGIL
Theme URI: https://inoveagil.com
Author: INOVE ÁGIL
Author URI: https://inoveagil.com
Description: Tema moderno e vibrante para INOVE ÁGIL - Consultoria, Formação e Mentoria de Liderança
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inove-agil
*/

/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta de Cores INOVE ÁGIL */
  --color-purple: #663795;
  --color-teal: #0BA78B;
  --color-orange: #FF6615;
  --color-blue: #658CF5;
  --color-gray: #C1C5C5;
  --color-dark: #1a1a2e;
  --color-white: #ffffff;
  --color-light-bg: #f8f9fa;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* ===== TIPOGRAFIA ===== */
.text-oversized {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
}

.text-large {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}

.text-medium {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.text-body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-purple);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--color-purple);
}

.cta-button-header {
  background: var(--color-purple);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button-header:hover {
  background: var(--color-teal);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-teal) 100%);
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  color: var(--color-white);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--color-orange);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #e55a0f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: 2px solid var(--color-white);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-purple);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 6rem 2rem;
  background: var(--color-white);
}

.problem-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-subtitle {
  color: var(--color-orange);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  color: var(--color-dark);
}

.problem-list {
  list-style: none;
  max-width: 800px;
}

.problem-list li {
  font-size: 1.125rem;
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
}

.problem-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--color-teal);
  padding: 6rem 2rem;
  color: var(--color-white);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  background: var(--color-orange);
  padding: 2rem;
  color: var(--color-white);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 6rem 2rem;
  background: var(--color-light-bg);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  margin-top: 3rem;
}

.service-card {
  padding: 3rem 2rem;
  color: var(--color-white);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card:nth-child(1) {
  background: var(--color-purple);
}

.service-card:nth-child(2) {
  background: var(--color-teal);
}

.service-card:nth-child(3) {
  background: var(--color-orange);
}

.service-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* ===== PILLARS SECTION ===== */
.pillars-section {
  padding: 6rem 2rem;
  background: var(--color-white);
}

.pillars-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  padding: 3rem;
  color: var(--color-white);
  min-height: 300px;
}

.pillar-card:nth-child(1) {
  background: var(--color-purple);
}

.pillar-card:nth-child(2) {
  background: var(--color-teal);
}

.pillar-card:nth-child(3) {
  background: var(--color-blue);
}

.pillar-card:nth-child(4) {
  background: var(--color-orange);
}

.pillar-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.pillar-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pillar-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.governance-card {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 2.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.governance-icon {
  font-size: 3rem;
}

.governance-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.governance-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  padding: 6rem 2rem;
  background: var(--color-blue);
  color: var(--color-white);
}

.founder-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.founder-avatar {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-white);
}

.founder-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.founder-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.founder-cta {
  margin-top: 2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 2rem;
  background: var(--color-purple);
  color: var(--color-white);
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.cta-container p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.cta-box {
  background: var(--color-orange);
  padding: 3rem;
  margin-top: 3rem;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  border: none;
}

.cta-submit {
  background: var(--color-white);
  color: var(--color-orange);
  padding: 1rem 2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-submit:hover {
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-teal);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--color-teal);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .founder-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .founder-avatar {
    margin: 0 auto;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero-section {
    padding: 5rem 1.5rem 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-form {
    flex-direction: column;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}




/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ===== BLOG & VIDEOS SECTION ===== */
.content-section {
  padding: 80px 20px;
  background: var(--color-light-bg);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.content-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.content-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.content-card-body {
  padding: 24px;
}

.content-card-title {
  font-size: 1.4rem;
  color: var(--color-purple);
  margin-bottom: 12px;
}

.content-card-excerpt {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
}

.content-card-link {
  color: var(--color-teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.content-card-link:hover {
  gap: 12px;
}

/* ===== VIDEO EMBED ===== */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== IMPROVED BUTTONS ===== */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-teal), var(--color-orange));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ===== IMPROVED CARDS WITH HOVER EFFECTS ===== */
.feature-card, .service-card, .pillar-card {
  transition: all 0.3s ease;
}

.feature-card:hover, .service-card:hover, .pillar-card:hover {
  transform: translateY(-8px);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--color-purple), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== LOADING ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-purple), var(--color-teal));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-teal), var(--color-orange));
}

/* ===== ACCESSIBILITY ===== */
.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;
}

/* ===== PRINT STYLES ===== */
@media print {
  .whatsapp-float,
  .hero-buttons,
  .cta-section {
    display: none;
  }
}




/* ===== SINGLE POST STYLES ===== */
.single-post {
  background: white;
}

.single-post-header {
  background: linear-gradient(135deg, var(--color-purple), var(--color-teal));
  padding: 80px 20px 60px;
  color: white;
  text-align: center;
}

.single-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.single-post-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.single-post-meta {
  font-size: 0.95rem;
  opacity: 0.9;
}

.single-post-featured-image {
  max-width: 1200px;
  margin: -40px auto 40px;
  padding: 0 20px;
}

.single-post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.single-post-content {
  padding: 60px 20px;
}

.single-post-content p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  font-size: 1.1rem;
}

.single-post-content h2 {
  color: var(--color-purple);
  margin-top: 2em;
  margin-bottom: 0.8em;
}

.single-post-content h3 {
  color: var(--color-teal);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
}

.single-post-content ul, .single-post-content ol {
  margin-left: 2em;
  margin-bottom: 1.5em;
}

.single-post-content li {
  margin-bottom: 0.5em;
}

.single-post-content blockquote {
  border-left: 4px solid var(--color-orange);
  padding-left: 20px;
  margin: 2em 0;
  font-style: italic;
  color: #555;
}

.single-post-footer {
  background: var(--color-light-bg);
  padding: 60px 20px;
}

.single-post-share {
  margin-bottom: 40px;
  text-align: center;
}

.single-post-share h3 {
  color: var(--color-purple);
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.share-btn.linkedin {
  background: #0077B5;
}

.share-btn.facebook {
  background: #1877F2;
}

.share-btn.twitter {
  background: #1DA1F2;
}

.share-btn.whatsapp {
  background: #25D366;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.single-post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-prev, .nav-next {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  color: var(--color-purple);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-prev:hover, .nav-next:hover {
  background: var(--color-purple);
  color: white;
  transform: translateY(-3px);
}

.nav-next {
  text-align: right;
}

/* ===== PAGINATION ===== */
.pagination {
  margin-top: 60px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  padding: 10px 16px;
  background: white;
  border: 2px solid var(--color-purple);
  border-radius: 8px;
  color: var(--color-purple);
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: var(--color-purple);
  color: white;
}

.pagination .current {
  background: var(--color-purple);
  color: white;
}

@media (max-width: 768px) {
  .single-post-title {
    font-size: 2rem;
  }
  
  .single-post-content p {
    font-size: 1rem;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-btn {
    width: 100%;
  }
  
  .single-post-navigation {
    flex-direction: column;
  }
}


/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 80px 20px;
    background: var(--color-light-bg);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-card-date {
    color: var(--color-teal);
    font-weight: 600;
}

.blog-card-category {
    color: var(--color-gray);
}

.blog-card-category a {
    color: var(--color-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-category a:hover {
    color: var(--color-teal);
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--color-purple);
}

.blog-card-excerpt {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    color: var(--color-teal);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-link:hover {
    color: var(--color-purple);
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
    padding: 80px 20px;
    background: var(--color-white);
}

.videos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.video-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.video-card-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.video-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-card-thumbnail img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-card:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-content {
    padding: 30px;
}

.video-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.video-card-date {
    color: var(--color-orange);
    font-weight: 600;
}

.video-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.video-card-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-card-title a:hover {
    color: var(--color-purple);
}

.video-card-excerpt {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-card-link {
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-card-link:hover {
    color: var(--color-purple);
}

.section-cta {
    text-align: center;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-gray);
    font-size: 18px;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .blog-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-section,
    .videos-section {
        padding: 60px 20px;
    }
}
/* Checkbox de consentimento no formulário CTA */
.cta-form {
    display: flex;
    flex-wrap: wrap; /* Permite quebra de linha */
    gap: 10px;
    align-items: center;
}

.cta-form .cta-input {
    flex: 1;
    min-width: 250px;
}

.cta-form .cta-submit {
    flex-shrink: 0;
}

.cta-form .form-consent {
    flex-basis: 100%; /* Força o checkbox a ocupar 100% da largura */
    width: 100%;
    margin-top: 10px;
    text-align: left;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: white;
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
    min-width: 16px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #FF6615;
}

.form-consent a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.form-consent a:hover {
    color: #FFD700;
}