/* =========================================================
VARIÁVEIS E RESET
========================================================= */
:root {
    --accent: #974D1F;
    --gap: 3rem;
    font-family: "Dosis", Sans-serif;
    --sic-orange: #e87c2a;     
    --sic-dark: #1f1f1f;
}

body {
    font-family: "Dosis", Sans-serif;
}

/* =========================================================
HEADER BOOTSTRAP + TEU ESTILO
========================================================= */

/* fundo e sombra como o original */
.navbar {
    background-color: #f5f5f5 !important;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    padding: 10px 50px;
    width: 100%;
    z-index: 1000;
}

/* logo */
.navbar-brand img {
    height: 60px;
    width: auto;
}

/* nav desktop */
.navbar-nav .nav-link {
    text-decoration: none;
    color: #464646 !important;
    font-weight: 500;
    position: relative;
    padding: 8px 12px !important;
    transition: color 0.3s;
    font-family: "Dosis", Sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

/* hover castanho */
.navbar-nav .nav-link:hover {
    color: #974d1f !important;
}

/* underline animation */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
}

/* hamburguer icon */
.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Preenche o ícone do hamburguer */
.navbar-toggler-icon {
    filter: invert(0.5);
}

/* =========================================================
CONTENT STYLE
========================================================= */

/* =========================================================
CONTENT STYLE
========================================================= */

main {
    padding: 4rem 0;
}

h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* GRID DE PRODUTOS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* CARD */
.product-card {
    border: 1px solid #ddd;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* IMAGEM */
.product-card img {
    width: 100%;
    max-width: 220px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

/* TEXTO */
.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.product-card p {
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
    line-height: 1.5;
}

/* BOTÃO */
.product-card a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid var(--accent);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.product-card a:hover {
    background-color: #fff;
    color: var(--accent);
    transform: translateY(-1px);
}

/* FOCUS (acessibilidade) */
.product-card a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* MOBILE */
@media (max-width: 576px) {
    .product-card img {
        height: 140px;
    }

    main {
        padding: 3rem 0;
    }
}

/* =========================================================
FOOTER / NEWSLETTER
========================================================= */
.newsletter-footer {
    background-color: #974d1f;
    color: #fff;
    padding: 60px 80px 20px;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

/* LEFT SIDE */
.newsletter-left h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.newsletter-left p {
    font-size: 16px;
    margin-bottom: 30px;
}

.newsletter-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.input-wrapper {
    position: relative;
    border-bottom: 1px solid #fff;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 40px 10px 0;
    font-size: 16px;
    color: #fff;
}

.input-wrapper .submit-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.input-wrapper .submit-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Checkbox e política */
.privacy-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff;
}

.privacy-check input {
    accent-color: #fff;
}

.privacy-check strong {
    color: #fff;
    font-weight: 700;
}

/* RIGHT SIDE */
.newsletter-right h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.newsletter-right ul {
    list-style: none;
    padding: 0;
}

.newsletter-right ul li {
    margin-bottom: 10px;
}

.newsletter-right ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: color 0.3s;
}

.newsletter-right ul li a:hover {
    color: #f2c49b;
}

/* BOTTOM LINE */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding-top: 15px;
    font-size: 13px;
}

.footer-bottom strong {
    font-weight: 700;
}
.sic-body{
  font-family: var(--sic-font);
  color: var(--sic-dark);
  background: #fafafa;
}

.sic-navbar{
  background: #fff;
  border-bottom: 1px solid var(--sic-border);
}

.btn-sic{
  background: var(--sic-orange);
  border-color: var(--sic-orange);
  color: #fff;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-weight: 600;
}
.btn-sic:hover{ filter: brightness(.95); color:#fff; }

.sic-card{
  background: #fff;
  border: 1px solid var(--sic-border);
  border-radius: var(--sic-radius);
  box-shadow: var(--sic-shadow);
}

.sic-title{
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.sic-lead{
  color: rgba(0,0,0,.65);
  margin-bottom: 0;
}

.sic-subtitle{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.sic-list{
  padding-left: 1.1rem;
  margin: 0;
}
.sic-list li{ margin: .25rem 0; }

.sic-divider{
  height: 1px;
  background: var(--sic-border);
}

.sic-back{
  text-decoration: none;
  color: rgba(0,0,0,.7);
  font-weight: 600;
}
.sic-back:hover{ color: var(--sic-orange); }

.sic-link{
  color: var(--sic-orange);
  text-decoration: none;
  font-weight: 700;
}
.sic-link:hover{ text-decoration: underline; }

.sic-main-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.sic-thumbs{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}

.sic-thumb{
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}
.sic-thumb img{
  width: 100%;
  height: 86px;
  object-fit: cover;
  display: block;
}
.sic-thumb.is-active{
  border-color: var(--sic-orange);
}

.sic-block-title{
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.sic-card-accent{
  background: var(--sic-orange);
  color: #fff;
  border-color: transparent;
}
.sic-card-accent .sic-block-title{ color:#fff; }
.sic-card-accent p{ color: rgba(255,255,255,.92); }

.sic-tabs .nav-link{
  font-weight: 700;
  color: rgba(0,0,0,.65);
}
.sic-tabs .nav-link.active{
  color: var(--sic-orange);
}
.sic-h4{
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .6rem;
}

.sic-related{
  background:#fff;
  border: 1px solid var(--sic-border);
  border-radius: var(--sic-radius);
  overflow: hidden;
  box-shadow: var(--sic-shadow);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  height: 100%;
}
.sic-related-img img{
  width: 120px;
  height: 120px;
  object-fit: cover;
  display:block;
}
.sic-related-body{
  padding: .9rem 1rem;
}
.sic-related-title{
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 .25rem;
}
.sic-related-text{
  margin: 0 0 .6rem;
  color: rgba(0,0,0,.65);
}

.sic-section-title{
  font-size: 1.3rem;
  font-weight: 900;
}

.sic-footer{
  background: #111;
  color: rgba(255,255,255,.88);
}
.sic-footer-title{
  font-weight: 900;
  margin-bottom: .75rem;
}
.sic-footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.sic-footer-links li{ margin: .35rem 0; }
.sic-footer-links a{
  color: rgba(255,255,255,.88);
  text-decoration: none;
}
.sic-footer-links a:hover{ color:#fff; text-decoration: underline; }

.sic-footer-form .form-label{ color: rgba(255,255,255,.9); }
.sic-footer-form .form-control{
  border-radius: 14px;
}
.sic-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sic-top{
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 800;
}
.sic-top:hover{ color:#fff; text-decoration: underline; }

/* Mega/hover dropdown */
.sic-mega .dropdown-menu{
  border-radius: 18px;
  border: 1px solid var(--sic-border);
  box-shadow: var(--sic-shadow);
  min-width: min(720px, 92vw);
}
.sic-mega-item{
  display:block;
  padding: .55rem .65rem;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(0,0,0,.78);
  font-weight: 700;
}
.sic-mega-item:hover{
  background: rgba(214,0,6,.08);
  color: var(--sic-orange);
}

/* Hover dropdown em desktop (clique continua a navegar) */
@media (min-width: 992px){
  .sic-hover-dropdown:hover > .dropdown-menu,
  .sic-mega:hover > .dropdown-menu{
    display: block;
  }
  .sic-hover-dropdown > .dropdown-menu{
    margin-top: .35rem;
    border-radius: 14px;
    box-shadow: var(--sic-shadow);
    border: 1px solid var(--sic-border);
  }
}

/* Modal */
.sic-modal{
  border-radius: 20px;
  border: 1px solid var(--sic-border);
}