@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Orbitron:wght@400;700&family=Poppins:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* =========================
   Globais / Tema
========================= */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  transition: background-color .3s, color .3s;
}

body.light-mode {
  background-color: #f0f0f0;
  color: #333;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px;
}

/* =========================
   Header
========================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(17, 17, 17, .8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background-color .3s;
}

body.light-mode .main-header {
  background-color: rgba(255, 255, 255, .8);
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* Nav */
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: rgba(17, 17, 17, .9);
}

body.light-mode header nav ul {
  background-color: rgba(255, 255, 255, .9);
}

header nav ul.active {
  display: flex;
}

header nav ul li {
  margin: 10px 0;
  text-align: center;
}

header nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.2em;
  transition: color .3s;
}

body.light-mode header nav ul li a {
  color: #333;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #00aaff;
}

.menu-toggle {
  display: block;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #f0f0f0;
  transition: all .3s ease-in-out;
}

body.light-mode .menu-toggle .bar {
  background-color: #333;
}

/* Theme switch */
.theme-switcher {
  cursor: pointer;
}

.theme-switcher .sun-icon {
  display: none;
}

.theme-switcher .moon-icon {
  display: block;
}

body.light-mode .theme-switcher .sun-icon {
  display: block;
}

body.light-mode .theme-switcher .moon-icon {
  display: none;
}

.theme-switcher svg {
  width: 24px;
  height: 24px;
  color: #f0f0f0;
  transition: color .3s;
}

body.light-mode .theme-switcher svg {
  color: #333;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =========================
   Scroll to top
========================= */
#scroll-to-top {
  position: fixed;
  bottom: 70px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 170, 255, .4);
  z-index: 998;
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0;
  visibility: hidden;
  position: relative;
  /* Added for absolute positioning of children */
}

.dashed-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px dashed #00aaff;
  /* Accent color */
  box-sizing: border-box;
}

.follower-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00aaff;
  /* Accent color */
  transition: transform 0.1s ease-out;
  pointer-events: none;
  /* Ensure it doesn't interfere with clicks */
}

#scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

#scroll-to-top:hover {
  transform: scale(1.1) translateY(-5px);
}

/* =========================
   Seções, Títulos
========================= */
section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 100%;
}

section:nth-of-type(odd) {
  background-color: #000;
}

section:nth-of-type(even) {
  background-color: #1a1a1a;
}

body.light-mode section:nth-of-type(odd) {
  background-color: #f0f0f0;
}

body.light-mode section:nth-of-type(even) {
  background-color: #e0e0e0;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

main {
  padding-top: 80px;
}

/* espaço do header fixo */
section h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 8px;
  font-size: 2.5em;
  color: #FFFFFF;
  transition: color .3s;
  /* Adjusted for dark mode */
  font-weight: normal;
  /* Reverted from previous change */
}

body.light-mode section h2 {
  color: #000000;
}

/* Adjusted for light mode */
section h3 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 0;
  margin-top: -15px;
  font-size: 1em;
  color: #CCCCCC;
  transition: color .3s;
  /* Adjusted for dark mode */
  font-weight: normal;
  /* Reverted from previous change */
}

section#sobre p {
  text-align: justify;
}

section#portfolio {
  text-align: center;
}

/* =========================
   Paleta e variáveis
========================= */
:root {
  --accent: #e25a5a;
  /* vermelho dos ícones e links */
  --card-radius: 12px;
  --shadow-light: 0 6px 18px rgba(0, 0, 0, .08);
  --shadow-dark: 0 10px 28px rgba(0, 0, 0, .35);
}

/* =========================
   CARDS de Serviços (trocam com o tema)
========================= */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 12px;
}

/* Dark (padrão) */
.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1f1f1f;
  color: #F0F0F0;
  /* Changed to lighter color for visibility */
  border-radius: var(--card-radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, .06);
}

