:root{
  --cor_principal: #b91c6f;
  --cor_secundaria: #fde8f3;
  --cor_terciaria: #ffffff;
  --cor_neutra: #111827;
  --radius-lg: 1rem;
  --container-max: 1100px;
  --gap: 1rem;
  --shadow: 0 6px 18px rgba(0,0,0,0.08);
  --muted: #6b7280;
}

* { box-sizing: border-box; }
html,body { height:100%; overflow-x: hidden; }
body {
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--cor_neutra);
  -webkit-font-smoothing:antialiased;
  background: linear-gradient(180deg, #fff 0%, #fff 30%, var(--cor_secundaria) 100%);
  line-height:1.5;
  font-size:16px;
  overflow-x: hidden; 
}

.container {
  max-width: var(--container-max);
  width: 80%;            
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

#site_header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0.9rem 1rem;
  background:var(--cor_terciaria);
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(0,0,0,0.04);
}

#logo { display:flex; align-items:center; gap:0.75rem; }
#ftlogo { width:44px; height:auto; display:block; }
#startheader { font-family:"Playfair Display", serif; font-weight:700; font-size:1.15rem; margin:0; color:var(--cor_principal); }

#linhadenav {
  display:flex;
  gap:1rem;
  align-items:center;
}

#menuhamburguer{
  display:inline-grid;
  grid-template-rows:repeat(3,3px);
  gap:5px;
  width:36px;
  height:36px;
  padding:6px;
  background:transparent;
  border:0;
  cursor:pointer;
  z-index: 100;
}

#menuhamburguer span { 
  background:var(--cor_neutra); display:block; border-radius:3px; height:3px; 
}

#linhadenav a { text-decoration:none; color:var(--cor_neutra); display:inline-flex; align-items:center; }
#linhadenav h2 { margin:0; font-size:0.95rem; font-weight:600; letter-spacing:0.2px; }
.laranja { background:var(--cor_principal); color:#fff; padding:0.3rem 0.6rem; border-radius:0.5rem; }

#banner_home {
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  padding:2.25rem 0;
  align-items:center;
  text-align:center;
}

.banner_content { 
  max-width: 44rem; 
}
#hero_title { 
  font-family: "Playfair Display", serif; font-size:1.75rem; margin:0 0 0.5rem 0; color:var(--cor_neutra); 
}

.banner_content p { 
  margin:0 0 1rem 0; color:var(--muted); 
}

.banner_image img {
  width:100%;
  max-width:520px;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  display:block;
  margin:0 auto;
}

.btn_primary, .btn_outline {
  display:inline-block;
  padding:0.65rem 1rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  transition:transform .18s ease, box-shadow .18s ease;
}

.btn_primary { 
  background:var(--cor_principal); color:#fff; border:2px solid var(--cor_principal); 
}

.btn_primary:hover { 
  transform:translateY(-4px); box-shadow:0 10px 30px rgba(185,28,111,0.12); 
}
.btn_outline { 
  background:transparent; color:var(--cor_principal); border:2px solid var(--cor_principal); 
}

.btn_outline:hover{ transform:translateY(-4px); }

#categorias { 
  padding:1.25rem 0 0; 
}

.categories_grid {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  scroll-behavior: smooth;
  max-width: 100%;
  box-sizing: border-box;
}

.categoria_card{
  min-width: 11rem;
  flex: 0 0 auto;
  border-radius:0.75rem;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  text-align:center;
  padding:0.5rem;
}

.categoria_card img { 
  width:100%; height:8.5rem; object-fit:cover; border-radius:0.5rem; 
}

#colecao { padding:1.5rem 0; }
.section_header { text-align:center; margin-bottom:1rem; color:var(--muted); }
.grid_cards {
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:1rem;
}

.card_roupa {
  background:#fff;
  border-radius:0.85rem;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.card_imgwrap img { width:100%; height:280px; object-fit:cover; display:block; }
.card_body { padding:0.9rem; display:flex; flex-direction:column; gap:0.5rem; }
.card_body h3 { margin:0; font-size:1.05rem; }
.card_body .desc { color:var(--muted); margin:0; font-size:0.95rem; }
.card_body .preco { color:var(--cor_principal); font-weight:700; margin:0; }
.card_actions { display:flex; gap:0.5rem; margin-top:0.5rem; }

.btn_primary.small, .btn_outline.small { padding:0.45rem 0.7rem; font-size:0.9rem; border-radius:0.6rem; }

.see_more_wrap { text-align:center; margin-top:1rem; }

#sobre { padding:1.5rem 0; }
.about_grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 1rem;
}

.about_text {
  max-width: 42rem;
}

.about_img img { 
  width:100%; 
  max-width:420px; 
  border-radius:var(--radius-lg); 
  box-shadow:var(--shadow); 
}
.about_text { max-width:42rem; text-align:center; }
.valores_list { list-style:none; padding:0; margin:0.8rem 0 1rem 0; color:var(--muted); }
.valores_list li { margin-bottom:0.5rem; }

#newsletter_home { padding:1.3rem 0; text-align:center; }
.newsletter_form { 
  display:flex; 
  gap:0.5rem; 
  justify-content:center; 
  margin-top:0.6rem; 
  flex-wrap: wrap;
}
.newsletter_form input { 
  padding:0.7rem 0.9rem; 
  border-radius:999px; 
  border:1px solid rgba(0,0,0,0.06); 
  width:60%; 
  max-width:360px; 
  flex-grow: 1;
}

