* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}
.meu-favicon {
    width: 32px;
    height: 32px;
    border-radius: 50px;
}

.main-container {
    display: flex;
    max-width: 1200px;
    margin: 30px auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}


/* Faixa lateral */
.sidebar {
    background-color: #093079;
    width: 30px;
}

/* Coluna da esquerda */
.left {
    width: 35%;
    background: linear-gradient(to bottom, #ebecf7, #d5d8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
   
}

.perfil {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.profile-section h1 {
    margin: 20px 0 5px;
    color: #093079;
    font-size: 28px;
}

.profile-section p {
    margin: 5px 0;
    color: #555;
}

.contact, .languages, .skills {
    width: 100%;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    background-color: rgba(255, 255, 255, 0.6);
}

.contact-item:hover {
    background-color: white;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item .icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    object-fit: contain;
}


.contact-text {
    flex: 1;
}

.languages, .skills {
    margin-top: 30px;
}

.section-title {
    color: #093079;
    padding-bottom: 8px;
    margin-bottom: 15px;
    border-bottom: 2px solid #093079;
    font-size: 20px;
}

.language-item {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-dots {
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #093079;
    margin-left: 5px;
    opacity: 0.3;
}

.dot.filled {
    opacity: 1;
}

.skills ul {
    list-style-type: none;
    padding-left: 5px;
}

.skills li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.skills li:before {
    content: "•";
    color: #093079;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Metade direita */
.right {
  width: 65%;
  padding: 50px;
  background-color: white;
}
.powerbi-context {
    margin-bottom: 12px;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}
/* títulos das seções */
.section-title {
  color: #093079;
  margin-bottom: 16px;
  font-size: 26px;
  padding-bottom: 8px;
  border-bottom: 2px solid #093079;
}

/* espaçamento entre seções */
.section {
  margin-bottom: 32px;
}

/* listas simples (bolinhas) */
.bullet-list {
  list-style: none;
  padding-left: 0;
}
.bullet-list li {
  margin: 10px 0;
  line-height: 1.6;
}

/* listas com “check”/itens */
.check-list {
  list-style: none;
  padding-left: 0;
}
.check-list li {
  margin: 8px 0;
  line-height: 1.6;
}

/* grid de tecnologias com ícones locais */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 16px 18px;
  align-items: start;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #f6f8ff;
  border: 1px solid #e2e6fb;
  border-radius: 10px;
  padding: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tech-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(9,48,121,0.12);
}
.tech-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.tech-item span {
  font-size: 14px;
  color: #093079;
  font-weight: 600;
  text-align: center;
}

.button {
  background: rgb(54, 54, 117);
  color: rgb(245, 243, 243);
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
}
.button:hover {
  background: rgb(82, 82, 163);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    max-width: 100%;
    margin: 10px;
    box-shadow: none;
    border-radius: 0;
  }
  .sidebar {
    display: none;
  }
  .left, .right {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }
  .perfil {
    width: 120px;
    height: 120px;
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .section-title {
    font-size: 20px;
  }
  .right {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .perfil {
    width: 80px;
    height: 80px;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .main-container {
    margin: 0;
    padding: 0;
  }
}

