body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f7f8fa;
  color: #222;
}

.container {
  display: flex;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem 1.5rem 2rem 1.5rem;
}

.sidebar, .rightbar {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.main-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.profile-card, .skills-card, .goal-card, .contact-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(80, 80, 160, 0.07);
  padding: 2.5rem 1.8rem;
  text-align: center;
}

.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #e3e6f0;
  object-fit: cover;
  background: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.skills-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
.skills-card li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
  font-size: 1.05rem;
}
.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #e3e6f0;
}
.icon.automation-anywhere { background: #ffb300; }
.icon.uipath { background: #ff6f00; }
.icon.botcity { background: #7e57c2; }
.icon.python { background: #4f8ef7; }
.icon.db { background: #f7b4c7; }
.icon.automation { background: #b7aaff; }
.icon.sap { background: #0fa3b1; }
.icon.docker { background: #2496ed; }
.icon.git { background: #f1502f; }
.icon.grafana { background: #f46800; }

.projects-section {
  margin-bottom: 2.5rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem;
}
.project-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(80, 80, 160, 0.07);
  padding: 2rem 1.5rem;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
}
.project-card.blue { border-top: 6px solid #4f8ef7; }
.project-card.pink { border-top: 6px solid #f7b4c7; }
.project-card.purple { border-top: 6px solid #b7aaff; }
.project-card:hover {
  transform: translateY(-12px) scale(1.04) rotate(-2deg);
  box-shadow: 0 12px 36px rgba(80, 80, 160, 0.18);
  filter: brightness(1.08) saturate(1.1);
}
.project-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1;
}
.project-card:hover::after {
  opacity: 1;
  animation: shine 0.7s linear;
}
@keyframes shine {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}
.btn {
  background: #4f8ef7;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.18s;
  display: inline-block;
}
.project-card.pink .btn { background: #f7b4c7; color: #222; }
.project-card.purple .btn { background: #b7aaff; color: #222; }
.btn:hover {
  background: #222;
  color: #fff;
}
.goal-card {
  align-items: center;
}
.goal-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f8ef7 80%, #e3e6f0 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4f8ef7;
  box-shadow: 0 2px 12px rgba(80, 80, 160, 0.07);
}
.contact-card a {
  color: #4f8ef7;
  text-decoration: none;
  font-weight: 500;
}
.contact-card a:hover {
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .container {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
  .sidebar, .rightbar {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
  .footer {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    font-size: 0.98rem;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0.5rem;
    gap: 1rem;
  }
  .sidebar, .rightbar {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .main-content {
    gap: 1.2rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .footer {
    font-size: 0.93rem;
    padding: 0.7rem 0.2rem 0.5rem 0.2rem;
  }
}
.cat-animate {
  animation: swing 2s infinite ease-in-out;
}
@keyframes swing {
  0% { transform: rotate(-7deg); }
  20% { transform: rotate(5deg); }
  40% { transform: rotate(-3deg); }
  60% { transform: rotate(3deg); }
  80% { transform: rotate(-2deg); }
  100% { transform: rotate(-7deg); }
}
.pink-ball {
  background: linear-gradient(135deg, #f7b4c7 70%, #f9d6e5 100%);
  box-shadow: 0 2px 12px rgba(247, 180, 199, 0.25);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #e3e6f0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.goal-circle-animated {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goal-circle-animated span {
  position: absolute;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4f8ef7;
}
.goal-circle-animated .emoji {
  font-size: 2.2rem;
  left: 60%;
  top: 60%;
  transform: translate(-50%, -50%) rotate(-15deg);
  animation: rocket-bounce 1.2s infinite alternate cubic-bezier(.5,1.8,.5,1);
}
@keyframes rocket-bounce {
  0% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); }
  100% { transform: translate(-50%, -70%) rotate(-15deg) scale(1.15); }
}
.goal-circle-animated::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 7px solid #e3e6f0;
}
.goal-circle-animated::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 7px solid #4f8ef7;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-45deg);
  animation: fill-circle 1.2s cubic-bezier(.5,1.8,.5,1);
}
@keyframes fill-circle {
  0% { stroke-dasharray: 0 283; }
  100% { stroke-dasharray: 226 283; }
}
.python-fact-btn {
  background: #4f8ef7;
  color: #fff;
  margin-top: 1rem;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(80, 80, 160, 0.07);
}
.python-fact-btn:hover {
  background: #3066be;
}
.python-fact {
  margin-top: 1rem;
  background: #f7b4c7;
  color: #222;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(247, 180, 199, 0.13);
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
#robot-walk {
  position: fixed;
  left: -70px;
  bottom: 24px;
  z-index: 100;
  animation: robot-move 12s linear infinite;
  pointer-events: none;
}
@keyframes robot-move {
  0% { left: -70px; }
  10% { transform: scaleX(1); }
  45% { left: calc(100vw - 70px); transform: scaleX(1); }
  50% { left: calc(100vw - 70px); transform: scaleX(-1); }
  95% { left: -70px; transform: scaleX(-1); }
  100% { left: -70px; transform: scaleX(1); }
}
#robot-walk svg {
  filter: drop-shadow(0 2px 8px rgba(80,80,160,0.13));
}
.aa-robot-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.aa-robot {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(255,179,0,0.13));
  animation: robot-bounce 1.2s infinite alternate cubic-bezier(.5,1.8,.5,1);
}
@keyframes robot-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.card-logo-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.card-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(80,80,160,0.07);
}
.card-robot {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.modal-solicitacao {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.modal-content {
  position: relative;
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  line-height: 1;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.close-modal:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.close-modal:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(247, 180, 199, 0.2);
}
.solicitacao-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.solicitacao-form label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.3rem;
}
.solicitacao-form input,
.solicitacao-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.solicitacao-form textarea {
  resize: vertical;
  min-height: 100px;
}
.solicitacao-form button {
  background-color: #4f8ef7;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s;
  margin-top: 1rem;
}
.solicitacao-form button:hover {
  background-color: #3066be;
}
.skill-fact-btn {
  background: #b7aaff;
  color: #222;
  margin-left: 0.7rem;
  font-size: 0.95rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(80,80,160,0.07);
  padding: 0.3rem 0.7rem;
  display: inline-block;
}
.skill-fact-btn:hover {
  background: #4f8ef7;
  color: #fff;
}
.skill-fact {
  margin-top: 0.5rem;
  background: #f7b4c7;
  color: #222;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.98rem;
  box-shadow: 0 1px 4px rgba(247, 180, 199, 0.13);
  animation: fadeIn 0.5s;
}
.skill-bar {
  width: 100%;
  height: 16px;
  background: #e3e6f0;
  border-radius: 8px;
  margin: 0.4rem 0 0.7rem 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(80,80,160,0.07);
}
.skill-bar-fill {
  height: 100%;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.7rem;
  border-radius: 8px;
  width: 0;
  opacity: 0.95;
  animation: fillBar 1.2s cubic-bezier(.5,1.8,.5,1) forwards;
}
.skill-bar-fill.aa { background: linear-gradient(90deg, #ffb300 70%, #ffe082 100%); color: #222; }
.skill-bar-fill.uipath { background: linear-gradient(90deg, #b7aaff 70%, #ede7f6 100%); color: #222; }
.skill-bar-fill.botcity { background: linear-gradient(90deg, #ffb300 70%, #f7b4c7 100%); color: #222; }
.skill-bar-fill.python { background: linear-gradient(90deg, #4f8ef7 70%, #b7aaff 100%); }
@keyframes fillBar {
  from { width: 0; }
  to { width: var(--final-width, 100%); }
}
.typing-welcome {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4f8ef7;
  min-height: 1.5em;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  font-family: 'Inter', Arial, sans-serif;
  white-space: pre;
}
.intro-projetos {
  font-size: 1.13rem;
  color: #222;
  background: #f7f8fa;
  border-left: 4px solid #4f8ef7;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(80,80,160,0.06);
  font-weight: 500;
}
.footer {
  width: 100%;
  background: #f7f8fa;
  color: #222;
  text-align: center;
  padding: 2rem 1rem 1.2rem 1rem;
  font-size: 1.05rem;
  border-top: 1px solid #e3e6f0;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
}
.footer a {
  color: #4f8ef7;
  text-decoration: none;
  margin: 0 0.3rem;
  font-weight: 500;
}
.footer a:hover {
  text-decoration: underline;
}
.profile-resume {
  font-size: 1.01rem;
  color: #555;
  margin: 0.5rem 0 0.7rem 0;
  font-weight: 400;
  line-height: 1.4;
}
.top-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.2rem;
  margin-top: 0.5rem;
}
.mascote-logo {
  margin-bottom: 0.7rem;
}
.saudacao {
  font-size: 1.18rem;
  color: #4f8ef7;
  font-weight: 600;
  margin-bottom: 0.7rem;
  text-align: center;
}
.top-separador {
  width: 180px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #4f8ef7 0%, #b7aaff 50%, #f7b4c7 100%);
  margin-bottom: 1.2rem;
}

/* Estilos para as novas seções */
.certifications-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(80, 80, 160, 0.07);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
}

.certification-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 500;
  transition: transform 0.2s;
}

.badge:hover {
  transform: translateX(5px);
}

.badge-icon {
  font-size: 1.5rem;
}

.aa-badge {
  background: #ffb30020;
  color: #ffb300;
}

.uipath-badge {
  background: #b7aaff20;
  color: #7e57c2;
}

.python-badge {
  background: #4f8ef720;
  color: #4f8ef7;
}

.counter-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(80, 80, 160, 0.07);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
}

.counters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.counter-item {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7f8fa 0%, #fff 100%);
  box-shadow: 0 2px 12px rgba(80, 80, 160, 0.05);
}

.counter-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4f8ef7;
  margin-bottom: 0.3rem;
}

.counter-label {
  color: #666;
  font-size: 0.95rem;
}

.events-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(80, 80, 160, 0.07);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.event-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7f8fa 0%, #fff 100%);
  box-shadow: 0 2px 12px rgba(80, 80, 160, 0.05);
  transition: transform 0.2s;
}

.event-item:hover {
  transform: translateY(-3px);
}

.event-date {
  background: #4f8ef7;
  color: #fff;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

.event-info h4 {
  margin: 0;
  color: #222;
  font-size: 1rem;
}

.event-info p {
  margin: 0.3rem 0 0 0;
  color: #666;
  font-size: 0.9rem;
}

/* Estilos atualizados para Fun Facts */
.fun-facts-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(80, 80, 160, 0.07);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.fun-facts-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.fact-container {
  position: relative;
  text-align: center;
}

.fact-icon {
  margin: 0 auto 1rem;
  width: 40px;
  height: 40px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.fun-fact {
  font-size: 1.1rem;
  color: #222;
  margin: 1rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f7f8fa 0%, #fff 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(80, 80, 160, 0.05);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.fact-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.prev-fact-btn,
.next-fact-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #4f8ef7;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s;
}

.prev-fact-btn:hover,
.next-fact-btn:hover {
  transform: scale(1.2);
}

.fact-indicator {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.current-fact {
  color: #4f8ef7;
  font-weight: 600;
}

.fact-categories {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.fact-category {
  background: none;
  border: 2px solid #e3e6f0;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.fact-category:hover {
  border-color: #4f8ef7;
  color: #4f8ef7;
}

.fact-category.active {
  background: #4f8ef7;
  border-color: #4f8ef7;
  color: #fff;
}

/* Adicione um efeito de gradiente sutil no fundo */
.fun-facts-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #4f8ef7, #b7aaff, #f7b4c7);
  border-radius: 24px 24px 0 0;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f7b4c7;
  box-shadow: 0 0 0 3px rgba(247, 180, 199, 0.2);
} 