/* ===== HERO ===== */

.hero{
  position: relative;
  background-image: url(bg-banner.jpg);
  background-size: cover;
  padding: 50px 0 0;
  overflow: hidden;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content{
  color: #fff;
  padding-bottom: 100px;
}

.hero-sub{
  font-size: 18px;
  opacity: .9;
  margin-bottom: 15px;
}

.hero-title{
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-desc{
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 35px;
  opacity: .95;
}

.hero-btn{
  background: #ff5c87;
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,.2);
}

.hero-btn:hover{
  transform: translateY(-3px);
  background: #ff3c6d;
}

.hero-image{
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image img{
  width: 100%;
  max-width: 520px;
  object-fit: cover;
}

/* RESPONSIVO */

@media(max-width: 1024px){
  .hero-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content{
    padding-bottom: 40px;
  }

  .hero-desc{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image{
    justify-content: center;
  }
}
/* ===== WHATSAPP FLUTUANTE ===== */

.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0,0,0,.25);
  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile ajuste */
@media (max-width: 768px){
  .whatsapp-float{
    right: 40px !important;
    bottom: 85px !important; /* sobe o botão */
  }
}


 :root{
      --bg: #FEF6F4;            /* fundo rosado */
      --accent: #f39aa8;        /* rosa do botão */
      --accent-dark:#e47686;
      --text:#2b2b2b;
      --muted:#6b6b6b;
      --white:#ffffff;

      --container: 1180px;
      --radius: 10px;
      --shadow: 0 14px 30px rgba(0,0,0,.08);
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      background:#fff;
    }

    /* ====== HEADER ====== */
    .topbar{
      position: sticky;
      top: 0;
      z-index: 999;
      background: var(--bg);
      border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .container{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 18px;
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      min-height: 84px;
    }

    /* Logo (placeholder em texto; você troca pela imagem depois) */
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      color:inherit;
      min-width: 220px;
    }

    .brand-mark{
      width: 64px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255,255,255,.55);
      border: 1px solid rgba(0,0,0,.06);
      display:grid;
      place-items:center;
      box-shadow: 0 8px 18px rgba(0,0,0,.06);
      overflow:hidden;
    }
    .brand-mark span{
      font-size: 22px;
      opacity:.9;
    }

    .brand-text{
      line-height:1.05;
    }
    .brand-name{
      font-weight:700;
      letter-spacing:.2px;
    }
    .brand-sub{
      font-size:12px;
      color:var(--muted);
      letter-spacing:.18em;
      text-transform:uppercase;
      margin-top:3px;
    }

    .menu{
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 34px;
      list-style:none;
      margin:0;
      padding:0;
      flex: 1;
    }

    .menu a{
      text-decoration:none;
      color:var(--text);
      font-weight:600;
      font-size:13px;
      letter-spacing:.06em;
      text-transform:uppercase;
      padding:10px 4px;
      position:relative;
      opacity:.95;
    }

    .menu a::after{
      content:"";
      position:absolute;
      left: 0;
      bottom: 6px;
      width: 0%;
      height: 2px;
      background: var(--accent-dark);
      transition: width .22s ease;
      border-radius: 2px;
    }
    .menu a:hover::after{ width: 100%; }

    .actions{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 220px;
      justify-content:flex-end;
    }

    .cta{
      appearance:none;
      border:0;
      cursor:pointer;
      background: var(--accent);
      color: var(--white);
      font-weight:800;
      font-size:12px;
      letter-spacing:.08em;
      text-transform:uppercase;
      padding: 14px 18px;
      border-radius: 8px;
      box-shadow: 0 10px 18px rgba(244, 120, 140, .28);
      transition: transform .15s ease, background .15s ease;
      white-space: nowrap;
    }
    .cta:hover{ background: var(--accent-dark); transform: translateY(-1px); }
    .cta:active{ transform: translateY(0px); }

    /* Hamburger (mobile) */
    .hamb{
      display:none;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.55);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      gap:5px;
      flex-direction:column;
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }
    .hamb span{
      width: 20px;
      height: 2px;
      background: rgba(0,0,0,.55);
      border-radius: 2px;
      transition: transform .2s ease, opacity .2s ease;
    }

    /* Drawer mobile */
    .drawer{
      display:none;
      padding: 0 18px 18px;
    }
    .drawer-inner{
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 14px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .drawer ul{
      list-style:none;
      margin:0;
      padding: 10px;
      display:flex;
      flex-direction:column;
      gap: 6px;
    }
    .drawer a{
      display:block;
      padding: 14px 12px;
      border-radius: 12px;
      text-decoration:none;
      color: var(--text);
      font-weight:700;
      letter-spacing:.06em;
      text-transform:uppercase;
      font-size: 12px;
      background: rgba(255,255,255,.55);
      border: 1px solid rgba(0,0,0,.05);
    }

    .drawer .cta-wrap{
      padding: 10px;
      border-top: 1px solid rgba(0,0,0,.06);
      background: rgba(255,255,255,.45);
    }
    .drawer .cta{
      width:100%;
      padding: 16px 18px;
      border-radius: 12px;
    }

    /* ====== RESPONSIVO ====== */
    @media (max-width: 980px){
      .brand{ min-width:auto; }
      .actions{ min-width:auto; }
      .menu{ gap: 22px; }
    }

    @media (max-width: 840px){
      .menu{ display:none; }
      .actions .cta{ display:none; }
      .hamb{ display:flex; }
      .drawer{ display:block; }
      .drawer[hidden]{ display:none; }
      .nav{ min-height: 78px; }
      .brand-mark{ width: 56px; height: 44px; }
    }

    /* Estado "aberto" do hamburguer */
    .is-open .hamb span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
    .is-open .hamb span:nth-child(2){ opacity: 0; }
    .is-open .hamb span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

    /* Acessibilidade: foco */
    a:focus-visible, button:focus-visible{
      outline: 3px solid rgba(244, 120, 140, .45);
      outline-offset: 2px;
      border-radius: 10px;
    }

      /* ===== DEPOIMENTOS ===== */
  .testimonials{
    background: #fff;
    padding: 70px 0;
  }

  .testi-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
  }

  .testi-card{
    position: relative;
    padding-top: 10px;
  }

  .testi-quote{
    font-size: 88px;
    line-height: 1;
    font-weight: 900;
    color: rgba(231, 134, 153, .55); /* rosa suave */
    margin-bottom: 10px;
    user-select: none;
  }

  .testi-text{
    margin: 0;
    color: rgba(0,0,0,.70);
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
  }

  /* Responsivo */
  @media (max-width: 980px){
    .testi-grid{
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .testi-text{
      max-width: 100%;
    }

    .testi-quote{
      font-size: 72px;
    }
  }


  /* ===== PROJETOS ===== */
  .projects{
    background: #fff;
    padding: 75px 0 90px;
  }

  .projects-title{
    text-align: center;
    font-size: 16px;
    letter-spacing: .18em;
    font-weight: 800;
    margin: 0 0 28px;
    color: rgba(0,0,0,.55);
  }

.projects-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px; /* mais respiro = mais premium */
  max-width: 1100px;
  margin: 0 auto; /* centraliza e dá mais elegância */
}

