/* SOBRE */
.section--about {
  background: var(--color-bg-soft);
}

.section--about__content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section--about__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* POLÍTICA & COOKIES */
.politica {
  padding: 80px 0;
}

.politica .container {
  max-width: 900px;
}

.politica h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.politica h2 {
  font-size: 1.6rem;
  margin-top: 40px;
}

.politica h3 {
  font-size: 1.3rem;
  margin-top: 25px;
}

.politica p,
.politica li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* CONTATO */
.section--contact__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* LOJAS */
.lojas {
    background-color: var(--color-bg-soft);
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.loja-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;                 /* 🔥 */
    flex-direction: column;        /* 🔥 */
}

.loja-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.loja-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.loja-info {
    padding: 20px;
    flex: 1;                       /* 🔥 */
    display: flex;                 /* 🔥 */
    flex-direction: column;        /* 🔥 */
}

.loja-info h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--color-text);
}

.loja-info p {
    font-size: 14px;
    color: var(--color-text-soft);
    margin: 4px 0;
}

/* BOTÕES ALINHADOS */
.loja-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;              /* 🔥 */
}

.loja-actions .btn {
    flex: 1;
    text-align: center;
}

/* WHATSAPP */
.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}
