* { margin:0; padding:0; box-sizing:border-box; font-family:'Inter', sans-serif; }

html{
  scroll-behavior: smooth;
}

    body { background:#f5f7fb; color:#333; }

    header {
      position:fixed;
      top:0; left:0; right:0;
      background:#fff;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:16px 40px;
      box-shadow:0 2px 10px rgba(0,0,0,0.05);
      z-index:1000;
    }

    .logo { font-weight:700; font-size:20px; }

    .logo span:nth-child(1){ color:#2F80ED; }
    .logo span:nth-child(2){ color:#F2994A; }
    .logo span:nth-child(3){ color:#2F80ED; }

    .logo {
    display: flex;
    align-items: center; /* CENTRALIZA verticalmente */
    gap: 10px;
    }

    .logo img {
  height: 40px;   /* controla altura real */
  width: auto;    /* mantém proporção */
  display: block; /* remove comportamento estranho inline */
}

    nav a {
      margin:0 15px;
      text-decoration:none;
      color:#555;
      font-weight:500;
      position:relative;
    }

    nav a.active::after {
      content:"";
      position:absolute;
      bottom:-6px;
      left:0;
      width:100%;
      height:3px;
      background:#F2994A;
      border-radius:2px;
    }

    .search {
      border:1px solid #ddd;
      padding:8px 12px;
      border-radius:20px;
    }

    /* HERO */
    .hero {
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:120px 40px;
      height:100vh;
      background:url(img/Background.png) no-repeat center center  ;
      background-size:cover;
      position:relative;
      overflow:hidden;
      box-shadow: #333 0px 10px 20px -10px;
    }

    .hero-text {
      width:35%;
      margin-left:12%;
      z-index:2;
    }

    .hero-text small {
      color:#2F80ED;
      letter-spacing:2px;
    }

    .hero-text h1 {
      font-size:56px;
      margin:10px 0;
    }

    .hero-text p {
      margin:20px 0;
      color:#666;
      line-height:1.6;
    }

    .blue { color:#2F80ED; }
    .orange { color:#F2994A; }

    .buttons button {
      padding:12px 20px;
      border:none;
      border-radius:8px;
      margin-right:10px;
      cursor:pointer;
      font-weight:600;
    }

    .primary { background:#2F80ED; color:#fff; }
    .secondary { background:#fff; border:1px solid #ccc; }

    /* IMAGEM */
    .hero-image {
      position:absolute;
      top:0;
      right:0;
      width:50%;
      height:100%;
      overflow:hidden;
      border-top-left-radius:200px;
      border-bottom-left-radius:200px;
    }

    .hero-image img {
      width:100%;
      height:100%;
      object-fit:cover;
    }

    /* FEATURES */
    .features {
  display: flex;

  justify-content: center;

  margin-top: -135px;
  padding: 10px;

  background: #ffffff; /* branco sólido */
  border-radius: 20px;

  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 5; /* garante que fica acima do hero */
}

    .feature {
      display:flex;
      align-items:center;
      gap:15px;
      padding:20px;
      border-radius:12px;
      background:#fff;
      flex:1;
      max-width:300px;
      
      transition:0.3s;
    }

    .feature:hover {
      transform:translateY(-5px);
    }

    .icon {
      min-width:50px;
      height:50px;
      background:#eaf3ff;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
    }

    .icon img {
      width:24px;
      height:24px;
    }

    .content h4 {
      font-size:16px;
      color:#2F80ED;
      margin-bottom:4px;
    }

    .content p {
      font-size:13px;
      color:#666;
    }

    @media(max-width:900px){
      .hero { flex-direction:column; text-align:center; height:auto; }
      .hero-text { width:100%; }
      .hero-image { position:relative; width:100%; height:300px; border-radius:20px; margin-top:20px; }
      .features { flex-direction:column; margin-top:20px; }
    }

/* ===== PERSONALIZADOS ===== */

.personalizados {
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGEM */
.personalizados-img {
  flex: 1;
 
}

.personalizados-img video {
  
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* TEXTO */
.personalizados-content {
  flex: 1;
}

.personalizados-content small {
  color: #2da8ff;
  font-weight: 600;
  letter-spacing: 1px;
}

.personalizados-content h1 {
  font-size: 48px;
  margin: 10px 0;
}

.personalizados-content h1 span {
  color: #ff7a00;
}

.personalizados-content p {
  margin: 15px 0 25px;
  color: #555;
  line-height: 1.6;
}

/* FEATURES */
.features {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  background: #eef6ff;
  padding: 10px;
  border-radius: 10px;
  color: #2da8ff;
}

/* BOTÕES */
.actions {
  display: flex;
  gap: 15px;
}

.btn-main {
  background: linear-gradient(90deg, #ff7a00, #ff9a2f);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #2da8ff;
  background: transparent;
  color: #2da8ff;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
}

/* ===== COMO FUNCIONA ===== */

.how {
  margin-top: 80px;
  text-align: center;
}

.how h2 {
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 16px;
  flex: 1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step span {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #ff7a00;
}

    /* ===== SHOP LAYOUT ===== */

.shop-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title small {
  display: block;
  color: #2F80ED;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title h1 span {
  background: linear-gradient(90deg, #ff7a00, #ff9a2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: #666;
  font-size: 16px;
}
/* SIDEBAR */
.sidebar {
  width: 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.sidebar h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.filter-item input {
  accent-color: #2ea8ff;
}

.filter-item span {
  font-size: 13px;
  color: #999;
}

/* BOTÕES */
.btn-primary {
  width: 100%;
  background: linear-gradient(90deg, #ff7a00, #ff9a2f);
  border: none;
  padding: 12px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.btn-secondary {
  width: 100%;
  margin-top: 10px;
  background: transparent;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* GRID */
.products-area {
  flex: 1;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.products-header select {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* GRID CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* CARD */
.product-card {
  background: white;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* FAVORITO */
.favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  font-size: 18px;
  color: #aaa;
}

.favorite:hover {
  color: #ff7a00;
}

/* TEXTOS */
.product-category {
  font-size: 12px;
  color: #888;
}

.product-title {
  font-weight: 600;
  margin: 5px 0;
}

.product-price {
  color: #ff7a00;
  font-weight: 600;
}

.buy-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff7a00, #ff9a2f);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* HOVER bonito */
.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,122,0,0.3);
}

/* CLICK */
.buy-btn:active {
  transform: scale(0.97);
}

/* Contato */
.contato {
  padding: 100px 40px;
  background: linear-gradient(135deg, #f5f7fb, #ffffff);
}

.contato-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* TEXTO */
.contato-text {
  flex: 1;
}

.contato-text small {
  color: #2F80ED;
  letter-spacing: 2px;
  font-weight: 600;
}

.contato-text h1 {
  font-size: 48px;
  margin: 10px 0;
}

.contato-text h1 span {
  color: #ff7a00;
}

.contato-text p {
  color: #666;
  max-width: 400px;
}

/* BOTÕES */
.contato-actions {
  display: flex;
  gap: 15px;
}

.btn-main {
  background: linear-gradient(90deg, #ff7a00, #ff9a2f);
  color: white;
  border: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #2F80ED;
  background: transparent;
  color: #2F80ED;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* HOVER */
.btn-main:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .contato-container {
    flex-direction: column;
    text-align: center;
  }

  .contato-actions {
    justify-content: center;
  }
}

/* ============================================================
   ESTUDIO CRIATIVA 3D — CSS RESPONSIVO MOBILE
   Adicione no final do seu style.css ou importe com:
   <link rel="stylesheet" href="mobile.css" />
   ============================================================ */

@media (max-width: 768px) {

  /* ===== HEADER ===== */
  header {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    font-size: 16px;
    gap: 6px;
  }

  .logo img {
    height: 32px;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  /* ===== HERO ===== */
  .hero {
    flex-direction: column;
    padding: 100px 20px 40px;
    height: auto;
    min-height: 100vh;
    text-align: center;
    background-position: top center;
  }

  .hero-text {
    width: 100%;
    margin-left: 0;
    z-index: 2;
  }

  .hero-text small {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .hero-text h1 {
    font-size: 38px;
    margin: 8px 0;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 15px;
    margin: 14px 0;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .buttons button {
    width: 100%;
    max-width: 280px;
    padding: 13px 20px;
    font-size: 15px;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    margin-top: 24px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* ===== FEATURES (cards abaixo do hero) ===== */
  .features {
    flex-direction: column;
    margin: 20px 15px 0;
    padding: 15px;
    gap: 10px;
    border-radius: 16px;
  }

  .feature {
    max-width: 100%;
    padding: 14px;
    gap: 12px;
  }

  .content h4 {
    font-size: 15px;
  }

  .content p {
    font-size: 13px;
  }

  /* ===== PERSONALIZADOS ===== */
  .personalizados {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    text-align: center;
  }

  .personalizados-img {
    width: 100%;
  }

  .personalizados-img img {
    width: 100%;
    border-radius: 16px;
  }

  .personalizados-content {
    width: 100%;
  }

  .personalizados-content small {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .personalizados-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .personalizados-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0 20px;
  }

  .actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-main,
  .btn-outline {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* ===== SHOP / SECTION TITLE ===== */
  .shop-container {
    padding: 20px 15px;
    gap: 20px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title small {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .section-title h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .section-title p {
    font-size: 14px;
  }

  /* ===== GRID DE PRODUTOS ===== */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* ===== CARD DE PRODUTO ===== */
  .product-card {
    padding: 12px;
    border-radius: 14px;
  }

  .product-card img {
    border-radius: 10px;
    margin-bottom: 8px;
    height: 140px;
    object-fit: cover;
    width: 100%;
  }

  .product-category {
    font-size: 11px;
  }

  .product-title {
    font-size: 13px;
    margin: 4px 0;
    line-height: 1.3;
  }

  .product-price {
    font-size: 14px;
  }

  .buy-btn {
    margin-top: 10px;
    padding: 9px;
    font-size: 13px;
    border-radius: 10px;
  }

  .favorite {
    font-size: 16px;
    top: 10px;
    right: 10px;
  }

  /* ===== CONTATO ===== */
  .contato {
    padding: 50px 20px;
  }

  .contato-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .contato-text small {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .contato-text h1 {
    font-size: 28px;
    line-height: 1.2;
    margin: 8px 0;
  }

  .contato-text p {
    font-size: 14px;
    max-width: 100%;
  }

  .contato-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .contato-actions .btn-main,
  .contato-actions .btn-outline {
    padding: 12px 18px;
    font-size: 14px;
    flex: 1;
    min-width: 130px;
    text-align: center;
  }
}

/* ===== TELAS MUITO PEQUENAS (abaixo de 400px) ===== */
/* ============================================================

/* ===== TELAS MUITO PEQUENAS (abaixo de 400px) ===== */
@media (max-width: 400px) {
 
  .hero-text h1 {
    font-size: 30px;
  }
 
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
 
  .product-card img {
    height: 110px;
  }
 
  .product-title {
    font-size: 12px;
  }
 
  .section-title h1 {
    font-size: 24px;
  }
 
  .contato-text h1 {
    font-size: 24px;
  }
 
  .personalizados-content h1 {
    font-size: 26px;
  }
}
 

  /* ============================================================ */

/* Evita que o browser recalcule layout nos cards ao fazer scroll */
.product-card {
  contain: layout style;
  will-change: transform; /* avisa o browser pra jogar na GPU */
}

/* Remove will-change em mobile (economiza memória) */
@media (max-width: 768px) {
  .product-card {
    will-change: auto;
  }

  /* Desativa hover animations no mobile — o browser não precisa processar */
  .product-card:hover,
  .buy-btn:hover,
  .btn-main:hover,
  .btn-outline:hover,
  .feature:hover {
    transform: none;
    box-shadow: inherit;
  }
}

/* Imagens não distorcem enquanto carregam */
.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* O GIF fica isolado na GPU — não trava o resto da página */
.personalizados-img img {
  will-change: auto;
  transform: translateZ(0); /* força layer própria */
  backface-visibility: hidden;
}

/* Hero background: desativa attachment fixed no mobile (causa lentidão grave) */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
  }
}

/* Scroll suave com aceleração de hardware */
html {
  -webkit-overflow-scrolling: touch;
}