

:root{
  --rose: #D9A4C7; /* Rosé chic */
  --nude: #F5E7E0; /* Fundo principal */
  --white: #FFFFFF;
  --gold: #C8A96E; /* Dourado suave */
  --muted: #3D3D3D; /* Cinza topo */
  --black: #121212; /* Preto elegante */
  --radius: 12px;
}

/* Reset simples */
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background:var(--nude); color:var(--black); line-height:1.5;}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Header */
.site-header{background:transparent;padding:18px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand h1{font-size:20px;color:var(--black);margin:0}
.brand .tag{font-size:12px;color:var(--muted)}

/* Nav */
.nav-list{display:flex;gap:18px;list-style:none}
.nav-list a{color:var(--muted);text-decoration:none;font-weight:600}
#nav-toggle{display:none}

/* HERO */
.hero{padding:80px 0}
.hero-inner{display:grid;grid-template-columns:1fr 420px;gap:40px;align-items:center}
.hero-text h2{font-size:34px;margin-bottom:12px;color:var(--black)}
.lead{color:var(--muted);max-width:560px}
.hero-media img{width:100%;border-radius:var(--radius);box-shadow:0 10px 30px rgba(0,0,0,0.08)}

.btn{display:inline-block;padding:12px 20px;border-radius:8px;text-decoration:none;font-weight:700}
.primary{background:var(--rose);color:var(--white);box-shadow:0 6px 18px rgba(0,0,0,0.06)}
.ghost{border:2px solid var(--rose);color:var(--rose);background:transparent}
.btn:hover{transform:translateY(-2px);transition:all .18s ease}
.primary:hover{box-shadow:0 8px 24px rgba(0,0,0,0.12);}
.primary:focus{outline:3px solid rgba(200,169,110,0.18)}

/* SOBRE - versão modernizada */
.section.about {
  padding: 50px 0; /* mantém espaço, mas não exagera */
}

.section.about h3 {
  text-align: center;
  font-size: 28px; /* maior presença */
  color: var(--black);
  margin-bottom: 24px; /* mais espaço entre título e texto */
}

.about-intro {
  text-align: center;
  color: var(--muted);
  max-width: 750px; /* um pouco menor que antes para foco no texto */
  margin: 15px auto 30px auto;
  font-size: 1.15rem; /* texto um pouco maior */
  line-height: 1.7; /* melhor leitura */
}

.skills {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 20px; /* aumenta espaço entre texto e skills */
}

.skills li {
  background: var(--white);
  padding: 10px 16px; /* maior conforto visual */
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .section.about h3 {
    font-size: 24px;
  }
  .about-intro {
    font-size: 1rem;
    line-height: 1.5;
  }
  .skills li {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}


/* ===== SERVIÇOS ===== */
.services {
    padding: 70px 0;
    background: #F5E7E0; /* nude quente */
  }
  
  .services h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #3D3D3D; /* cinza topo */
    font-weight: 700;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  /* ===== CARDS ===== */
  .services .card {
    background: #FFFFFF; /* branco */
    border: 2px solid #D9A4C7; /* rosé chic */
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    cursor: pointer;
  }
  
  .services .card h4 {
    font-size: 20px;
    color: #3D3D3D; /* cinza topo */
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .services .card p {
    color: #3D3D3D;
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* ===== HOVER ===== */
  .services .card:hover {
    transform: translateY(-6px);
    border-color: #C8A96E; /* muda para dourado no hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  

/* ===== PORTFÓLIO ===== */
.portfolio-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .portfolio-category {
    margin-bottom: 60px;
    text-align: center;
  }
  
  .portfolio-category h2 {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: 700;
  }
  
  .portfolio-grid {
    display: grid;
    gap: 18px;
    justify-content: center;
  }
  
  /* Notebook: 3 imagens */
  @media (min-width: 1024px) {
    .portfolio-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Tablet e celular: 2 imagens */
  @media (max-width: 1023px) {
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .portfolio-grid img {
      width: 100%;
      max-height: 200px;  /* reduz o tamanho no notebook, mas mantém proporção */
      height: auto;       /* altura automática, mantém a imagem inteira */
      object-fit: contain; /* evita corte, imagem inteira visível */
      border-radius: 14px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform .3s ease;
  }
  
  
  
  .portfolio-grid img:hover {
    transform: scale(1.03);
  }
  
  /* As escondidas */
  .hidden-img {
    display: none;
  }
  
  /* Botão */
  .btn-vermais {
    margin-top: 18px;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background: #ff86b8;
    color: #fff;
    cursor: pointer;
    transition: background .3s ease;
  }
  
  .btn-vermais:hover {
    background: #ff6da8;
  }
  

/* ============================
   DEPOIMENTOS — ESTILO MODERNO
============================ */
#depoimentos {
    padding: 80px 0;
    background: #F5E7E0; /* nude quente */
    text-align: center;
  }
  
  #depoimentos h3 {
    font-size: 34px;
    font-weight: 700;
    color: #3D3D3D; /* cinza premium */
    margin-bottom: 45px;
    letter-spacing: 1px;
  }
  
  /* Cada depoimento */
  .testimonial {
    background: #FFFFFF; /* branco elegante */
    border: 1px solid rgba(200, 169, 110, 0.25); /* dourado suave translúcido */
    padding: 28px 34px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    max-width: 850px;
    margin: 0 auto 30px;
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
    color: #3D3D3D;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  /* linha dourada decorativa */
  .testimonial::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #C8A96E; /* dourado suave */
    display: block;
    margin: 20px auto 0;
    border-radius: 10px;
  }
  
  /* Hover — efeito flutuante premium */
  .testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }
  
  /* Responsivo */
  @media (max-width: 600px) {
    .testimonial {
      padding: 22px 20px;
      font-size: 15.5px;
    }
  
    #depoimentos h3 {
      font-size: 28px;
    }
  }

  /* ============================
   DEPOIMENTOS — FUNDO COM IMAGEM
============================ */
#depoimentos {
  background: url("../img/clean1.jpeg") center / cover no-repeat;
  position: relative;
}

/* garante leitura perfeita */
#depoimentos .testimonial {
  background: #FFFFFF;
  position: relative;
  z-index: 1;
}

  
/* ============================
   BENEFÍCIOS — ESTILO PREMIUM
============================ */
.benefits {
    padding: 80px 0;
    background: #FFFFFF; /* fundo branco elegante que contrasta com depoimentos */
    text-align: center;
  }
  
  .benefits h3 {
    font-size: 34px;
    font-weight: 700;
    color: #3D3D3D;
    margin-bottom: 45px;
    letter-spacing: 1px;
  }
  
  /* Lista */
  .benefit-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  /* Cada benefício */
  .benefit-list li {
    background: #F5E7E0; /* nude quente */
    padding: 22px 25px;
    border-radius: 16px;
    font-size: 17px;
    color: #3D3D3D;
    font-weight: 500;
    border: 1px solid rgba(200, 169, 110, 0.3); /* dourado suave */
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
  }
  
  /* Detalhe em rosé chic no topo */
  .benefit-list li::before {
    content: "";
    width: 45px;
    height: 3px;
    background: #D9A4C7; /* rosé chic */
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
  }
  
  /* Hover premium */
  .benefit-list li:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  }

  