/* Light */
body.light-mode .service-card {
  background: #fff;
  color: #1f1f1f;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0, 0, 0, .06);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(226, 90, 90, .12);
  position: relative;
  overflow: hidden;
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

/* ÍCONES via SVG embutido (ordem: UI/UX, Front-End, Back-End) */
.services .service-card:nth-child(1) .service-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' rx='2' ry='2' fill='none' stroke='%23e25a5a' stroke-width='2'/><line x1='3' y1='9' x2='21' y2='9' stroke='%23e25a5a' stroke-width='2'/><line x1='9' y1='3' x2='9' y2='21' stroke='%23e25a5a' stroke-width='2'/></svg>");
}

.services .service-card:nth-child(2) .service-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='9 6 4 12 9 18' fill='none' stroke='%23e25a5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><polyline points='15 6 20 12 15 18' fill='none' stroke='%23e25a5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.services .service-card:nth-child(3) .service-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><ellipse cx='12' cy='5' rx='7' ry='3' fill='none' stroke='%23e25a5a' stroke-width='2'/><path d='M5 5v10c0 1.66 3.13 3 7 3s7-1.34 7-3V5' fill='none' stroke='%23e25a5a' stroke-width='2'/><path d='M5 12c0 1.66 3.13 3 7 3s7-1.34 7-3' fill='none' stroke='%23e25a5a' stroke-width='2'/></svg>");
}

.service-title {
  margin: 0 0 10px;
  font-weight: normal;
  line-height: 1.15;
  color: #F0F0F0;
  /* Removed bold font-weight */
  text-align: left;
  /* Align text to the left */
}

body.light-mode .service-title {
  color: #111;
}

.service-link {
  color: #FFFFFF;
  /* Changed to white */
  font-weight: normal;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  text-decoration: underline;
}

body.light-mode .service-link {
  color: #0077B5;
  /* Blue for light mode */
}

/* =========================
   MODAIS dos Serviços (CSS-only :target)
   — cinza claro no tema claro, cinza escuro no tema escuro
========================= */
.smodal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 10000;
}

.smodal:target {
  opacity: 1;
  pointer-events: auto;
}

/* Light (claro) */
.smodal-box {
  width: min(640px, calc(100% - 40px));
  background: #efefef;
  /* CINZA CLARO */
  color: #222;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  padding: 28px 26px 24px;
  position: relative;
}

/* Dark (escuro) */
body:not(.light-mode) .smodal-box {
  background: #2a2a2a;
  color: #f1f1f1;
}

.smodal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 22px;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  color: var(--accent);
  border-radius: 50%;
  transition: transform .15s ease, background .2s ease;
  cursor: pointer;
  /* Added for hand icon */
}

.smodal-close:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, .1);
}

.smodal-title {
  margin: 0 28px 14px 2px;
  font-weight: normal;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  line-height: 1.15;
}

.smodal-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.smodal-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 4px;
}

.smodal-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: normal;
  color: var(--accent);
  margin-top: 3px;
}

/* =========================
   Home
========================= */
.home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.home-text {
  text-align: center;
}

.home-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00aaff;
}

#inicio {
  text-align: center;
  padding: 60px 20px;
}

#inicio h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5em;
  margin: 0;
  color: #fff;
  transition: color .3s;
}

body.light-mode #inicio h1 {
  color: #333;
}

.gradient-text {
  background: linear-gradient(45deg, #3c7d8d, #7bb676, #2d97b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text-blue {
  background: linear-gradient(45deg, #0077B5, #00aaff, #00f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

#inicio p {
  font-size: 1.5em;
  color: #ccc;
  transition: color .3s;
}

body.light-mode #inicio p {
  color: #666;
}

/* =========================
   Projetos
========================= */
.projeto {
  background-color: rgba(44, 44, 44, .8);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s;
  border: 1px solid rgba(255, 255, 255, .1);
}

body.light-mode .projeto {
  background-color: rgba(255, 255, 255, .8);
}

.projeto:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 170, 255, .2);
}

.projeto h3 {
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  color: #00aaff;
  transition: color .3s;
}

body.light-mode .projeto h3 {
  color: #0077B5;
}

/* =========================
   Portfólio (links)
========================= */
.portfolio-links {
  text-align: center;
  margin-top: 30px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  background-color: rgba(44, 44, 44, .8);
  padding: 20px 40px;
  margin: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #f0f0f0;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s, color .3s;
  border: 1px solid rgba(255, 255, 255, .1);
}

