/* =========================
   Base / Reset
========================= */
* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
}

p {
  font-size: 18px;
}

a{ color: inherit; }
img{ max-width: 100%; display: block; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}



/* =========================
   Topbar
========================= */
.topbar{
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar__inner{
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

/* Brand */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand__badge{
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #0ea5e9;
  color: #fff;
  font-size: 12px;
  letter-spacing: .5px;
}

.brand__name{
  font-size: 14px;
}

/* Desktop Menu */
.menu{
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu a{
  text-decoration: none;
  color: #334155;
  font-weight: 700;
  font-size: 13px;
}

.menu a:hover{ color: #111827; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: #0ea5e9;
  color: #fff;
  padding: 11px 18px;
}

.btn--primary:hover{ filter: brightness(.95); }

.btn--light{
  background: rgba(255,255,255,.95);
  color: #1f2937;
  border-color: rgba(255,255,255,.55);
}

.btn--light:hover{ filter: brightness(.97); }

.btn--whatsapp{
  background: #16a34a;
  color: #fff;
}

.btn--whatsapp:hover{ filter: brightness(.95); }

/* =========================
   Hero
========================= */
.hero{
  padding: 56px 0;
  color: #fff;
  background:
    radial-gradient(900px 400px at 15% 20%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(700px 350px at 90% 30%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, #1e40af 0%, #2563eb 55%, #0ea5e9 100%);
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 36px;
  min-height: 360px;
}

/* Content */
.hero__title{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.hero__pills{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.95);
  font-weight: 800;
  font-size: 12px;
}

.hero__text{
  margin: 0 0 18px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.6;
  max-width: 60ch;
}

.hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Media / Avatar */
.hero__media{
  display: flex;
  justify-content: flex-end;
}

.avatar{
  width: min(340px, 100%);
  border-radius: 999px;
  
  box-shadow: 0 18px 40px rgba(15, 23, 42, .22);
  overflow: hidden;
  background: rgba(255,255,255,.10);
}

.avatar img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================
   Mobile Menu (sem JS)
   (se você estiver usando o HTML com checkbox)
========================= */
.nav-toggle{ display: none; }

.nav-btn{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.nav-btn span{
  display: block;
  height: 2px;
  width: 100%;
  background: #0f172a;
  border-radius: 999px;
}


/* ===== Base ===== */
*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #0f172a;
}

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== Section ===== */
.skills-section{
  padding: 70px 0;
  background: #ffffff;
}

.section-head{
  text-align: center;
  margin-bottom: 28px;
}

.section-title{
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.section-underline{
  display: inline-block;
  width: auto;
  height: 4px;
  border-radius: 999px;
  margin-top: 10px;
  background: #3dda2f;
}

/* ===== Grid ===== */
.skills-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

/* ===== Card ===== */
.skill-card{
  border: 1px solid #e6e8ef;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.skill-card:hover{
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.22);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .10);
}

/* layout inside card */
.skill-top{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.skill-title{
  margin: 2px 0 6px;
  font-size: 20px;
  font-weight: 900;
  color: #0b1220;
}

.skill-desc{
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.55;
  color: #475569;
}

/* ===== Icon ===== */
.skill-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.skill-icon svg{
  width: 20px;
  height: 20px;
}

.skill-icon--blue{   background: linear-gradient(135deg, #2563eb, #60a5fa); }
.skill-icon--purple{ background: linear-gradient(135deg, #7c3aed, #c084fc); }
.skill-icon--indigo{ background: linear-gradient(135deg, #4f46e5, #818cf8); }
.skill-icon--green{  background: linear-gradient(135deg, #16a34a, #34d399); }

/* ===== Tags ===== */
.skill-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid transparent;
  white-space: nowrap;
}

.tag--blue{
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.18);
  color: #1d4ed8;
}

.tag--purple{
  background: rgba(124,58,237,.08);
  border-color: rgba(124,58,237,.18);
  color: #6d28d9;
}

.tag--indigo{
  background: rgba(79,70,229,.08);
  border-color: rgba(79,70,229,.18);
  color: #4338ca;
}

.tag--green{
  background: rgba(22,163,74,.10);
  border-color: rgba(22,163,74,.18);
  color: #15803d;
}

/* ===== About Section ===== */
.about{
  padding: 56px 0;
  background: #ffffff;
}

.about-card{
  border-radius: 18px;
  border: 1px solid #eef0f6;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
  padding: 22px;
  font-size: 20px;
}

.about-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.about-titlewrap{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}


.about-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(124,58,237,.10);
  color: #7c3aed;
  flex: 0 0 auto;
}

.about-icon svg{
  width: 20px;
  height: 20px;
}

.about-title{
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #0b1220;
  font-weight: 900;
  text-align: center;
}

.about-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  background: #1172f1;
  color: #fff;
  box-shadow: 0 12px 26px rgba(124,58,237,.22);
  border: 1px solid rgba(124,58,237,.20);
  white-space: nowrap;
}

.about-btn:hover{ filter: brightness(.96); }
.about-btn:active{ transform: translateY(1px); }

.about-btn__icon{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}
.about-btn__icon svg{
  width: 18px;
  height: 18px;
}

.about-body p{
  margin: 0 0 12px;
  color: #334155;
  line-height: 1.7;
  font-size: 18px;
}

.hl{
  font-weight: 900;
  color: #1a17e0;
}
.hl2{
  font-weight: 800;
  color: #0f172a;
}

.about-callout{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(124,58,237,.06);
  border: 1px solid rgba(124,58,237,.14);
  position: relative;
}

.about-callout::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: #05a86a;
}

.about-callout__icon{
  color: #7c3aed;
  margin-top: 2px;
}
.about-callout__icon svg{
  width: 18px;
  height: 18px;
}

.about-callout p{
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.6;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;        /* 🔥 centraliza */
}








/* ===== Responsive ===== */
@media (max-width: 900px){
  .skills-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .container{
    width: min(1120px, calc(100% - 24px));
  }

  .skill-card{
    padding: 16px;
  }

  .skill-top{
    grid-template-columns: 42px 1fr;
  }

  .skill-desc{
    font-size: 12px;
  }
}





/* ===== Responsive ===== */
@media (max-width: 640px){
  .about-card{ padding: 18px; }

  .about-head{
    flex-direction: column;
    align-items: flex-start;
  }

  .about-btn{
    width: 100%;
    justify-content: center;
  }

  .about-title{
    font-size: 22px;
  }
}




/* =========================
   Featured Projects
========================= */
.projects{
  padding: 70px 0;
  background: #ffffff;
}

.projects__head{
  text-align: center;
  margin-bottom: 20px;
}

.projects__title{
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.projects__subtitle{
  margin: 8px auto 0;
  max-width: 70ch;
  font-size: 18px;
  color: #64748b;
  line-height: 1.5;
}

/* Grid */
.projects__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  gap: 28px;
  justify-content: center;   /* centraliza os cards */
}

/* Card */
.project-card{
  border: 1px solid #eef0f6;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  width: 100%;
  max-width: 380px;
}

.project-card:hover{
  transform: translateY(-5px);
  border-color: rgba(37,99,235,.18);
  box-shadow: 0 18px 50px rgba(15,23,42,.10);
}

/* Media */
.project-card__media{
  background: #f8fafc;
  padding: 16px;
  display: grid;
  place-items: center;
  min-height: 150px;
}

.project-card__media img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 14px;
}

/* Body */
.project-card__body{
  padding: 14px 16px 16px;
}

/* Tag pill */
.project-tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid transparent;
  margin-bottom: 10px;
}

.project-tag--blue{
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.18);
  color: #1d4ed8;
}

.project-tag--pink{
  background: rgba(236,72,153,.08);
  border-color: rgba(236,72,153,.18);
  color: #db2777;
}

.project-tag--green{
  background: rgba(22,163,74,.10);
  border-color: rgba(22,163,74,.18);
  color: #15803d;
}

.project-card__title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #0b1220;
  line-height: 1.25;
}


.project-card__desc{
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #475569;
}

.project-card__link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  font-size: 16px;
  color: #2563eb;
  text-decoration: none;
}

.project-card__link:hover{
  text-decoration: underline;
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .projects__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .projects{
    padding: 56px 0;
  }

  .projects__grid{
    grid-template-columns: 1fr;
  }

  .project-card__media img{
    height: 170px;
  }
}

.project-card{
  text-align: center;
}

.project-card__body{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-card__desc{
  text-align: center;
}

.project-card__link{
  justify-content: center;
}


.project-card{
  display: flex;
  flex-direction: column;
}

.project-card__body{
  display: flex;
  flex-direction: column;
  flex: 1; /* ocupa todo o espaço restante */
}

.project-card__link{
  margin-top: auto;      /* chave da solução */
  align-self: center;    /* centraliza horizontalmente */
}



/*CERTIFICATIONS SECTION
/* =========================
   CERTIFICATIONS (GRID + THUMB)
========================= */

.certifications{
  padding: 100px 0;
  background: #f8fafc;
}

.section-head{ text-align: center; margin-bottom: 40px; }

.section-title{
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  color: #0b1220;
}

.section-underline{
  display: inline-block;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: #1172f1;
  margin: 14px auto 0;
}

.section-subtitle{
  max-width: 620px;
  margin: 14px auto 0;
  color: #64748b;
  font-size: 18px;
}

/* Grid */
.cert-grid{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

/* Card */
.cert-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.cert-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
}

/* Thumbnail button */
.cert-thumb{
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0 0 14px;
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.cert-thumb img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: #e2e8f0;
  transition: transform .25s ease, filter .25s ease;
}

/* hover hint overlay */
.cert-thumb__hint{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  background: rgba(15,23,42,.55);
  opacity: 0;
  transition: opacity .2s ease;
}

.cert-thumb:hover img{
  transform: scale(1.03);
  filter: saturate(1.05);
}

.cert-thumb:hover .cert-thumb__hint{
  opacity: 1;
}

/* Title & Issuer */
.cert-title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #0b1220;
  line-height: 1.25;
}

.cert-issuer{
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* =========================
   MODAL (FULLSCREEN)
========================= */

.cert-modal{
  position: fixed;
  inset: 0;
  display: none; /* JS seta flex */
  z-index: 9999;
}

.cert-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.75);
}

/* Fullscreen panel */
.cert-modal__panel{
  position: relative;
  margin: auto;
  width: min(1100px, 92vw);
  max-height: 90vh;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);

  display: flex;
  padding: 14px;
}

/* media area */
.cert-modal__media{
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1220;
  display: grid;
  place-items: center;
}

.cert-modal__media img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* mostra inteiro sem cortar */
  display: block;
}