/* ============================
   FAQ — ESTILO PREMIUM
============================ */
.faq {
    padding: 90px 0;
    background: #F5E7E0; /* nude quente */
  }
  
  .faq h3 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #3D3D3D;
    margin-bottom: 50px;
    letter-spacing: 1px;
  }
  
  /* Caixa FAQ */
  .faq details {
    background: #FFFFFF;
    border: 1px solid rgba(200, 169, 110, 0.35); /* dourado suave */
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 18px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  
  .faq details:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  }
  
  /* Título da pergunta */
  .faq summary {
    font-size: 18px;
    font-weight: 600;
    color: #3D3D3D;
    list-style: none;
    position: relative;
    padding-right: 25px;
  }
  
  /* Ícone moderno (seta) */
  .faq summary::after {
    content: "＋";
    font-size: 22px;
    color: #D9A4C7; /* rosé chic */
    position: absolute;
    right: 0;
    top: 0;
    transition: transform .25s ease, color .25s ease;
  }
  
  /* Setinha vira X quando abre */
  .faq details[open] summary::after {
    content: "–";
    transform: rotate(180deg);
    color: #C8A96E; /* dourado suave */
  }
  
  /* Texto da resposta */
  .faq details p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #3D3D3D;
    padding-left: 5px;
  }

  /* ============================
   FAQ — FUNDO COM IMAGEM
============================ */
.faq {
  padding: 90px 0;
  background: url("../img/art4.jpeg") center / cover no-repeat;
  position: relative;
}

