html, body {
  height: 100%;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  background: #fff;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 24px;
  z-index: 100;
  box-shadow: 0 4px 24px 0 rgba(30,58,138,0.10);
  border-radius: 20px;
  margin: 24px auto 0 auto;
  max-width: 1280px;
  padding: 0 24px;
  transition: box-shadow 0.2s;
  box-sizing: border-box;
}
.navbar-logo {
  height: 40px;
}
.navbar-links a {
  color: #111827;
  text-decoration: none;
  margin-left: 32px;
  font-weight: 600;
  transition: color 0.2s;
}
.navbar-links a:hover {
  color: #3B82F6;
}

.navbar-search {
  display: inline-block;
  margin-left: 24px;
}
.navbar-search input {
  padding: 7px 14px;
  font-size: 0.98rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #f7f9fa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: #222;
  min-width: 110px;
  max-width: 160px;
}
.navbar-search input:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 2px #3B82F620;
  background: #fff;
}

.section {
  padding: 64px 0;
}
.bg {
  background: #F9FAFB;
}
.hero-bg {
  background: linear-gradient(135deg, rgba(30,58,138,0.08) 0%, rgba(59,130,246,0.04) 100%);
  padding-top: 48px;
}
.hero-row {
  align-items: center;
}
.hero-text {
  min-width: 320px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #4B5563;
  margin: 24px 0;
}
.hero-illustration img {
  max-width: 400px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  background: #fff;
  padding: 12px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.col {
  flex: 1 1 0;
  min-width: 260px;
}

.card {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 24px 20px;
  margin-bottom: 24px;
}
.card.highlight {
  background: #EFF6FF;
  border-left: 4px solid #3B82F6;
}

.main-content {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}
.main-section {
  flex: 2 1 0;
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.side-section {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 260px;
  max-width: 340px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30, 58, 138, 0.06);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: left;
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s, border-width 0.2s;
  box-sizing: border-box;
  justify-content: center;
  width: 220px;
  min-height: 180px;
}
.feature-card:hover {
  border-color: #22D3EE;
  border-width: 4px;
}
.feature-card h3 {
  color: #1E3A8A;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.feature-card p {
  color: #222;
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}
.community-section {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px 0 rgba(30,58,138,0.04);
}
.community-section h2 {
  color: #1E3A8A;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.btn-primary {
  background: #3B82F6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 8px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #2563EB;
}
.footer {
  background: #1F2937;
  color: #D1D5DB;
  padding: 32px 0;
  text-align: center;
}
.footer a {
  color: #60A5FA;
  text-decoration: none;
  margin: 0 8px;
}
.footer a:hover {
  text-decoration: underline;
}

.search-bar {
  display: flex;
  margin: 24px 0 0 0;
  max-width: 420px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
}
.search-bar input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 8px 0 0 8px;
  outline: none;
  background: transparent;
}
.search-bar button {
  background: #3B82F6;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.search-bar button:hover {
  background: #2563EB;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1D4ED8;
  margin-bottom: 24px;
}
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 24px 20px;
  border-left: 4px solid #3B82F6;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.article-card.pick {
  border-left: 4px solid #22D3EE;
  background: #F0FDFA;
}
.article-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  font-weight: 700;
}
.article-card h3 a {
  color: #1E3A8A;
  text-decoration: none;
  transition: color 0.2s;
}
.article-card h3 a:hover {
  color: #3B82F6;
  text-decoration: underline;
}
.article-card p {
  margin: 0 0 8px 0;
  color: #374151;
  font-size: 1.05rem;
}
.article-meta {
  font-size: 0.95rem;
  color: #6B7280;
}
.picks-list {
  margin-top: 16px;
}

.sidebar-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 20px 18px;
  margin-bottom: 24px;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 12px;
}
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li {
  margin-bottom: 8px;
}
.sidebar-list a {
  color: #3B82F6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar-list a:hover {
  color: #2563EB;
  text-decoration: underline;
}

.highlights-section {
  padding: 32px 0 0 0;
  background: #F9FAFB;
}
.highlights-scroll {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #3B82F6 #F9FAFB;
}
.highlights-scroll::-webkit-scrollbar {
  height: 8px;
}
.highlights-scroll::-webkit-scrollbar-thumb {
  background: #3B82F6;
  border-radius: 4px;
}
.highlight-card {
  min-width: 320px;
  max-width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(30, 58, 138, 0.07);
  padding: 20px 18px 16px 18px;
  border-left: 4px solid #3B82F6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.highlight-card h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.highlight-card h4 a {
  color: #1E3A8A;
  text-decoration: none;
  transition: color 0.2s;
}
.highlight-card h4 a:hover {
  color: #3B82F6;
  text-decoration: underline;
}
.highlight-card p {
  margin: 0 0 8px 0;
  color: #374151;
  font-size: 1.01rem;
}
.highlight-card .article-meta {
  font-size: 0.93rem;
  color: #6B7280;
}
.highlight-category {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #3B82F6;
  background: #EFF6FF;
  border-radius: 6px;
  padding: 2px 10px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.highlight-meta {
  font-size: 0.93rem;
  color: #6B7280;
  margin-top: 6px;
}

.solution-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  justify-content: center;
  align-items: stretch;
}
.feature-card {
  background: #fff;
  color: #1E3A8A;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 220px;
  max-width: 320px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1100px) {
  .main-content {
    flex-direction: column;
    gap: 32px;
  }
  .main-section {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .row { flex-direction: column; gap: 32px; }
  .navbar-links a { margin-left: 16px; }
  .hero-title { font-size: 2rem; }
  .hero-illustration img { max-width: 320px; }
  .highlights-scroll {
    gap: 16px;
  }
  .highlight-card {
    min-width: 260px;
    max-width: 90vw;
    padding: 16px 10px 12px 12px;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.5rem;
    min-height: 56px;
    max-width: 100vw;
  }
  .navbar-logo {
    height: 28px;
    max-width: 90px;
    margin: 0 0.5rem 0 0;
  }
  .navbar-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    margin-left: 0;
  }
  .navbar-links a {
    font-size: 0.98rem;
    margin-left: 8px;
    padding: 0 2px;
    white-space: nowrap;
  }
  .navbar-search {
    margin-left: 6px;
    min-width: 60px;
    max-width: 80px;
  }
  .navbar-search input {
    min-width: 50px;
    max-width: 80px;
    font-size: 0.92rem;
    padding: 5px 6px;
  }
  /* Optional: for future use */
  .navbar-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .main-content { padding: 1.2rem 0.7rem; }
  .sidebar-card { padding: 14px 8px; }
  .community-section { padding: 1.2rem 0.5rem; }
  .feature-card { min-height: 100px; }
} 

