/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #111;
}

/* VARIÁVEIS */
:root {
  --logo-width: 300px;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: var(--logo-width);
  height: auto;
  margin-top: 14px;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 100px;
  width: 300px;
}
.icon-btn {
  font-size: 1.2rem;
  text-decoration: none;
}

/* MAIN LOJA */
.loja-main {
  padding: 4rem 0;
}
.loja-inner {
  display: flex;
  gap: 2rem;
}


/* SECTION – Contato */
.contact-section {
  background: #f8f8fb;
  padding: 4rem 0;
}

.contact-inner {
  display: flex;
  align-items: stretch;
  gap: 3rem;
}

/* Texto da esquerda */
.contact-copy {
  flex: 1;
  padding: 1rem 0;
}

.contact-copy h1 {
  font-size: 3rem;
  line-height: 1.1;
  color: #111;
  letter-spacing: -0.5px;
}

.contact-copy h1 span {
  display: inline-block;
}

.contact-copy .sub {
  margin-top: 0.75rem;
  color: #555;
}

/* Cartão de e-mail */
.email-card {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.email-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f1f1f6;
  font-size: 1.1rem;
}

.email-text small {
  display: block;
  color: #666;
  line-height: 1;
  margin-bottom: 4px;
}

.email-text strong {
  color: #ff9900ea; /* acento suave combinando com o visual */
  font-weight: 700;
}

/* Card do formulário */
.contact-form-card {
  flex: 1;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
  margin-bottom: 1rem;
  color: #111;
}

/* Formulário */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  width: 100%;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: #111;
  background: #fafafa;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa0a6;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: #000000ea;
  box-shadow: 0 0 0 4px #000000ea;
}

/* Botão primário */
.btn-primary {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: #000000;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 6px 16px rgba(90,61,255,0.35); }

/* FOOTER NEWSLETTER */
.footer-newsletter {
  background: #111;
  color: #fff;
  padding: 2rem 0;
  margin-top: 4rem;
  border-radius: 8px;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-newsletter h3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 50px;
  width: 250px;
}

.newsletter-form button {
  padding: 0.6rem 1.5rem;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER MAIN */
.footer-main {
  background: #f5f5f5;
  padding: 4rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 140px;
  min-width: 140px;
}

.footer-col.about {
  flex: 2 1 280px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #555;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #ddd;
  background: #f5f5f5;
  padding: 1rem 0;
}

.bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #777;
}

.payments img {
  height: 60px;
  margin-left: 0.75rem;
}