body.light-mode .portfolio-link {
  background-color: rgba(255, 255, 255, .8);
  color: #333;
}

.portfolio-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .5);
}

.portfolio-link i {
  font-size: 2.5em;
  margin-right: 15px;
}

.portfolio-link span {
  font-size: 1.2em;
  font-weight: normal;
}

/* =========================
   Habilidades (ícones)
========================= */
.habilidades-logos {
  text-align: center;
}

.habilidades-logos i {
  font-size: 4em;
  margin: 0 10px;
  transition: transform .3s ease;
}

.habilidades-logos i:hover {
  transform: scale(1.2);
}

.habilidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  column-gap: 30px;
  /* Horizontal gap */
  row-gap: 50px;
  /* Increased vertical gap for more space between rows */
  justify-items: center;
  align-items: start;
  margin-top: 30px;
}

.habilidade-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  /* Increased opacity for visibility */
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Added border for definition */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s, border-color 0.3s;
}

.habilidade-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.habilidade-item img {
  width: 60px;
  /* Adjust size as needed */
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.habilidade-item h3 {
  margin: 0;
  font-size: 1em;
  color: #f0f0f0;
  /* Ensure text color is visible */
}

/* Light mode adjustments for new styles */
body.light-mode .habilidade-item {
  background-color: rgba(0, 0, 0, 0.1);
  /* Increased opacity for visibility */
  border: 1px solid rgba(0, 0, 0, 0.2);
  /* Added border for definition */
}

body.light-mode .habilidade-item h3 {
  color: #333;
}

/* =========================
   Contato
========================= */
#contato {
  padding: 60px 20px;
  max-width: 800px;
  margin: 40px auto;
}

#contato h2 {
  text-align: center;
}

.contact-text {
  text-align: justify;
}

#contato .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-contato {
  background-color: #e9eef0;
  color: #1a1a1a;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: normal;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
  font-size: 1.1em;
}

.btn-contato:hover {
  background-color: #0f0f0f0a;
  transform: scale(1.05);
}

/* =========================
   Skills Boxes
========================= */
.skills-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  /* Space between boxes */
  margin-top: 40px;
  /* Space below the text */
}

.skill-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align the h3 and skill-box to the left */
}

.skill-category h3 {
  margin-bottom: 0px;
  /* Reduce space between title and box */
  font-size: 1.8em;
  color: #f0f0f0;
  /* Light text for dark mode */
  position: relative;
  /* For positioning the pseudo-element */
  padding-bottom: 0px;
  /* Space for the line, reduced */
}

.skill-category h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  /* Move closer to the text */
  width: 115%;
  /* Make it slightly wider than the text */
  height: 1px;
  /* Thin line */
  background-color: #FFFFFF;
  /* White for dark theme */
}

body.light-mode .skill-category h3 {
  color: #333333;
}

body.light-mode .skill-category h3::after {
  background-color: #000000;
  /* Black for light theme */
}

.skill-box {
  width: 100%;
  /* Fixed width */
  height: auto;
  min-height: 450px;
  /* Fixed height to make it square */
  background-color: #1f1f1f;
  /* Dark background for dark mode */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  /* Add some padding inside the box */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s ease;
  display: flex;
  /* Use flexbox to center content inside the box */
  justify-content: center;
  align-items: center;
  text-align: center;
}

.skill-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  /* Align text to the left within the box */
  font-size: 1.0em;
  line-height: 1.6;
  color: #f0f0f0;
  /* Light text for dark mode */
  column-count: 1;
  /* Create two columns */
  column-gap: 20px;
  /* Space between columns */
}

body.light-mode .skill-box ul {
  color: #333333;
}

/* Specific font size for Hard Skills */
.skill-category:nth-child(2) .skill-box ul {
  font-size: 1.1em;
  /* Increased font size for Hard Skills */
}

.skill-box ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  /* Align items to the top for multi-line text */
}

.skill-box ul li .checkmark-icon {
  margin-right: 8px;
  /* Space between icon and text */
  flex-shrink: 0;
  /* Prevent icon from shrinking */
  margin-top: 3px;
  /* Adjust vertical alignment */
}

