/* ========== CSS VARIABLES ========== */
    :root {
      --off-white: #f8f9f5;
      --green-primary: #4CAF50;
      --green-hover: #45a049;
      --green-light: rgba(76, 175, 80, 0.12);
      --green-glow: rgba(76, 175, 80, 0.25);
      --text-dark: #1a1a1a;
      --text-muted: #5c5c5c;
      --white: #ffffff;
      --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
      --shadow-hover: 0 8px 32px rgba(76, 175, 80, 0.15);
    }
    
    /* ========== BASE & RESET ========== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
      min-width: 320px;
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: 
        linear-gradient(rgba(76,175,80,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76,175,80,.03) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      z-index: 0;
    }
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: .02;
      pointer-events: none;
      z-index: 0;
    }
    
    /* ========== TYPOGRAPHY ========== */
    h1, h2, h3, h4, .headline {
      font-family: 'Poppins', sans-serif;
    }
    
    /* ========== NAVBAR ========== */
    .navbar-custom {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-soft);
      padding: 0.75rem 0;
      transition: all 0.3s ease;
    }
    
    .navbar-custom.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid rgba(76, 175, 80, 0.15);
    }
    
    .navbar-brand {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--text-dark) !important;
    }
    .navbar-brand-name{font-family:'Amatic SC',cursive!important;font-size:2rem;font-weight:700;color:var(--text-dark)!important;letter-spacing:.03em}
    .nav-link {
      font-weight: 500;
      color: var(--text-muted) !important;
      padding: 0.5rem 1rem !important;
      transition: color 0.25s ease;
    }
    
    .nav-link:hover, .nav-link:focus {
      color: var(--green-primary) !important;
    }
    
    .navbar-toggler {
      border: none;
      padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
      box-shadow: 0 0 0 2px var(--green-light);
    }
    
    /* ========== HERO SECTION ========== */
    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      padding: 6rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero .container { position: relative; z-index: 1; }
    .hero-tech-bg{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:0}
    .hero-tech-bg span{position:absolute;font-family:monospace;font-size:clamp(.75rem,1.5vw,1rem);color:rgba(76,175,80,.08);user-select:none;white-space:nowrap}
    .hero-tech-bg span:nth-child(1){top:15%;right:15%;animation:techFloat 12s ease-in-out infinite}
    .hero-tech-bg span:nth-child(2){top:40%;right:25%;animation:techFloat 15s ease-in-out infinite 2s}
    .hero-tech-bg span:nth-child(3){top:65%;right:10%;animation:techFloat 10s ease-in-out infinite 1s}
    .hero-tech-bg span:nth-child(4){top:25%;right:5%;animation:techFloat 14s ease-in-out infinite 3s}
    .hero-tech-bg span:nth-child(5){top:75%;right:30%;animation:techFloat 11s ease-in-out infinite 0.5s}
    @keyframes techFloat{0%,100%{transform:translateY(0) rotate(0deg);opacity:.5}50%{transform:translateY(-15px) rotate(3deg);opacity:.9}}
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 45%;
      height: 100%;
      background: linear-gradient(135deg, var(--green-light) 0%, rgba(76,175,80,.04) 40%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: 20%;
      right: 10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      animation: heroGlow 8s ease-in-out infinite;
    }
    @keyframes heroGlow {
      0%, 100% { opacity: .5; transform: scale(1); }
      50% { opacity: .8; transform: scale(1.1); }
    }
    
    /* Poça d'água - foto perfil */
    .puddle-wrap{position:relative;z-index:1;padding:1rem 2rem;display:flex;flex-direction:column;align-items:center;gap:.75rem}
    .hero-badge--photo{margin-bottom:0}
    .signature-name{font-family:'Amatic SC',cursive;font-size:clamp(1.8rem,4vw,2.5rem);font-weight:700;color:var(--text-dark);margin:0;line-height:1;letter-spacing:.03em}
    .typing-name{display:inline-flex;align-items:center}
    .typing-name.is-typing::after{
      content:'';
      width:2px;
      height:1em;
      margin-left:4px;
      background:currentColor;
      animation:typingCaret .8s steps(1,end) infinite;
    }
    @keyframes typingCaret{0%,49%{opacity:1}50%,100%{opacity:0}}
    @media(max-width:991px){.puddle-wrap .puddle{width:min(260px,75vw)}}
    .puddle{
      position:relative;
      width:min(320px,90vw);
      aspect-ratio:1;
      border-radius:60% 40% 50% 50% / 50% 60% 40% 50%;
      box-shadow:0 0 0 8px rgba(76,175,80,.15),
        inset 0 0 40px rgba(76,175,80,.08),
        0 25px 50px rgba(0,0,0,.12);
      overflow:hidden;
      animation:puddleShape 8s ease-in-out infinite;
    }
    .puddle-photo{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .puddle-surface{
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,
        rgba(255,255,255,.3) 0%,
        transparent 35%,
        rgba(76,175,80,.08) 50%,
        transparent 65%,
        rgba(255,255,255,.2) 100%);
      pointer-events:none;
    }
    @keyframes puddleShape{
      0%,100%{border-radius:60% 40% 50% 50% / 50% 60% 40% 50%}
      25%{border-radius:50% 60% 40% 50% / 60% 40% 50% 50%}
      50%{border-radius:40% 50% 60% 50% / 50% 50% 60% 40%}
      75%{border-radius:50% 40% 50% 60% / 40% 60% 50% 50%}
    }
    
    .hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:linear-gradient(135deg,var(--green-primary),#66BB6A);color:#fff!important;padding:.5rem 1.25rem;border-radius:50px;font-size:.95rem;font-weight:300;margin-bottom:1.5rem;border:none;box-shadow:0 4px 20px rgba(76,175,80,.4);font-family:'Poppins',sans-serif;letter-spacing:.03em}
    .hero h1{font-size:clamp(2.25rem,5vw,3.5rem);font-weight:800;line-height:1.2;margin-bottom:1.25rem}
    .hero h1 span{color:var(--green-primary)}
    .hero-subheadline{font-size:1.15rem;color:var(--text-muted);max-width:520px;margin-bottom:2rem}
    .hero-cta{}
    
    /* CTA Buttons */
    .btn-cta-primary {
      background: var(--green-primary);
      color: white !important;
      font-weight: 600;
      padding: 0.875rem 2rem;
      border-radius: 12px;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
    }
    
    .btn-cta-primary:hover {
      background: var(--green-hover);
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover), 0 0 24px var(--green-glow);
    }
    
    .btn-cta-secondary {
      background: transparent;
      color: var(--text-dark) !important;
      font-weight: 600;
      padding: 0.875rem 2rem;
      border: 2px solid var(--green-primary);
      border-radius: 12px;
      transition: all 0.3s ease;
    }
    
    .btn-cta-secondary:hover {
      background: var(--green-light);
      color: var(--green-primary) !important;
      transform: translateY(-2px);
    }
    
    /* ========== SOCIAL PROOF ========== */
    .social-proof {
      padding: 3rem 0;
      background: var(--white);
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(76,175,80,.06);
      position: relative;
    }
    .social-proof::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
    }
    
    /* About + Certificados unificado */
    .about-unified-grid{
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
      gap:1rem;
      align-items:stretch;
    }
    .about-me {
      padding: 3rem 2.5rem;
      background: var(--white);
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(76,175,80,.06);
      position: relative;
      transition: all .4s ease;
    }
    .about-me::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
      opacity: 0;
      transition: opacity .4s ease;
    }
    .about-me:hover {
      box-shadow: var(--shadow-hover);
      border-color: var(--green-light);
    }
    .about-me:hover::before { opacity: 1; }
    .about-unified-main{height:100%}
    .about-copy{
      max-width:none;
      margin:0;
      display:grid;
      gap:.9rem;
    }
    .about-me-text {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 0;
      text-align: left;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-top: 0;
      padding: 0;
      position: relative;
    }
    .about-me-text--lead{
      font-size:1.04rem;
      line-height:1.78;
      color:#474747;
      border-left:3px solid rgba(76,175,80,.38);
      padding-left:.85rem;
    }
    .about-highlights{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:.8rem;
      max-width:none;
      margin:0 0 1rem;
      justify-items:center;
    }
    .about-highlight{
      width:100%;
      min-height:126px;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(76,175,80,.18);
      border-radius:14px;
      padding:.95rem .9rem;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:flex-start;
      gap:.35rem;
      text-align:center;
      box-shadow:0 6px 18px rgba(0,0,0,.04);
      transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
    }
    .about-highlight i{
      font-size:1.2rem;
      color:var(--green-primary);
      line-height:1;
      margin-bottom:.1rem;
    }
    .about-highlight strong{
      font-family:'Poppins',sans-serif;
      font-size:.92rem;
      font-weight:700;
      color:var(--text-dark);
      line-height:1.2;
    }
    .about-highlight span{
      font-size:.8rem;
      color:var(--text-muted);
      line-height:1.35;
    }
    .about-highlight:hover{
      transform:translateY(-3px);
      border-color:rgba(76,175,80,.34);
      box-shadow:0 10px 22px rgba(76,175,80,.12);
    }
    .about-certs-panel{
      background: linear-gradient(150deg, #ffffff, #f6faf5);
      border: 1px solid rgba(76,175,80,.16);
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
      padding: 1.25rem;
      position: relative;
      overflow: hidden;
    }
    .about-certs-panel::before{
      content:'';
      position:absolute;
      inset:0;
      background: radial-gradient(circle at 100% 0%, rgba(76,175,80,.12), transparent 45%);
      pointer-events:none;
    }
    .about-certs-title{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      gap:.5rem;
      font-family:'Poppins',sans-serif;
      font-size:1.05rem;
      margin:0 0 1rem;
      color:var(--text-dark);
    }
    .about-certs-title i{color:var(--green-primary)}
    .about-certs-list{
      position:relative;
      z-index:1;
      display:grid;
      gap:.75rem;
    }
    .certificate-card--compact{
      padding:1.1rem 1rem;
      border-radius:12px;
      box-shadow:0 4px 16px rgba(0,0,0,.04);
    }
    .certificate-card--compact .certificate-icon{
      width:40px;
      height:40px;
      font-size:1.05rem;
      margin-bottom:.75rem;
    }
    .certificate-card--compact h3{font-size:1rem;margin-bottom:.2rem}
    .certificate-card--compact .certificate-org{font-size:.83rem;margin-bottom:.45rem}
    .certificate-card--compact .certificate-desc{font-size:.84rem;line-height:1.45;margin-bottom:.65rem}
    .certificate-card--compact .certificate-date{font-size:.75rem}

    .about-allinone{
      background: linear-gradient(155deg, #ffffff, #f6faf5);
      border: 1px solid rgba(76,175,80,.16);
      border-radius: 20px;
      box-shadow: var(--shadow-soft);
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
    }
    .about-allinone::before{
      content:'';
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 0% 0%, rgba(76,175,80,.13), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(76,175,80,.10), transparent 40%);
      pointer-events:none;
    }
    .about-allinone-top,
    .about-allinone-certs{
      position:relative;
      z-index:1;
    }
    .about-allinone-top{
      max-width:none;
      margin:0;
    }
    .about-allinone-top .about-me-text:first-of-type{
      margin-top: 1.1rem;
    }
    .about-allinone-divider{
      height:1px;
      margin:1.1rem 0 1rem;
      background:linear-gradient(90deg, transparent, rgba(76,175,80,.35), transparent);
      position:relative;
      z-index:1;
    }
    .about-certs-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:.75rem;
    }
    .about-certs-grid .certificate-card{
      height:100%;
    }
    
    .social-proof p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
    
    .client-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    
    .client-logo-img{height:40px;width:auto;max-width:120px;object-fit:contain;opacity:.8;transition:opacity .3s ease;filter:grayscale(30%)}
    .client-logo-img:hover{opacity:1;filter:grayscale(0%)}
    
    /* ========== SECTION TITLES ========== */
    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.85rem, 4vw, 2.75rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.25;
      margin-bottom: 3.5rem;
      position: relative;
      padding-bottom: 1rem;
      color: var(--text-dark);
    }
    .section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--green-primary), #66BB6A, transparent);
      border-radius: 2px;
      box-shadow: 0 0 12px var(--green-glow);
    }
    .section-title span { color: var(--green-primary); }
    .section-title[data-label]::before {
      content: attr(data-label);
      display: block;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green-primary);
      margin-bottom: 0.5rem;
      font-family: 'Inter', sans-serif;
    }
    
    .feature-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2rem;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(76,175,80,.08);
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
      opacity: 0;
      transition: opacity .4s ease;
    }
    .feature-card::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, transparent 50%, rgba(76,175,80,.06) 50%);
      border-radius: 0 16px 0 0;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover), 0 0 40px rgba(76,175,80,.08);
      border-color: rgba(76,175,80,.2);
    }
    .feature-card:hover::before { opacity: 1; }
    
    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--green-primary), #66BB6A);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 4px 20px rgba(76,175,80,.3);
      transition: box-shadow .4s ease;
    }
    .feature-card:hover .feature-icon {
      box-shadow: 0 6px 28px rgba(76,175,80,.45), 0 0 0 1px rgba(76,175,80,.2);
    }
    
    /* Certificados */
    .certificate-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2rem;
      height: 100%;
      border: 1px solid rgba(76,175,80,.08);
      position: relative;
      transition: all .4s ease;
      overflow: hidden;
    }
    .certificate-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
      opacity: 0;
      transition: opacity .4s ease;
    }
    .certificate-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(76,175,80,.2);
    }
    .certificate-card:hover::before { opacity: 1; }
    .certificate-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--green-primary), #66BB6A);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
    .certificate-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .25rem; }
    .certificate-org { font-size: .9rem; color: var(--green-primary); font-weight: 600; margin-bottom: .75rem; }
    .certificate-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
    .certificate-date { font-size: .8rem; color: var(--text-muted); opacity: .9; }
    
    .feature-card h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .feature-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* Skills & Tools - modelo com ícones */
    .skills-panel{
      background:linear-gradient(150deg, #ffffff, #f6faf5);
      border:1px solid rgba(76,175,80,.16);
      border-radius:22px;
      padding:2.2rem 2rem;
      box-shadow:0 16px 42px rgba(12, 25, 18, .08), inset 0 1px 0 rgba(255,255,255,.7);
      position:relative;
      overflow:hidden;
    }
    .skills-panel::before{
      content:'';
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 15% -10%, rgba(76,175,80,.13) 0%, transparent 40%),
        radial-gradient(circle at 90% 110%, rgba(76,175,80,.10) 0%, transparent 45%);
      pointer-events:none;
    }
    .skills-panel-title{
      color:var(--text-dark);
      text-align:center;
      font-family:'Poppins',sans-serif;
      font-size:clamp(1.6rem,3vw,2.3rem);
      font-weight:700;
      margin-bottom:1.5rem;
      letter-spacing:-.02em;
      position:relative;
      z-index:1;
    }
    .skills-icon-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:.9rem;
      position:relative;
      z-index:1;
    }
    .skill-icon-card{
      min-height:88px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(76,175,80,.18);
      border-radius:14px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:.35rem;
      color:var(--text-dark);
      transition:transform .3s ease,border-color .3s ease,background .3s ease;
    }
    .skill-icon-card i{
      font-size:1.55rem;
      color:var(--green-primary);
      line-height:1;
    }
    .skill-icon-card span{
      font-size:.78rem;
      font-weight:600;
      letter-spacing:.02em;
      color:var(--text-dark);
    }
    .skill-icon-card:hover{
      transform:translateY(-4px);
      border-color:rgba(76,175,80,.45);
      background:rgba(76,175,80,.12);
    }
    .skills-cert-row{
      margin-top:1.3rem;
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:.9rem;
      position:relative;
      z-index:1;
    }
    .skills-cert-badge{
      background:rgba(255,255,255,.9);
      border:1px solid rgba(76,175,80,.18);
      border-radius:14px;
      padding:.9rem 1rem;
      display:flex;
      align-items:center;
      gap:.75rem;
      color:var(--text-dark);
    }
    .skills-cert-badge i{
      font-size:1.35rem;
      color:#8ee88f;
      flex-shrink:0;
    }
    .skills-cert-badge strong{
      display:block;
      font-size:.9rem;
      line-height:1.2;
      color:var(--text-dark);
      font-weight:700;
    }
    .skills-cert-badge span{
      display:block;
      font-size:.76rem;
      color:var(--text-muted);
      margin-top:.15rem;
    }
    
    /* ========== PROJECTS ========== */
    .project-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid rgba(76,175,80,.06);
      position: relative;
    }
    .project-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
      opacity: 0;
      transition: opacity .4s ease;
    }
    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover), 0 0 30px rgba(76,175,80,.06);
    }
    .project-card:hover::before { opacity: 1; }
    
    .project-placeholder{position:relative;height:180px;background:linear-gradient(135deg,var(--green-light),rgba(76,175,80,.06));overflow:hidden;display:flex;align-items:center;justify-content:center;font-size:3rem;color:var(--green-primary)}
    .project-placeholder::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(76,175,80,.06) 50%,transparent 55%);opacity:0;transition:opacity .4s;pointer-events:none}
    .project-card:hover .project-placeholder::after{opacity:1}
    .project-placeholder .project-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
    .project-placeholder--logo{background:#fff}
    .project-placeholder--logo .project-img{object-fit:contain;padding:1.5rem}
    
    .project-card .card-body {
      padding: 1.5rem;
    }
    
    .project-card h4 {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .project-link {
      color: var(--green-primary);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      transition: gap 0.3s ease;
    }
    
    .project-link:hover {
      color: var(--green-hover);
      gap: 0.5rem;
    }
    
    /* Modal Projetos */
    .projects-modal-content{background:var(--off-white);border:1px solid rgba(76,175,80,.1);border-radius:20px;box-shadow:0 25px 80px rgba(0,0,0,.15)}
    .projects-modal-header{border-bottom:1px solid rgba(76,175,80,.12);padding:1.5rem 2rem;background:var(--white)}
    .projects-modal-header .modal-title{font-family:'Poppins',sans-serif;font-weight:700;font-size:1.5rem;color:var(--text-dark)}
    .btn-close-projects{filter:invert(0)}
    .projects-modal-body{padding:2rem;background:var(--off-white);max-height:70vh;overflow-y:auto;-webkit-overflow-scrolling:touch}
    .projects-modal-tabs{display:flex;gap:.5rem;margin-bottom:1.5rem;flex-wrap:wrap}
    .project-tab{padding:.5rem 1.25rem;border-radius:50px;border:2px solid rgba(76,175,80,.2);background:transparent;color:var(--text-muted);font-weight:600;font-size:.9rem;cursor:pointer;transition:all .3s ease}
    .project-tab:hover{color:var(--green-primary);border-color:var(--green-primary)}
    .project-tab.active{background:var(--green-primary);color:#fff!important;border-color:var(--green-primary)}
    .projects-tab-content{display:none}
    .projects-tab-content.active{display:block}
    .projects-modal-body .project-card{margin-bottom:0}
    .project-card-link{text-decoration:none!important;color:inherit;display:block}
    .project-card-link:hover{color:inherit}
    .projects-modal-body .badge.bg-warning{background:linear-gradient(135deg,var(--green-primary),#66BB6A)!important;color:#fff!important;border:none}
    .projects-modal-body .badge.bg-secondary{background:rgba(76,175,80,.2)!important;color:var(--green-primary)!important;border:none}
    
    /* ========== TESTIMONIAL / QUOTE ========== */
    .testimonial-section {
      background: linear-gradient(135deg, var(--green-primary) 0%, #66BB6A 100%);
      color: white;
      border-radius: 20px;
      padding: 4rem;
      position: relative;
      box-shadow: 0 8px 40px rgba(76,175,80,.25);
      overflow: hidden;
    }
    .testimonial-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.02) 2px, rgba(255,255,255,.02) 4px);
      pointer-events: none;
    }
    
    .testimonial-section blockquote,.testimonial-section p{position:relative;z-index:1}
    .testimonial-section blockquote{font-size:1.35rem;font-weight:500;line-height:1.7}
    
    /* ========== EXPERIENCE TIMELINE ========== */
    .timeline-item {
      position: relative;
      padding-left: 2rem;
      padding-bottom: 2rem;
    }
    
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.4rem;
      width: 12px;
      height: 12px;
      background: var(--green-primary);
      border-radius: 50%;
      box-shadow: 0 0 0 3px var(--green-light), 0 0 12px var(--green-glow);
    }
    
    .timeline-item::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1.5rem;
      bottom: 0;
      width: 2px;
      background: var(--green-light);
    }
    
    .timeline-item:last-child::after {
      display: none;
    }
    
    .timeline-year {
      font-weight: 600;
      color: var(--green-primary);
      font-size: 0.9rem;
    }
    
    /* ========== CTA FINAL ========== */
    .cta-final {
      background: var(--white);
      border-radius: 20px;
      padding: 4rem;
      text-align: center;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(76,175,80,.08);
      position: relative;
    }
    .cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(76,175,80,.03) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .cta-final h2,.cta-final .lead,.cta-final .btn,.cta-final .cta-final-buttons{position:relative;z-index:1}
    .cta-final h2{font-size:clamp(1.75rem,3vw,2.25rem);margin-bottom:1rem}
    .cta-final .lead{color:var(--text-muted);margin-bottom:2rem}
    .cta-final-buttons{display:flex;flex-wrap:wrap;gap:0.75rem;justify-content:center;align-items:center;margin-top:1.5rem}
    
    /* ========== FOOTER ========== */
    footer {
      background: var(--text-dark);
      color: var(--off-white);
      padding: 4rem 0 2rem;
      margin-top: 5rem;
      position: relative;
    }
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(76,175,80,.2), transparent);
    }
    
    footer .footer-brand {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
    }
    
    footer .footer-links {
      list-style: none;
      padding: 0;
    }
    
    footer .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    
    footer .footer-links a:hover {
      color: var(--green-primary);
    }
    
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255,255,255,0.08);
      color: white;
      margin-right: 0.5rem;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background: var(--green-primary);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      padding-top: 2rem;
      margin-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.875rem;
      opacity: 0.7;
    }
    
    /* Ripple effect on buttons */
    .btn-cta-primary, .btn-cta-secondary {
      position: relative;
      overflow: hidden;
    }
    
    .btn-cta-primary::after, .btn-cta-secondary::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }
    
    .btn-cta-primary:active::after, .btn-cta-secondary:active::after {
      width: 200px;
      height: 200px;
    }
    
    .reveal{}
    .js .hero-badge,
    .js .hero h1,
    .js .hero-subheadline,
    .js .hero-cta{opacity:0;transform:translateY(16px)}
    .js .reveal{opacity:0;transform:translateY(20px)}
    
    /* CTA Flutuante Mobile */
    .cta-float{display:none;position:fixed;bottom:1.5rem;right:1.5rem;z-index:1030;width:58px;height:58px;border-radius:50%;background:linear-gradient(135deg,var(--green-primary),#66BB6A);color:#fff!important;box-shadow:0 4px 24px rgba(76,175,80,.45);align-items:center;justify-content:center;font-size:1.6rem;text-decoration:none!important;opacity:0;transform:translateX(24px);pointer-events:none;transition:opacity .4s ease,transform .4s cubic-bezier(0.34,1.56,0.64,1),box-shadow .3s}
    .cta-float.cta-float--visible{opacity:1;transform:translateX(0);pointer-events:auto;animation:ctaFloatPulse 2s ease-in-out 1s infinite}
    .cta-float:hover{transform:scale(1.1);box-shadow:0 8px 32px rgba(76,175,80,.5);color:#fff!important;animation:none}
    @keyframes ctaFloatPulse{0%,100%{box-shadow:0 4px 24px rgba(76,175,80,.45),0 0 0 0 rgba(76,175,80,.3)}50%{box-shadow:0 4px 24px rgba(76,175,80,.5),0 0 0 12px rgba(76,175,80,0)}}
    @media(min-width:992px){.cta-float{display:none!important}}
    @media(max-width:991px){.cta-float{display:flex}}
    
    /* ========== RESPONSIVE (mobile-first) ========== */
    /* Container: evita colar nas bordas em telas muito pequenas */
    @media (max-width: 575.98px) {
      .container { padding-left: 1rem; padding-right: 1rem; }
      .navbar-custom .container { padding-left: 1rem; padding-right: 1rem; }
      .hero { min-height: auto; padding: 5rem 0 2.5rem; }
      .hero h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); margin-bottom: 1rem; overflow-wrap: break-word; word-wrap: break-word; }
      .hero-subheadline { font-size: 1rem; max-width: 100%; margin-bottom: 1.5rem; }
      .hero-cta { flex-direction: column; width: 100%; }
      .hero-cta .btn { width: 100%; justify-content: center; min-height: 48px; }
      .puddle-wrap { padding: 1rem 0.5rem; }
      .puddle { width: min(220px, 85vw); }
      .section-title { font-size: clamp(1.5rem, 5vw, 1.85rem); margin-bottom: 2rem; overflow-wrap: break-word; }
      .section-title[data-label]::before { font-size: 0.65rem; letter-spacing: 0.15em; }
      .about-me { padding: 2rem 1.25rem; }
      .about-unified-grid{grid-template-columns:1fr;gap:.8rem}
      .about-certs-panel{padding:1rem}
      .about-allinone{padding:1rem}
      .about-certs-grid{grid-template-columns:1fr}
      .about-highlights{grid-template-columns:1fr}
      .about-highlight{min-height:112px;padding:.85rem .75rem}
      .about-highlight strong{font-size:.88rem}
      .about-highlight span{font-size:.77rem}
      .about-allinone-divider{margin:.9rem 0 .85rem}
      .about-copy{gap:.7rem}
      .about-me-text { padding: 0; font-size: 0.95rem; margin-top: 0; }
      .about-me-text--lead{font-size:.98rem;padding-left:.7rem}
      .feature-card, .certificate-card { padding: 1.5rem 1.25rem; }
      .skills-panel{padding:1.6rem 1rem}
      .skills-panel-title{font-size:1.5rem}
      .skills-icon-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}
      .skill-icon-card{min-height:78px}
      .skill-icon-card i{font-size:1.35rem}
      .skills-cert-row{grid-template-columns:1fr}
      .feature-icon { width: 48px; height: 48px; font-size: 1.25rem; }
      .certificate-icon { width: 42px; height: 42px; font-size: 1.1rem; }
      .certificate-card h3 { font-size: 1.05rem; }
      .project-placeholder { height: 160px; }
      .project-card .card-body { padding: 1.25rem; }
      .project-card h4 { font-size: 1.05rem; }
      .testimonial-section { padding: 2.5rem 1.5rem; border-radius: 16px; }
      .testimonial-section blockquote { font-size: 1.15rem; }
      .timeline-item { padding-left: 1.5rem; padding-bottom: 1.5rem; }
      .timeline-item::before { width: 10px; height: 10px; top: 0.35rem; }
      .timeline-item::after { left: 4px; top: 1.25rem; }
      .cta-final { padding: 2.5rem 1.5rem; border-radius: 16px; }
      .cta-final h2 { font-size: clamp(1.4rem, 5vw, 1.75rem); margin-bottom: 0.75rem; }
      .cta-final .lead { font-size: 0.95rem; margin-bottom: 1.5rem; }
      .cta-final-buttons { flex-direction: column; width: 100%; margin-top: 1.25rem; }
      .cta-final-buttons .btn { width: 100%; min-height: 48px; justify-content: center; }
      footer { padding: 2.5rem 0 1.5rem; margin-top: 3rem; }
      footer .footer-brand { font-size: 1.1rem; }
      footer .row { text-align: center; }
      footer .footer-links { margin-bottom: 1rem; }
      .social-links { justify-content: center; margin-top: 0.5rem; }
      .social-links a { width: 44px; height: 44px; margin: 0 0.25rem; }
      .footer-bottom { padding-top: 1.5rem; margin-top: 1.5rem; font-size: 0.8rem; text-align: center; }
      .cta-float { bottom: max(1.25rem, env(safe-area-inset-bottom)); right: max(1rem, env(safe-area-inset-right)); width: 52px; height: 52px; font-size: 1.4rem; }
    }
    
    @media (max-width: 767.98px) {
      .hero { min-height: auto; padding: 5rem 0 3rem; }
      .hero::before { width: 100%; height: 55%; top: auto; bottom: 0; }
      .hero::after { width: 200px; height: 200px; right: 5%; top: 15%; }
      .navbar-custom { padding: 0.6rem 0; }
      .navbar-brand-name { font-size: 1.4rem; }
      .nav-link { padding: 0.6rem 0.75rem !important; }
      .section-title { margin-bottom: 2.5rem; }
      .client-logos { gap: 1.25rem; }
      .client-logo-img { height: 36px; max-width: 100px; }
      .projects-modal-header { padding: 1.25rem 1rem; }
      .projects-modal-header .modal-title { font-size: 1.25rem; }
      .projects-modal-body { padding: 1.25rem 1rem; max-height: min(75vh, 600px); }
      .projects-modal-tabs { gap: 0.4rem; margin-bottom: 1.25rem; }
      .project-tab { padding: 0.5rem 1rem; font-size: 0.85rem; }
      .projects-modal-body .project-card .card-body { padding: 1rem; }
      .projects-modal-body .project-card h4 { font-size: 1rem; }
      .projects-modal-body .project-card .text-muted { font-size: 0.8rem; }
    }
    
    @media (max-width: 991.98px) {
      .puddle-wrap .puddle { width: min(260px, 75vw); }
      .hero .row.align-items-center { gap: 1.5rem; }
      .about-me { padding: 2.5rem 1.5rem; }
      .about-unified-grid{grid-template-columns:1fr}
      .about-certs-grid{grid-template-columns:1fr}
      .about-highlights{grid-template-columns:1fr}
      .about-highlight{min-height:120px}
      .skills-icon-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
      .row.g-4 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
    }

    @media (min-width: 576px) and (max-width: 767.98px){
      .about-allinone{padding:1.15rem}
      .about-certs-grid{grid-template-columns:1fr}
      .about-highlight{min-height:118px}
    }

    @media (min-width: 768px) and (max-width: 1199.98px){
      .about-allinone{padding:1.25rem}
      .about-certs-grid{grid-template-columns:1fr}
      .about-highlight{min-height:122px}
      .about-copy{gap:.8rem}
      .about-me-text{line-height:1.7}
    }
    
    @media (min-width: 576px) and (max-width: 767.98px) {
      .hero-cta .btn { width: auto; }
      .cta-final-buttons .btn { width: auto; }
    }
    
    /* Touch targets mínimos (44px) e prevenção de zoom em inputs */
    @media (max-width: 991.98px) {
      .nav-link { min-height: 44px; display: inline-flex; align-items: center; }
      .navbar-toggler { min-width: 44px; min-height: 44px; padding: 0.5rem; }
      .project-tab { min-height: 44px; padding: 0.5rem 1rem; }
      .btn-cta-primary, .btn-cta-secondary { min-height: 48px; }
    }
    
    /* Imagens responsivas (evita overflow); placeholders mantêm altura fixa */
    .about-me img, .card-body img, footer img { max-width: 100%; height: auto; }
    .project-placeholder .project-img { object-fit: cover; }
    .project-placeholder--logo .project-img { object-fit: contain; }
    .puddle-photo { object-fit: cover; }
    
    /* Modal em tela cheia em mobile para melhor UX */
    @media (max-width: 575.98px) {
      #projectsModal .modal-dialog { margin: 0.5rem; max-width: calc(100% - 1rem); }
      #projectsModal .modal-content { border-radius: 16px; }
      #projectsModal .projects-modal-body { max-height: 65vh; }
    }

    /* Desktop: cada seção principal ocupa uma tela inteira */
    @media (min-width: 992px) {
      #about,
      #skills,
      #projects,
      #experience,
      #contact {
        min-height: 100vh;
        display: flex;
        align-items: center;
        scroll-margin-top: 88px;
      }

      #about > .container,
      #skills > .container,
      #projects > .container,
      #experience > .container,
      #contact > .container {
        width: 100%;
      }
    }