@media (max-width: 1000px) {
  .container, .navbar {
    max-width: 98vw;
    padding: 0 8px;
    border-radius: 14px;
  }
} 

/* --- Tutor LMS Theme Integration --- */
.tutor-course-card, .tutor-course-loop {
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30, 58, 138, 0.07);
  background: #fff;
  border: 2px solid #e5e7eb;
  padding: 1.5rem 1.2rem;
  margin-bottom: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tutor-course-card:hover, .tutor-course-loop:hover {
  border-color: #22D3EE;
  box-shadow: 0 4px 24px 0 rgba(30,58,138,0.10);
}
.tutor-course-card-title, .tutor-course-title {
  color: #1E3A8A;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.tutor-btn, .tutor-button, .tutor-course-btn {
  background: #3B82F6;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  padding: 10px 24px;
}
.tutor-btn:hover, .tutor-button:hover, .tutor-course-btn:hover {
  background: #2563EB;
}
.tutor-course-loop-meta, .tutor-meta {
  color: #6B7280;
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
}
.tutor-course-loop .tutor-course-header {
  border-bottom: none;
}
.tutor-course-loop .tutor-course-footer {
  border-top: none;
  background: none;
} 

/* Remove hamburger and overlay menu styles */
/*
.navbar-overlay, .navbar-overlay.active, .navbar-overlay-menu, .navbar-overlay-menu a, .navbar-overlay-menu a:hover, .navbar-overlay .navbar-search, .navbar-overlay-close, .navbar-overlay-close:hover, .navbar-burger, .navbar-burger span {
  display: none !important;
}
*/
@media (max-width: 600px) {
  .navbar-burger {
    display: none !important;
  }
  .navbar-links {
    display: flex !important;
  }
}
@media (min-width: 601px) {
  .navbar-overlay {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .navbar-burger {
    display: none !important;
  }
} 

/* --- Custom MC4WP Form Styles for Cursos Landing Page --- */
.page-id-123 .mc4wp-form,
.page-id-123 .mc4wp-form-127,
.mc4wp-form-127 {
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: 340px;
  margin: 0 auto;
}

.page-id-123 .mc4wp-form input[type="text"],
.page-id-123 .mc4wp-form input[type="email"],
.mc4wp-form-127 input[type="text"],
.mc4wp-form-127 input[type="email"] {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  width: 100%;
  font-size: 1.05rem;
}

.page-id-123 .mc4wp-form button[type="submit"],
.mc4wp-form-127 button[type="submit"] {
  background: #3B82F6;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 0;
  border-radius: 12px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.page-id-123 .mc4wp-form button[type="submit"]:hover,
.mc4wp-form-127 button[type="submit"]:hover {
  background: #2563EB;
} 

/* --- Force Custom MC4WP Form Styles for Cursos Landing Page --- */
body.page-id-123 .mc4wp-form-127,
body.page-id-123 .mc4wp-form-127 input[type="text"],
body.page-id-123 .mc4wp-form-127 input[type="email"],
body.page-id-123 .mc4wp-form-127 input[type="tel"],
body.page-id-123 .mc4wp-form-127 button[type="submit"] {
  all: unset;
  box-sizing: border-box;
}

body.page-id-123 .mc4wp-form-127 {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  align-items: center !important;
  max-width: 340px !important;
  margin: 0 auto !important;
}
body.page-id-123 .mc4wp-form-127 input[type="text"],
body.page-id-123 .mc4wp-form-127 input[type="email"],
body.page-id-123 .mc4wp-form-127 input[type="tel"] {
  padding: 12px 16px !important;
  border-radius: 12px !important;
  border: 1px solid #e5e7eb !important;
  width: 100% !important;
  font-size: 1.05rem !important;
  margin-bottom: 0 !important;
}
body.page-id-123 .mc4wp-form-127 button[type="submit"] {
  background: #3B82F6 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 13px 0 !important;
  border-radius: 12px !important;
  width: 100% !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
body.page-id-123 .mc4wp-form-127 button[type="submit"]:hover {
  background: #2563EB !important;
} 