.skill-box ul li i {
  font-size: 1.2em;
  /* Adjust icon size */
  margin-right: 8px;
  /* Space between icon and text */
  flex-shrink: 0;
  /* Prevent icon from shrinking */
}

.skill-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Light mode adjustments */
body.light-mode .skill-box {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* =========================
   Modal de Contato (JS)
========================= */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1001; /* Sit on top, higher than header */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
  padding-top: 60px;
}

#contactModal .modal-content {
  background-color: #1c1c1c;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  width: 90%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 170, 255, .15);
  transition: background-color .3s, border-color .3s;
}

body.light-mode #contactModal .modal-content {
  background-color: #f9f9f9;
  border-color: rgba(0, 0, 0, .1);
}

.closeBtn {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: normal;
  transition: color .3s;
}

body.light-mode .closeBtn {
  color: #888;
}

.closeBtn:hover,
.closeBtn:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

body.light-mode .closeBtn:hover,
body.light-mode .closeBtn:focus {
  color: #333;
}

/* Formulário */
#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #555;
  background-color: #222;
  color: #f0f0f0;
  border-radius: 5px;
  box-sizing: border-box;
  transition: background-color .3s, color .3s, border-color .3s;
}

body.light-mode #contactForm input,
body.light-mode #contactForm select,
body.light-mode #contactForm textarea {
  background-color: #fff;
  color: #333;
  border-color: #ccc;
}

#contactForm button {
  width: 100%;
}

/* =========================
   Rodapé e Chat
========================= */
footer {
  background-color: transparent;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  color: #888;
  transition: color .3s;
}

body.light-mode footer {
  color: #666;
}

#chat-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: rgba(0, 170, 255, .7);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 170, 255, .4);
  z-index: 999;
  transition: transform .3s ease, background-color .3s;
}

body.light-mode #chat-icon {
  background-color: rgba(0, 123, 255, .8);
}

#chat-icon:hover {
  transform: scale(1.1);
}

/* =========================
   Caixas genéricas (se usar)
========================= */
.service-box {
  background-color: rgba(44, 44, 44, .8);
  padding: 30px;
  margin: 50px auto;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 170, 255, .2);
  transition: transform .3s ease, box-shadow .3s ease;
}

body.light-mode .service-box {
  background-color: rgba(255, 255, 255, .8);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 170, 255, .3);
}

.service-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
  color: #00aaff;
  margin-bottom: 20px;
}

body.light-mode .service-box h3 {
  color: #0077B5;
}

/* utilidades de lista com check (reaproveitáveis) */
#uiUxModal .modal-content {
  max-width: 600px;
  padding: 40px;
}

#uiUxModal h2 {
  font-family: 'Poppins', sans-serif;
  color: #00aaff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2em;
}

body.light-mode #uiUxModal h2 {
  color: #0077B5;
}

#uiUxModal ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.checkmark-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.4;
  color: #f0f0f0;
}

body.light-mode .checkmark-item {
  color: #333;
}

.checkmark-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .5);
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}

.checkmark-icon::before {
  content: "✓";
  color: #FFFFFF;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.light-mode .checkmark-icon {
  background-color: rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .2);
}

body.light-mode .checkmark-icon::before {
  color: #000000;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4CAF50;
  /* Green color */
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #4CAF50;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4CAF50;
  /* Green color */
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #FFFFFF;
  /* White color for the checkmark */
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4CAF50;
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale(1.1);
  }
}

/* =========================
   Media Queries
========================= */

@media (min-width: 768px) {
  header nav ul {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    background-color: transparent;
  }

  header nav ul li {
    margin: 0 15px;
  }

  .menu-toggle {
    display: none;
  }

  .home-content {
    flex-direction: row;
  }

  .skills-container {
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
  }

  .skill-box {
    width: 550px;
  }

  .skill-box ul {
    column-count: 2;
  }

  #contato {
    /* padding: 60px 300px; */
  }

  .modal-content {
    width: 500px;
  }
}

.mobile-break {
  display: none;
}

@media (max-width: 767px) {
  section#sobre p {
    text-align: left;
    letter-spacing: normal;
    word-spacing: normal;
  }

  .mobile-break {
    display: inline;
  }
}