.p-card{
  background: #e9a7b2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  min-height: 600px; /* dá mais presença */
}

.p-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.p-thumb{
    background: rgba(255,255,255,.22);
    padding: 22px 22px 0;
  }

  .p-thumb img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
    display: block;
  }

  .p-body{
    padding: 18px 22px 22px;
    color: rgba(255,255,255,.95);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .p-name{
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .2px;
  }

  .p-desc{
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
    max-width: 340px;
  }

  .p-link{
    margin-top: auto;
    align-self: flex-end;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255,255,255,.95);
    opacity: .9;
    padding: 10px 10px;
    border-radius: 10px;
    transition: opacity .15s ease, background .15s ease;
  }

  .p-link:hover{
    opacity: 1;
    background: rgba(255,255,255,.14);
  }

@media (max-width: 1024px){
  .projects-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

  /* ===== SOBRE ===== */
  .about{
    background: #fff;
    padding: 70px 0 90px;
    text-align: center;
  }

  .about-kicker{
    margin: 0 0 22px;
    font-size: 14px;
    letter-spacing: .22em;
    font-weight: 800;
    color: rgba(0,0,0,.55);
  }

  .about-title{
    margin: 0 auto 22px;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: rgba(0,0,0,.80);
    max-width: 980px;
  }

  .about-highlight{
    color: #ff5c87; /* rosa destaque */
  }

  .about-text{
    margin: 0 auto;
    max-width: 720px;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(0,0,0,.62);
  }

  .about-cta{
    margin-top: 36px;
  }

  .about-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 8px;
    background: #ff5c87;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 16px 30px rgba(255, 92, 135, .28);
    transition: transform .18s ease, background .18s ease;
  }

  .about-btn:hover{
    background: #ff3c6d;
    transform: translateY(-3px);
  }

  /* ===== RODAPÉ ===== */
  .footer{
    background: #fff;
  }

  .footer-bar{
    background: #ff5c87;
    padding: 18px 0;
  }

  .footer-inner{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .footer-text{
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    letter-spacing: .02em;
  }

  /* Responsivo */
  @media (max-width: 980px){
    .about-title{
      font-size: 26px;
      padding: 0 8px;
    }
    .about-text{
      padding: 0 10px;
    }
    .footer-text{
      text-align:center;
      font-size: 13px;
    }
  }

