/* Francine Ramos Contadora — estilo do site */

:root {
  --wine: #9A3B3B;
  --gold: #C8A46A;
  --ink: #272727;
  --cream: #FAF4F4;
  --beige: #DCCDBA;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
}

a { color: var(--wine); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--beige);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header img.logo {
  height: 44px;
  width: auto;
}

.site-header .brand {
  font-size: 20px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}

nav.main-nav a:hover { color: var(--wine); text-decoration: none; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 15px;
}

.btn:hover { background: #b8925a; text-decoration: none; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--wine);
  color: var(--wine);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 40px;
  font-size: 15px;
}

.btn-outline:hover { background: var(--wine); color: var(--cream); text-decoration: none; }

/* Hero */
.hero {
  padding: 64px 0 80px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.hero-text { flex: 1 1 420px; }
.hero-photo { flex: 1 1 380px; }

.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-text .eyebrow {
  color: var(--wine);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 480px;
}

/* Sections */
section { padding: 56px 0; }

section.beige { background: var(--beige); }

section h2 {
  font-size: 30px;
  margin-bottom: 32px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 12px;
  padding: 28px 24px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--wine);
}

.service-card p { font-size: 15px; }

.cta-section {
  text-align: center;
  padding: 72px 0;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 17px; margin-bottom: 28px; }

/* Sobre page */
.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-content p {
  font-size: 17px;
  margin-bottom: 20px;
}

.about-content .crc {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 32px;
}

/* Blog listing */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.post-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 12px;
  padding: 24px;
}

.post-card .tag {
  display: inline-block;
  background: var(--beige);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.post-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.35; }
.post-card p { font-size: 14px; color: #555; }

.blog-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 17px;
}

/* Contato page */
.contact-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-box p { font-size: 17px; margin-bottom: 28px; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 0;
  margin-top: 40px;
}

footer.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer.site-footer a { color: var(--cream); }
footer.site-footer .footer-links { display: flex; gap: 20px; }
footer.site-footer p { font-size: 14px; opacity: 0.85; }

/* Mobile nav toggle */
.nav-toggle { display: none; }

@media (max-width: 720px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: inline-block; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--ink); }
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--beige);
    padding: 20px 24px;
  }
  nav.main-nav.open ul { flex-direction: column; gap: 18px; }
  .hero .container { flex-direction: column-reverse; }
  .hero-text h1 { font-size: 32px; }
  footer.site-footer .container { flex-direction: column; text-align: center; }
}