/* close btn */
.cert-modal__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(15,23,42,.9);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cert-modal__close:hover{
  opacity: .9;
}

@keyframes certPop{
  from{ transform: translateY(8px) scale(.98); opacity: 0; }
  to{ transform: translateY(0) scale(1); opacity: 1; }
}

/* Mobile tweaks */
@media (max-width: 520px){
  .cert-thumb img{ height: 150px; }
  .cert-modal__panel{ height: 84vh; }
}


.cert-title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #0b1220;
  line-height: 1.25;

  /* 🔥 NOVO */
  min-height: 48px;              /* reserva espaço igual */
  display: flex;
  align-items: center;           /* centraliza verticalmente */
}


.tech{ padding: 90px 0; background:#fff; }

.tech-card{
  margin-top: 40px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.tech-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;

  /* 🔥 CENTRALIZAÇÃO */
  justify-content: center;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius:999px;
  background:#f1f5f9;
  color:#0b1220;
  font-weight:700;
  font-size:13px;
  border:1px solid rgba(15,23,42,.08);
}

.tech-proof{
  list-style: none;              /* remove bullet padrão */
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.tech-proof li{
  position: relative;
  padding-left: 0;
  margin-bottom: 8px;
}

.tech-proof li::before{
  content: "•";
  display: inline-block;
  margin-right: 8px;
}







/* =========================================
   MOBILE FIX PACK (cole no FINAL do CSS)
========================================= */

/* tipografia mais consistente */
.hero__text{ font-size: 20px; }
.about-text{
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}

/* evita “texto pequeno demais” */
@media (max-width: 560px){
  .skill-desc{ font-size: 20px !important; }
  .project-card__desc{ font-size: 14px; }
  .project-card__link{ font-size: 14px; }
}

/* ===== MENU MOBILE FUNCIONAR DE VERDADE ===== */
@media (max-width: 860px){

  /* mostra hamburguer */
  .nav-btn{ display: inline-flex; }

  /* esconde menu no topo e vira drawer */
  .menu{
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 20px;
    display: grid;
    gap: 10px;
    transform: translateY(-120%);
    transition: transform .25s ease;
    z-index: 60;
  }

  .menu a{
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* abre quando marcar checkbox */
  .nav-toggle:checked ~ .menu{
    transform: translateY(0);
  }
}

/* ===== HERO MOBILE ===== */
@media (max-width: 860px){
  .hero{ padding: 36px 0; }

  .hero__grid{
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .hero__content{
    text-align: center;
    order: 2;
  }

  .hero__media{
    justify-content: center;
    order: 1;
  }

  .hero__actions{
    justify-content: center;
  }

  .avatar{
    width: min(240px, 75vw);
  }
}

/* ===== ABOUT MOBILE ===== */
@media (max-width: 640px){
  .about{ padding: 40px 0; }
  .about-card{ padding: 18px; }

  /* seu CSS força 14px em .about-body p, vamos corrigir só no mobile */
  .about-body p{
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ===== GRIDS MOBILE (skills / projects / certs) ===== */
@media (max-width: 900px){
  .skills-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 980px){
  .projects__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px){
  .projects__grid{ grid-template-columns: 1fr; }
  .project-card__media img{ height: 180px; }
}

/* cert grid: garante 1 coluna no celular */
@media (max-width: 640px){
  .cert-grid{ grid-template-columns: 1fr; }
  .certifications{ padding: 70px 0; }
}

/* modal do certificado no celular */
@media (max-width: 520px){
  .cert-modal__panel{
    width: 92vw;
    height: 86vh;
    max-height: 86vh;
  }
  .cert-modal__media img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Centralizar pills no hero (mobile e quando hero estiver centralizado) */
@media (max-width: 860px){
  .hero__pills{
    justify-content: center;
  }
}

/* Se você quiser centralizar SEMPRE (desktop também), use este em vez do de cima: */
/*
.hero__pills{
  justify-content: center;
}
*/




@media (max-width: 640px){
  .cert-thumb{
    background: #e2e8f0;     /* fundo neutro pra quando sobrar espaço */
    padding: 10px;          /* dá “respiro” */
    border-radius: 14px;
  }

  .cert-thumb img{
    height: auto;           /* deixa a altura ajustar */
    max-height: 220px;      /* limite pra não ficar gigante */
    object-fit: contain;    /* ✅ não corta */
    width: 100%;
  }
}





.tech{
  padding: 90px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1553cf 100%);
  color: #ffffff;
}

.tech .section-title{
  color: #ffffff;
}

.tech .section-subtitle{
  color: rgb(255, 255, 255);
}

.tech-card{
  margin-top: 40px;
  background: rgb(127 152 237 / 73%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

/* mantém as pills como estão */
.chip{
  background:#f1f5f9;
  color: black
  border:1px solid rgba(15,23,42,.08);
}

/* lista branca */
.tech-proof{
  margin: 0 auto;          /* centraliza o bloco */
  padding-left: 18px;
  max-width: 520px;        /* largura controlada */
  text-align: left;       /* texto à esquerda */
}

.tech-proof li{
  text-align: left;       /* garante alinhamento */
}