@charset "UTF-8";
/*
0 - 600px:          Phone
600px - 900px       Table Portrait
900px - 1200px      Table Landscape
[1200px - 1800px]   Desktop Normal Styles
1800px +            Big Desktop
1em = 16px
ORDER: Base + Typography > Generar Layout + Grid > Page Layout > Components
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  text-align: center;
  line-height: 1.5;
}

h1 {
  font-weight: 700;
}

p,
a {
  font-size: 1.6rem;
}

a {
  text-decoration: none;
}

a:hover {
  transition: all 0.3s ease-in-out;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  margin-top: 0.4rem;
  margin-left: auto;
  margin-right: auto;
}

.dark-blue-color {
  color: #272341;
}

.text-color-main {
  margin-left: 1rem;
  color: #5b86e5;
  -webkit-text-fill-color: #5b86e5;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .text-color-main {
    background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}
@media (max-width: 37.5em) {
  .text-color-main {
    margin: 0;
    background-image: none;
    -webkit-text-fill-color: #5b86e5;
    box-shadow: none;
  }
}

/* ---------- Polish: typography ---------- */
html {
  scroll-behavior: smooth;
}

body {
  background: #f8fafc; /* leve cinza azulado */
  color: #1e293b;
}

p {
  color: #334155;
  line-height: 1.75;
  font-size: 1rem;
}

/* Títulos de secção com sublinhado gradiente */
.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  margin: 0.4rem auto 0;
}

/* Subtítulo opcional por baixo do h2 */
.section-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
  text-align: center;
}

/* Call to Action Button*/
.cta-btn {
  display: inline-block;
  position: relative;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  line-height: 1;
  z-index: 1;
  overflow: hidden;
  border-radius: 3px;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}
.cta-btn:hover {
  box-shadow: 1.5px 1.5px 3px rgba(174, 174, 192, 0.4), -1px -1px 3px #ffffff;
}
@media (max-width: 37.5em) {
  .cta-btn:hover {
    box-shadow: none;
  }
}
.cta-btn::after {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  width: 0px;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}
@media (max-width: 37.5em) {
  .cta-btn::after {
    width: 0;
    height: 0;
    background-image: none;
  }
}

/* Hero Style */
.cta-btn--hero {
  color: #5b86e5;
  -webkit-text-fill-color: #5b86e5;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .cta-btn--hero {
    background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}
.cta-btn--hero {
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  border-image-slice: 1;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .cta-btn--hero {
    color: #5b86e5;
  }
  .cta-btn--hero:hover {
    color: #ffffff;
  }
}
@media (max-width: 37.5em) {
  .cta-btn--hero {
    background-image: none;
    border: 2px solid #5b86e5;
    box-shadow: none;
    -webkit-text-fill-color: #5b86e5;
  }
}
.cta-btn--hero::after {
  height: 410%;
  width: 150%;
  transform: translate(-98%, -25%) rotate(45deg);
}
.cta-btn--hero:hover {
  -webkit-text-fill-color: #ffffff;
  text-decoration: none;
}
@media (max-width: 37.5em) {
  .cta-btn--hero:hover {
    -webkit-text-fill-color: #5b86e5;
  }
}
.cta-btn--hero:hover::after {
  transform: translate(-9%, -25%) rotate(45deg);
}