.newsletter_form button { 
  border-radius:999px; 
  padding:0.68rem 1rem; 
  border:0; 
  background:var(--cor_principal); 
  color:#fff; 
  flex-shrink: 0;
  min-width: 130px;
}

#contato { padding:1.5rem 0; }
.contato_grid { 
  display:flex; 
  flex-direction:column; 
  gap:1rem; 
  align-items: center;  
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.contato_info { 
  background:#fff; 
  padding:1rem; 
  border-radius:0.8rem; 
  box-shadow:var(--shadow); 
  width: 100%;
  text-align: center;
}

.contato_form { 
  display:flex; 
  flex-direction:column; 
  gap:0.6rem; 
  background:#fff; 
  padding:1rem; 
  border-radius:0.8rem; 
  box-shadow:var(--shadow); 
}

.contato_form input, .contato_form textarea {
  padding:0.7rem;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:0.5rem;
  resize:vertical;
}

.contato_form label { font-size:0.9rem; color:var(--muted); }
.contato_form button { border:0; padding:0.8rem; border-radius:0.6rem; background:var(--cor_principal); color:#fff; margin-top:0.3rem; }

#site_footer {
  background: var(--cor_principal);
  color: white;
  padding: 2rem 1rem 1.5rem 1rem;
  font-size: 0.9rem;
  box-shadow: inset 0 4px 6px rgba(0,0,0,0.15);
}

.colunasrodape {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: var(--container-max);
  width: 80%;
  margin: 0 auto;
  padding: 0 1rem;
}

.coluna {
  text-align: center;
}

.coluna h3 {
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1.15rem;
}

.coluna p, .coluna a {
  color: white;
  text-decoration: none;
  line-height: 1.4;
  font-weight: 400;
}

.coluna a:hover {
  text-decoration: underline;
}

.colunasrodape a {
  display: inline-block;
  margin: 0.15rem 0;
}

#direitos {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255 255 255 / 0.2);
  padding-top: 1rem;
}

/* MEDIA QUERIES */

/* Mobile */
@media (max-width: 699px) {
  .container {
    width: 90%;
  }
  #linhadenav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    right: 0;
    background: var(--cor_terciaria);
    width: 200px;
    padding: 1rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    border-radius: 0 0 0 10px;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 99;
  }
  #linhadenav.open {
    display: flex;
    transform: translateX(0);
  }
  #linhadenav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 1.1rem;
  }

  .categories_grid {
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 1rem;
  }
}

@media (min-width: 700px) {
  .container {
    width: 80%;
  }
  #menuhamburguer {
    display: none;
  }
  #linhadenav {
    display: flex !important;
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
    transform: none;
  }
  #linhadenav a {
    border: none;
    padding: 0;
    margin-left: 1rem;
    font-size: 0.95rem;
  }

  #banner_home { 
    flex-direction: row; 
    align-items: center; 
    text-align: left; 
    padding: 2.5rem 2rem; 
    gap: 2rem;
  }
  .banner_content { flex: 1; margin-bottom: 0; }
  .banner_image { flex: 1; }

  .categories_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
  }
  .categoria_card {
    min-width: auto;
    flex: none;
  }

  .grid_cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about_grid {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .about_text {
    max-width: 50%;
  }

  .newsletter_form {
    flex-wrap: nowrap;
    justify-content: center;
  }
  .newsletter_form input {
    width: auto;
    flex: 1 1 320px;
  }
  .newsletter_form button {
    width: auto;
    flex-shrink: 0;
  }

  .contato_grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    max-width: none;
    margin: 0;
    align-items: center;
    text-align: center;
  }
  .contato_info {
    max-width: 420px;
    width: 100%;
  }

  .colunasrodape {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 0 2rem;
  }
  .coluna {
    text-align: left;
  }

  #startheader {
    font-size: 1.3rem;
  }
  #hero_title {
    font-size: 2.25rem;
  }
}

/* Desktop grande */
@media (min-width: 1024px) {
  .grid_cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .container {
    padding: 0 2rem;
  }
  .card_imgwrap img {
    height: 340px;
  }
  #startheader {
    font-size: 1.4rem;
  }
  #hero_title {
    font-size: 2.5rem;
  }
}

.card_roupa:hover { 
  transform: translateY(-6px); 
  transition: transform .22s cubic-bezier(.2,.9,.2,1); 
}

.carousel_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;

  max-width: 100%;     
  overflow-y: hidden; 
}

.carousel_container {
  display: flex;
  gap: 1rem;
  scroll-snap-align: start;

  max-width: 100%;      
  box-sizing: border-box;
}


.carousel_container .card_roupa {
  min-width: 240px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.card_roupa {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin: 0 auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card_roupa:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.card_imgwrap {
  background: #f8f8f8;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card_body {
  padding: 1rem;
  text-align: center;
}

.card_body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.4rem 0;
}

.card_body .desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.carousel_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;

  display: flex;
  justify-content: center;
}

/* --- Página Coleção - Grid e Cards --- */
.grid_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: stretch;
}

.card_roupa {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  max-width: 320px;
}

.card_roupa:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.card_imgwrap {
  height: 300px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card_body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.card_body h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cor_neutra);
}

.card_body .desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
