/* ===== BASE ===== */
*{box-sizing:border-box}
body{
  margin:0;padding:0;
  font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  line-height:1.6;color:#333;
  background:linear-gradient(135deg,#f8d7da 0%,#f5c6cb 100%);
  min-height:100%;
}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* ===== HEADER (compactado) ===== */
header{
  background:rgba(248,215,218,.95);
  backdrop-filter:blur(10px);
  box-shadow:0 2px 15px rgba(214,51,132,.15);
  position:sticky;top:0;z-index:1000;
  padding:.35rem 0;
}
.header-content{
  display:flex;justify-content:space-between;align-items:center;
  padding:.25rem 0;
}

/* LOGO link (sem quadrado/outline) */
.logo-section a{
  display:inline-block;
  text-decoration:none;
  outline:none;border:none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.logo-section a:focus,
.logo-section a:active{outline:none;box-shadow:none}

.logo-img{
  height:120px;width:auto;border:none;background:none;cursor:pointer;
  transition:transform .3s ease, box-shadow .3s ease;
}
.logo-img:hover{transform:scale(1.08);box-shadow:0 4px 20px rgba(0,0,0,.2)}
.logo-img:active{transform:scale(1.02);box-shadow:0 2px 10px rgba(0,0,0,.15)}

/* ===== NAV TABS ===== */
.nav-tabs{
  display:flex;gap:0;background:rgba(255,255,255,.9);
  border-radius:50px;padding:4px 6px;
  box-shadow:0 3px 10px rgba(214,51,132,.15)
}
.nav-tab{
  padding:8px 16px;background:transparent;border:none;border-radius:25px;
  cursor:pointer;font-weight:600;color:#666;transition:.3s;font-size:.9rem
}
.nav-tab.active{background:#d63384;color:#fff;box-shadow:0 4px 15px rgba(214,51,132,.3)}
.nav-tab:hover:not(.active){background:#f8d7da;color:#d63384}

/* ===== CONTEÚDO ===== */
main{padding:2rem 0}
.tab-content{
  display:none;background:rgba(255,255,255,.95);border-radius:20px;padding:2rem;
  box-shadow:0 10px 30px rgba(214,51,132,.15);margin-top:2rem;animation:fade .5s ease-in
}
.tab-content.active{display:block}
@keyframes fade{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}

.hero{
  text-align:center;padding:3rem 0;
  background:linear-gradient(135deg,#d63384,#c2185b);
  color:#fff;border-radius:20px;margin-bottom:2rem
}
.hero h1{font-size:3rem;margin-bottom:1rem;text-shadow:2px 2px 4px rgba(0,0,0,.3)}
.hero p{font-size:1.3rem;margin-bottom:2rem;opacity:.9}
.cta-button{
  background:#fff;color:#d63384;padding:15px 30px;border:none;border-radius:50px;
  font-size:1.1rem;font-weight:bold;cursor:pointer;transition:.3s;box-shadow:0 4px 15px rgba(0,0,0,.2)
}
.cta-button:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.3);background:#f8d7da}

/* ===== CARROSSEL ===== */
.carousel-container{
  position:relative;margin:2rem 0;border-radius:15px;
  overflow:hidden;box-shadow:0 8px 25px rgba(0,0,0,.15)
}
.carousel{display:flex;transition:transform .5s ease}
.carousel-item{
  min-width:100%;height:300px;display:flex;align-items:center;justify-content:center;
  font-size:1.35rem;color:#fff;position:relative;background-size:cover;background-position:center
}
.carousel-item::after{content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.25))}
.carousel-item>div{position:relative;z-index:1;font-weight:800;text-shadow:0 2px 8px rgba(0,0,0,.35)}
.carousel-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,.9);border:none;width:50px;height:50px;border-radius:50%;
  cursor:pointer;font-size:1.5rem;color:#d63384;transition:.3s;box-shadow:0 4px 15px rgba(0,0,0,.1)
}
.carousel-nav:hover{background:#fff;transform:translateY(-50%) scale(1.1)}
.carousel-prev{left:20px}.carousel-next{right:20px}
.carousel-indicators{display:flex;justify-content:center;gap:10px;margin-top:1rem}
.indicator{width:12px;height:12px;border-radius:50%;background:#ddd;cursor:pointer;transition:.3s}
.indicator.active{background:#d63384;transform:scale(1.2)}

/* ===== PRODUTOS ===== */
.product-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;margin:2rem 0
}
.product-card{
  background:#fff;border-radius:15px;padding:1.5rem;
  box-shadow:0 5px 20px rgba(0,0,0,.1);
  transition:.3s;border:2px solid transparent
}
.product-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,.15);border-color:#e74c3c}
.product-image{
  width:100%;height:200px;border-radius:10px;margin-bottom:1rem;position:relative;overflow:hidden;
  background-size:cover;background-position:center;color:#fff;font-weight:700;
  display:flex;align-items:center;justify-content:center;text-shadow:0 2px 6px rgba(0,0,0,.5)
}
.product-image::after{content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,.08),rgba(0,0,0,.25))}
.product-title{font-size:1.3rem;font-weight:bold;color:#2c3e50;margin-bottom:.5rem}
.product-description{color:#666;font-size:.95rem}

/* ===== CONTATO ===== */
.contact-info{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;margin:2rem 0
}
.contact-card{
  background:linear-gradient(135deg,#d63384,#c2185b);
  color:#fff;padding:2rem;border-radius:15px;text-align:center;
  box-shadow:0 8px 25px rgba(214,51,132,.25)
}
.contact-icon{font-size:3rem;margin-bottom:1rem}
.contact-title{font-size:1.3rem;font-weight:bold;margin-bottom:.5rem}
.contact-details{font-size:1.1rem;opacity:.9}

/* ===== FOOTER (compactado) ===== */
footer{
  background:#d63384;color:#fff;text-align:center;
  padding:1rem 0;margin-top:3rem;font-size:.9rem
}
.footer-content{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem
}
.footer-link{color:#ffe6ef;text-decoration:none}
.footer-link:hover{color:#fff}

/* ===== RESPONSIVO ===== */
@media (max-width:768px){
  .header-content{flex-direction:column;gap:.5rem}
  .nav-tabs{flex-wrap:wrap;justify-content:center;padding:4px}
  .nav-tab{padding:7px 12px;font-size:.85rem}
  .logo-img{height:200px}
  .hero h1{font-size:2rem}
  .hero p{font-size:1.1rem}
  .section-title{font-size:2rem}
  .footer-content{flex-direction:column;text-align:center}
}
@media (max-width:480px){
  .logo-img{height:200px}
  .nav-tab{font-size:.8rem;padding:6px 10px}
}