/* Resume Style */
.cta-btn--resume {
  border-radius: 0;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.cta-btn--resume::after {
  background: #ffffff;
}
.cta-btn--resume:hover {
  color: #5b86e5;
  text-decoration: none;
  box-shadow: none;
}
@media (max-width: 37.5em) {
  .cta-btn--resume:hover {
    color: #ffffff;
  }
}
.cta-btn--resume:hover::after {
  width: 100%;
}

/* Project Style*/
.cta-btn--projects {
  box-shadow: inset 1px 1px 2px 2px rgba(174, 174, 192, 0.15), inset -2px -2px 2px rgba(255, 255, 255, 0.7);
  border: 2px solid transparent;
}
@media (max-width: 37.5em) {
  .cta-btn--projects {
    border: none;
    box-shadow: 1.5px 1.5px 3px rgba(174, 174, 192, 0.4), -1px -1px 3px #ffffff;
  }
}
.cta-btn--projects::after {
  height: 250%;
  width: 130%;
}
.cta-btn--projects::after {
  transform: translate(-98%, -30%) rotate(45deg);
}
.cta-btn--projects:hover {
  box-shadow: 1.5px 1.5px 3px rgba(174, 174, 192, 0.4), -1px -1px 3px #ffffff;
}
.cta-btn--projects:hover::after {
  transform: translate(-12%, -30%) rotate(45deg);
}

.footer {
  background-color: #333333;
  padding: 4.8rem 0;
}
.footer__text {
  font-size: 1.3rem;
  color: rgb(178.5, 178.5, 178.5);
}
.footer__text a {
  font-size: 1.3rem;
  color: rgb(191.25, 191.25, 191.25);
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.footer__text a:hover, .footer__text a:active {
  color: #36d1dc;
}
.footer hr {
  margin: 1rem auto;
  border: 0;
  width: 50%;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  justify-content: center;
}
.social-links a {
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  width: 5rem;
  height: 5rem;
  margin: 1.6rem 1.6rem;
  transition: all ease 0.2s;
}
.social-links a i {
  transition: all ease-in-out 0.2s;
}
.social-links a:hover {
  transform: scale(1.1) translateY(-2px);
}
.social-links a:hover .fa-twitter {
  color: #00acee;
}
.social-links a:hover .fa-instagram {
  color: #c13584;
}
.social-links a:hover .fa-linkedin {
  color: #4875b4;
}
.social-links a:hover .fa-codepen {
  color: #212121;
}

.back-to-top i {
  color: #ffffff;
  margin: 1rem 0 1.6rem;
  transition: all 200ms ease;
}
.back-to-top i:hover {
  transform: translateY(-2px);
}

section {
  padding: 5rem 0rem;
}
@media (max-width: 37.5em) {
  section {
    border: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
section .row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr;
}
@media (max-width: 56.25em) {
  section .row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
section .row {
  padding: 0 1.5rem;
}
@media (max-width: 37.5em) {
  section .row {
    padding: 0;
  }
}
section .row p + p {
  margin-top: 1rem;
}
section .row span {
  margin-top: 2rem;
}

.container {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
  max-width: 1140px;
}
@media (max-width: 75em) {
  .container {
    max-width: 960px;
    width: 100%;
  }
}
@media (max-width: 56.25em) {
  .container {
    max-width: 720px;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 48em) {
  .container {
    max-width: 720px;
    width: 100%;
  }
}
@media (max-width: 37.5em) {
  .container {
    max-width: 540px;
    width: 100%;
  }
}

/* ---------- Polish: about image ---------- */
.about-wrapper__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1; /* sempre quadrada */
  border-radius: 50%; /* redonda; trocar para 16px se preferires quadrado */
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

@media (max-width: 768px) {
  .profile-img {
    max-width: 260px;
    margin-bottom: 1.5rem;
  }
}
/* ================= HERO (mantendo as medidas originais) ================= */
#hero {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  min-height: 100vh; /* mantém */
  height: 100vh; /* mantém */
  display: flex;
  align-items: center;
  color: #272341;
  padding: 0 5.6rem; /* mantém */
  text-align: left; /* como no layout original */
}
@media (max-width: 56.25em) {
  #hero {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 37.5em) {
  #hero {
    padding: 0 1.6rem;
  }
}

.hero-title {
  font-size: 3rem; /* mantém */
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3; /* mantém */
  max-width: 800px; /* mantém */
  margin: 0 auto;
}
.hero-title span {
  margin: 0;
  display: inline-block;
}
@media (max-width: 75em) {
  .hero-title {
    font-size: 4rem;
  }
}
.hero-title { /* mantém */ }
@media (max-width: 56.25em) {
  .hero-title {
    font-size: 3.6rem;
    text-align: center;
  }
}
.hero-title { /* mantém */ }
@media (max-width: 37.5em) {
  .hero-title {
    font-size: 3.5rem;
    line-height: 1.5;
  }
}
.hero-title { /* mantém */ }
@media (max-width: 20em) {
  .hero-title {
    font-size: 2.8rem;
  }
}
.hero-title { /* mantém */ }

/* nome com gradiente no título (mantém) */
.text-color-main {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* container do botão – mantém proporções e gap */
#hero .hero-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.2rem; /* mantém */
}

/* Botão da hero = igual ao "Email me" e SEM texto transparente */
#hero .hero-cta .cta-btn--resume {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  border: none;
  padding: 14px 28px; /* mantém look do email me */
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  /* força texto visível; desativa qualquer clip-text herdado */
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  box-shadow: 0 10px 28px rgba(2, 8, 20, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#hero .hero-cta .cta-btn--resume:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(2, 8, 20, 0.22);
}

/* (Opcional) seta de scroll se usares */
.scroll-down-link {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.scroll-down {
  height: 50px;
  width: 30px;
  border: 2px solid #000;
  border-radius: 50px;
  cursor: pointer;
}
.scroll-down::before, .scroll-down::after {
  height: 10px;
  width: 10px;
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  border: 2px solid #5b86e5;
  transform: translate(-50%, -100%) rotate(45deg);
  border-top: none;
  border-left: none;
  animation: scroll-down 1s ease-in-out infinite;
}
.scroll-down::after {
  top: 30%;
  animation-delay: 0.3s;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 90%;
  }
}
#about {
  background-color: #36d1dc;
  background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  color: #ffffff;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  padding-bottom: 10%;
}
@media (max-width: 75em) {
  #about {
    height: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }
}
#about .about-wrapper {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 37.5em) {
  #about .about-wrapper {
    padding-bottom: 5rem;
    grid-template-columns: 1fr;
  }
}
#about .about-wrapper__image {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 75em) {
  #about .about-wrapper__image {
    height: 100%;
  }
}
@media (max-width: 48em) {
  #about .about-wrapper__image {
    padding-bottom: 4rem;
  }
}
#about .about-wrapper__info {
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 48em) {
  #about .about-wrapper__info {
    align-items: center;
    text-align: center;
  }
}
#about {
  /* === Vertical Portrait (Glass/Reflex) === */
}
#about .about-wrapper__image.portrait {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* moldura e “glass” */
  padding: 6px;
  border-radius: 22px;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px) saturate(150%);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  z-index: 1; /* garante que fica acima do fundo com clip-path */
}
#about .about-wrapper__image.portrait .profile-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover; /* enche sem distorcer */
  object-position: 50% 35%; /* sobe ligeiro o enquadramento do rosto */
  border-radius: 18px;
  filter: brightness(0.96) contrast(1.05);
  transition: transform 0.6s ease, filter 0.5s ease;
}
#about .about-wrapper__image.portrait:hover .profile-portrait {
  transform: scale(1.06);
  filter: brightness(1.06) contrast(1.07);
}
#about .about-wrapper__image.portrait {
  /* reflexo de luz */
}
#about .about-wrapper__image.portrait::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  pointer-events: none;
}
#about .about-wrapper__image.portrait:hover::after {
  left: 110%;
}
@media (max-width: 48em) {
  #about .about-wrapper__image.portrait {
    max-width: 260px;
    margin-bottom: 1.5rem;
  }
}
#about .about-wrapper__info-text {
  font-size: 1.8rem; /* leve aumento */
  line-height: 1.8;
  letter-spacing: 0.2px;
}
@media (max-width: 768px) {
  #about .about-wrapper__info-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.skills {
  background: #f8fafc;
  padding: 6rem 0;
}
.skills .section-title {
  margin-bottom: 2.5rem;
}
.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.skills .skills-grid .skill-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
  transition: 0.25s ease;
}
.skills .skills-grid .skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.12);
}
.skills .skills-grid .skill-card__icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: #36d1dc;
}
.skills .skills-grid .skill-card__title {
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 6px;
}
.skills .skills-grid .skill-card__desc {
  color: #475569;
  margin: 0 0 12px;
}
.skills .skills-grid .skill-card .skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.skills .skills-grid .skill-card .skill-chips li {
  padding: 6px 10px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
@media (max-width: 1024px) {
  .skills .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .skills .skills-grid {
    grid-template-columns: 1fr;
  }
  .skills {
    padding: 4rem 0;
  }
}

/* ---------- Polish: skill cards ---------- */
.skills {
  background: #ffffff;
}

.skills-grid {
  gap: 18px;
}

.skill-card {
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 24px rgba(2, 8, 20, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.skill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(2, 8, 20, 0.08);
}

.highlights {
  padding: 4.5rem 0;
  background: #fff;
}
.highlights .section-title {
  margin-bottom: 2rem;
}
.highlights .highlights-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
.highlights .highlight-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid #36d1dc;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
  transition: 0.25s ease;
}
.highlights .highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.1);
}
.highlights .highlight-card__icon {
  font-size: 22px;
  color: #36d1dc;
  margin-bottom: 8px;
}
.highlights .highlight-card__title {
  font-weight: 800;
  margin: 0 0 6px;
  font-size: 18px;
}
.highlights .highlight-card__desc {
  color: #475569;
  margin: 0;
}
@media (max-width: 1024px) {
  .highlights .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .highlights .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Polish: highlight cards ---------- */
.highlights {
  background: #f8fafc;
}

.highlights-grid {
  gap: 18px;
}

.highlight-card {
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 24px rgba(2, 8, 20, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(2, 8, 20, 0.08);
}

/* ---------- Projects (text-only, polished) ---------- */
#projects {
  background: #f7f9fc;
  padding: 5.5rem 0;
}
#projects .section-title {
  margin-bottom: 0.25rem;
}
#projects .section-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
  text-align: center;
}
#projects .project-wrapper .project-block {
  position: relative;
  max-width: 980px;
  margin: 0 auto 1.6rem;
  padding: 2rem 2.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 28px rgba(2, 8, 20, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
}
#projects .project-wrapper .project-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 8, 20, 0.09);
  border-color: rgba(99, 102, 241, 0.25);
}
#projects .project-title {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  color: #0f172a;
  margin: 0 0 0.65rem;
}
#projects .project-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.45rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}
#projects .project-desc {
  color: #374151;
  line-height: 1.7;
  font-size: 0.98rem;
  margin: 0;
}
#projects .project-tags {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
#projects .project-tags li {
  padding: 7px 12px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.76rem;
  color: #0f172a;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.18);
  backdrop-filter: saturate(140%) blur(2px);
}
#projects .project-links a {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#projects .project-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(99, 102, 241, 0.28);
}
#projects .project-links a:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  #projects {
    padding: 4rem 0;
  }
  #projects .project-wrapper .project-block {
    padding: 1.5rem 1.3rem;
  }
  #projects .project-title::after {
    width: 48px;
  }
  #projects .project-tags {
    justify-content: center;
  }
  #projects .project-links a {
    width: 100%;
    text-align: center;
  }
}

#contact {
  background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  -webkit-clip-path: polygon(0 15vh, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 15vh, 100% 0, 100% 100%, 0 100%);
  padding: 15rem 0 10rem 0;
  margin-top: -15rem;
  margin-bottom: -1px;
  color: #ffffff;
}
@media (max-width: 75em) {
  #contact {
    padding: 10rem 0;
    margin-top: 0;
    -webkit-clip-path: none;
    clip-path: none;
  }
}
#contact .contact-wrapper {
  margin-top: 3.2rem;
  padding: 0 2rem;
  backface-visibility: hidden;
}
#contact .contact-wrapper__text {
  margin-bottom: 2.5rem;
}
#contact .contact-wrapper__text,
#contact .contact-wrapper a {
  font-size: 2.4rem;
}
@media (max-width: 37.5em) {
  #contact .contact-wrapper__text,
  #contact .contact-wrapper a {
    font-size: 2rem;
  }
}

/* ---------- Polish: contact ---------- */
#contact {
  background: #ffffff;
}

#contact .cta-btn--resume {
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  box-shadow: 0 10px 24px rgba(2, 8, 20, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#contact .cta-btn--resume:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(2, 8, 20, 0.2);
}

/*# sourceMappingURL=main.css.map */