/* garante leitura e destaque das caixas */
.faq details {
  background: #FFFFFF;
  position: relative;
  z-index: 1;
}

  
/* ==== FORMULÁRIO CONTATO ==== */

.contato {
    padding: 80px 0;
    background: var(--bg-light);
  }
  
  .form-container {
    max-width: 400px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }
  
  .form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--primary);
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #e6e6e6;
    outline: none;
    font-size: 15px;
    background: #fafafa;
    transition: 0.2s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 128, 128, 0.2); /* brilho suave */
  }
  
  .contact-form textarea {
    height: 120px;
    resize: none;
  }
  
  .btn-whatsapp {
    width: 100%;
    padding: 15px;
    font-size: 17px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  }
/* CONTATO – fundo com imagem limpa (sem transparência) */
.contato {
  padding: 80px 0;
  background: url("../img/art2.jpeg") center / cover no-repeat;
}

/* formulário preservado */
.form-container {
  background: #ffffff;
  position: relative;
  z-index: 1;
}

/* =================== RODAPÉ =================== */
.site-footer {
  background: linear-gradient(180deg, var(--black), #0f0f0f);
  padding: 60px 0 40px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

/* Branding */
.footer-brand h4 {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* Redes sociais */
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Botão social */
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Ícones SVG */
.icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  opacity: 0.9;
}

/* Créditos */
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-copy .dev {
  margin-top: 6px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Desktop */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    text-align: left;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-copy {
    text-align: right;
  }
}

/* WhatsApp */
.social-icon.whatsapp {
  background: #25D366;
}
.social-icon.whatsapp::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.social-icon.whatsapp::after {
  content: "";
  width: 2px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 11px;
  transform: rotate(45deg);
}

/* Hover */
.social-icon:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 25px rgba(198, 78, 184, 0.35);
}

/* Copy */
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-copy .dev {
  margin-top: 6px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsivo */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    text-align: left;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-copy {
    text-align: right;
  }
}/* =================== WHATSAPP FLOAT ULTRA MODERNO =================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow:
    0 12px 30px rgba(37, 211, 102, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 18px 40px rgba(37, 211, 102, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* Mobile */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}


/* Ícone WhatsApp no botão fixo */
.btn-fixo-whatsapp::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
.btn-fixo-whatsapp::after {
  content: "";
  width: 3px;
  height: 12px;
  background: #25D366;
  border-radius: 1px;
  position: absolute;
  transform: rotate(45deg);
}

.btn-fixo-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}


/* Responsive */
@media (max-width:900px){
  .hero-inner{grid-template-columns:1fr}
  .hero-media{order:-1}
  .nav-list{display:none}
  #nav-toggle{display:block;background:transparent;border:0;font-size:20px}
}

/* Small refinements for premium feel */
h2, h3{letter-spacing:0.2px}

/* Hover dourado */
a:hover, .filter:hover{color:var(--gold);border-color:var(--gold)}


/* Utility */
.muted{color:var(--muted)}


/* =================== SEÇÕES =================== */
/* Espaçamento reduzido entre sessões, mantendo responsividade */
.section {
  padding-top: 40px;    /* antes era 60px */
  padding-bottom: 40px; /* antes era 60px */
}

/* Títulos das seções */
.section h3 {
  text-align: center;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 16px;
}

/* Texto de introdução */
.about-intro {
  text-align: center;
  color: var(--muted);
  max-width: 800px;
  margin: 10px auto 20px auto; /* reduz margem inferior para aproximar mais da próxima seção */
}

/* Lista de habilidades ou tópicos */
.skills {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 16px;
}

.skills li {
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.04);
  font-weight: 600;
  color: var(--muted);
}

/* Se quiser ainda mais controle, criar classe compacta para sessões específicas */
.compact {
  padding-top: 30px;
  padding-bottom: 30px;
}


/* Celular e tablets */
@media (max-width: 768px) {
  .section {
      padding-top: 30px;   /* menos espaço no celular */
      padding-bottom: 30px;
  }
}
