/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
}

.logo-image {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0;
}

/* Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: #1e3a8a;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.desktop-toggle {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-toggle {
    display: flex;
  }

  .menu-toggle:not(.desktop-toggle) {
    display: none;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 90px;
  left: 0;
  height: calc(100vh - 90px);
  width: 280px;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 90;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar.open .sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

.sidebar-content {
  padding: 30px 20px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-bottom: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #4b5563;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.nav-link:hover {
  background-color: #f3f4f6;
  color: #1e3a8a;
}

.nav-link.active {
  background-color: #dbeafe;
  color: #1e3a8a;
  font-weight: 600;
}

.nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-separator {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.external-link {
  color: #059669 !important;
}

.external-link:hover {
  background-color: #ecfdf5 !important;
  color: #047857 !important;
}

/* Main Content */
.main-content {
  transition: margin-left 0.3s ease;
}

.main-content.sidebar-open {
  margin-left: 280px;
}

@media (max-width: 1023px) {
  .main-content.sidebar-open {
    margin-left: 0;
  }
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #4b5563;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  font-size: 1rem;
  line-height: 1;
}

.button-primary {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.button-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.button-secondary {
  background-color: transparent;
  color: #3b82f6;
  border-color: #3b82f6;
}

.button-secondary:hover {
  background-color: #3b82f6;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.button-full {
  width: 100%;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* WhatsApp Button */
.whatsapp-button {
  background-color: #25d366;
  border-color: #25d366;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 24px;
  text-align: center;
}

.section-description {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  color: #4b5563;
  line-height: 1.6;
}

/* About Section */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-text {
  font-size: 1.1rem;
  color: #4b5563;
  font-weight: 500;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
}

.about-text p {
  margin-bottom: 24px;
}

.about-text strong {
  color: #1e3a8a;
  font-weight: 600;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background-color: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.feature-description {
  color: #4b5563;
  line-height: 1.6;
}

/* Mentoring Section */
.mentoring-contact {
  max-width: 1000px;
  margin: 0 auto;
}

.mentoring-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mentoring-info {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mentoring-title {
  font-size: 1.75rem;
  color: #1e3a8a;
  margin-bottom: 16px;
  font-weight: 600;
}

.mentoring-description {
  color: #4b5563;
  margin-bottom: 32px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.qr-code-container {
  text-align: center;
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.qr-title {
  font-size: 1.3rem;
  color: #1e3a8a;
  margin-bottom: 24px;
  font-weight: 600;
}

.qr-code {
  margin-bottom: 16px;
}

.qr-code img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-description {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Personality Test Section */
.personality-test-container {
  max-width: 600px;
  margin: 0 auto;
}

.test-card {
  background-color: white;
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.test-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.test-title {
  font-size: 1.75rem;
  color: #1e3a8a;
  margin-bottom: 20px;
  font-weight: 600;
}

.test-description {
  color: #4b5563;
  margin-bottom: 32px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.test-features {
  margin-bottom: 40px;
}

.test-features ul {
  list-style: none;
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}

.test-features li {
  color: #4b5563;
  margin-bottom: 12px;
  font-size: 1rem;
}

/* Career Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.article-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.article-header {
  padding: 32px;
}

.article-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.article-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #3b82f6;
  border-radius: 12px;
  margin-right: 16px;
}

.article-title {
  font-size: 1.4rem;
  color: #1e3a8a;
  font-weight: 600;
  line-height: 1.3;
}

.article-summary {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}

.article-footer {
  padding: 0 32px 32px;
  margin-top: auto;
}

.article-content {
  padding: 0 32px 24px;
}

.article-text {
  color: #4b5563;
  margin-bottom: 32px;
  white-space: pre-line;
  line-height: 1.6;
}

.article-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.article-section-title {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 12px;
  font-weight: 600;
}

.article-list {
  list-style-position: inside;
  color: #4b5563;
  line-height: 1.6;
}

.article-list li {
  margin-bottom: 6px;
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #374151;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
  background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.character-counter {
  text-align: right;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 6px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #3b82f6;
  border-radius: 12px;
  margin-right: 16px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-item p {
  color: #4b5563;
}

.social-media {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #3b82f6;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 60px 0 30px;
  transition: margin-left 0.3s ease;
}

.footer.sidebar-open {
  margin-left: 280px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo-image {
  height: 50px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.footer-logo p {
  color: #bfdbfe;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #bfdbfe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bfdbfe;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .sidebar {
    z-index: 110;
  }

  .sidebar-overlay {
    z-index: 100;
  }

  .main-content.sidebar-open {
    margin-left: 0;
  }

  .footer.sidebar-open {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-details {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .mentoring-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .sidebar {
    width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 24px;
  }

  .test-card {
    padding: 32px 24px;
  }

  .article-header {
    padding: 24px;
  }

  .article-footer {
    padding: 0 24px 24px;
  }

  .article-content {
    padding: 0 24px 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .mentoring-info {
    padding: 24px;
  }

  .qr-code-container {
    padding: 24px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Error states */
.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

/* Success states */
.success-message {
  color: #10b981;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
.button:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .sidebar,
  .header,
  .footer {
    display: none;
  }

  .main-content {
    margin-left: 0 !important;
  }

  .section {
    page-break-inside: avoid;
  }
}
