.elementor-192 .elementor-element.elementor-element-af594d9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c623bf1 *//* Agendy.ai - Guides and Tutorials Styles - FINAL */
/* Brand Colors: Blue #0095DA, Green #50B848 */

/* Reset and Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.guides-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

/* ========================================
   HERO / SEARCH SECTION
   ======================================== */
.guides-hero {
  background: linear-gradient(to bottom, #005a8c, #0095DA);
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .guides-hero {
    padding: 6rem 1rem;
  }
}

.guides-hero h1 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .guides-hero h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .guides-hero h1 {
    font-size: 3rem;
  }
}

.guides-hero-subtitle {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .guides-hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Search Input - CORRIGIDO (Sobreposição e Tema) */
.guides-page .search-wrapper {
  position: relative;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.guides-page .search-input {
  width: 100%;
  /* Padding esquerdo aumentado e !important para forçar espaço do ícone */
  padding: 0.875rem 1rem 0.875rem 3.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 0.5rem !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
  height: auto !important;
  box-shadow: none;
}

.guides-page .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.guides-page .search-input:focus {
  border-color: rgba(255, 255, 255, 0.5) !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.guides-page .search-icon {
  position: absolute;
  left: 1rem !important;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none; /* Permite clicar através do ícone */
  z-index: 10;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.375rem;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   POPULAR GUIDES SECTION
   ======================================== */
.popular-guides {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 1.875rem;
  }
}

.section-header a {
  color: #0095DA;
  text-decoration: none;
  font-weight: 500;
}

.section-header a:hover {
  text-decoration: underline;
}

/* Guide Cards Grid */
.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Popular Guide Card */
.popular-guide-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.popular-guide-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.popular-guide-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.popular-guide-content {
  padding: 1.25rem;
}

.guide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgba(0, 149, 218, 0.15);
  color: #0095DA;
}

.guide-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.guide-time svg {
  width: 0.875rem;
  height: 0.875rem;
}

.popular-guide-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.popular-guide-content p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.guide-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #0095DA;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.guide-btn:hover {
  background-color: #007ab8;
}

/* ========================================
   CATEGORIES & RECENT SECTION
   ======================================== */
.categories-recent {
  padding: 4rem 1rem;
  background-color: #f9fafb;
}

.categories-recent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .categories-recent-grid {
    grid-template-columns: 1fr 2fr;
  }
}

/* Categories Sidebar */
.categories-sidebar h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.categories-box {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.categories-list {
  list-style: none;
}

.category-item {
  margin-bottom: 0.5rem;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #374151;
  transition: all 0.2s ease;
}

.category-link:hover {
  background-color: rgba(0, 149, 218, 0.08);
}

.category-link-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #0095DA;
}

.category-count {
  padding: 0.125rem 0.625rem;
  background-color: #f3f4f6;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4b5563;
}

/* Format Section */
.format-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.format-section h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.format-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.format-btn {
  padding: 0.375rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  background-color: transparent;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.format-btn:hover {
  border-color: #0095DA;
  color: #0095DA;
}

/* Recent Guides */
.recent-guides h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.recent-guides-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.recent-guides-header a {
  color: #0095DA;
  text-decoration: none;
  font-weight: 500;
}

.recent-guides-header a:hover {
  text-decoration: underline;
}

.recent-guides-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Recent Guide Card */
.recent-guide-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.recent-guide-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recent-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.recent-guide-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.recent-guide-card > p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Expandable Content */
.expandable-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.expandable-content.expanded {
  max-height: 1000px;
  opacity: 1;
  margin-bottom: 1rem;
}

.expandable-inner {
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.expandable-inner h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.expandable-inner h4:first-child {
  margin-top: 0;
}

.expandable-inner p {
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.expandable-inner ol,
.expandable-inner ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.expandable-inner li {
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.expandable-inner strong {
  color: #1f2937;
}

/* Recent Guide Footer - CORRIGIDO (Removido hover rosa e estilo de botão) */
.recent-guide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recent-guide-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.expand-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  /* FORÇANDO RESET DO TEMA */
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #0095DA !important;
  font-weight: 500;
  cursor: pointer;
  padding: 0 !important;
  transition: color 0.2s ease;
}

/* Remove o fundo rosa no hover e mantém apenas texto azul */
.expand-btn:hover {
  background: transparent !important;
  background-color: transparent !important;
  color: #007ab8 !important;
  text-decoration: underline;
  box-shadow: none !important;
}

.expand-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
  fill: none; /* Garante que o ícone não fique preenchido */
}

.expand-btn.expanded svg {
  transform: rotate(180deg);
}

/* ========================================
   VIDEO TUTORIALS SECTION
   ======================================== */
.video-tutorials {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.video-card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  background-color: #e5e7eb;
}

.video-thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.play-button:hover {
  background-color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #0095DA;
  margin-left: 2px;
}

.video-content {
  padding: 1rem;
}

.video-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}

.video-content p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ========================================
   CTA SECTION
   ======================================== */
.guides-cta {
  padding: 4rem 1rem;
  background-color: #005a8c;
  color: #ffffff;
  text-align: center;
}

.guides-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .guides-cta h2 {
    font-size: 1.875rem;
  }
}

.guides-cta p {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-btn-primary {
  padding: 0.875rem 1.5rem;
  background-color: #ffffff;
  color: #005a8c;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.cta-btn-primary:hover {
  background-color: #f3f4f6;
}

.cta-btn-secondary {
  padding: 0.875rem 1.5rem;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* ========================================
   LANGUAGE SELECTOR - Menu Unificado
   ======================================== */
.language-.elementor-192 .elementor-element.elementor-element-c623bf1 {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-btn:hover {
  border-color: #0095DA;
  color: #0095DA;
  background-color: #f0f9ff;
}

.language-btn svg {
  width: 20px;
  height: 20px;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 8px 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 10px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
}

.language-option:hover {
  background-color: #f0f9ff;
  color: #0095DA;
}

.language-option.active {
  background-color: rgba(0, 149, 218, 0.1);
  color: #0095DA;
  font-weight: 600;
}

.language-option.active::before {
  content: '✓';
  margin-right: 8px;
  font-weight: 700;
}

/* ========================================
   UTILITIES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}/* End custom CSS */