/* === Verti Refinado ===
Paleta clara e sofisticada
Fonts: The Seasons (titles), Montserrat (body)
*/

:root {
  --bg-1: #faf9f6;
  --bg-2: #646c49;
  --white: #ffffff;
  --accent: #cda450;
  --menu: #d2baa2;
  --text: #73846f;
  --max-width: 1000px;
  --radius: 10px;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
  transition: all 0.25s ease;
}

@font-face {
    font-family: 'The Seasons';
    src: url('../fonts/The Seasons Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'Montserrat', system-ui, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg-1);
  margin: 0;
  line-height: 1.7;
}

/* Container */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
}

/* === Header === */
.site-header {
  background: var(--bg-2);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow);
  position: relative; /*sticky;*/
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand .logo {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.brand .logo img {
  height: 48px;
  width: auto;
  vertical-align: middle;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--menu);
  font-weight: 600;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.social a {
  color: var(--menu);
  font-size: 1.4rem;
  margin-left: 0.8rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social a:hover {
  color: var(--accent);
  transform: scale(1.15);
}

/* === Hero === */
.hero {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--bg-1), var(--white)); /*var(--bg);*/
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-image img {
  width: 340px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.hero-content .site-title {
  font-family: 'The Seasons', serif;
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 1rem;
  /*text-align: center;*/
}

.hero-content .lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  position: relative;
  margin-bottom: 1.8rem;
}

.hero-content .lead p{
  margin: 0;
  line-height: 1.6;
}

.btn.btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn.btn-primary:hover {
  background-color: #5e6d59;
  transform: translateY(-2px);
}


/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* === Seções === */
section {
  padding: 4rem 0;
}

.ebook, .doshas {
  background: var(--white);
  margin: 2rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

h2 {
  font-family: 'The Seasons', Georgia, serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

/* === Forms === */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

input[type="text"], input[type="email"], textarea, select {
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 6px rgba(210, 186, 162, 0.4);
}

/* === Footer === */
.site-footer {
  background: var(--bg-2);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  font-size: 0.95rem;
  color: var(--accent);
}

.footer-inner {
  display: flex;
  /*flex-direction: column;*/
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.site-footer a {
  color: var(--menu);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: grayscale(20%) contrast(110%);
  transition: transform 0.2s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-info p {
  margin: 0;
  text-decoration: none;
  color: var(--menu);
  font-weight: 600;
  position: relative;
}

.footer-bottom {
  text-align: center;
  padding: 0.1rem 0 0.1rem;
  /*border-top: 1px solid rgba(0, 0, 0, 0.05);*/
  color: var(--menu);
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

/* === Responsivo === */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.6rem;
  }
  .brand .logo img {
    height: 36px; /* reduz em telas menores */
  }
  .site-title {
    font-size: 2.2rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .footer-info {
    text-align: center;
  }
  .footer-logo img {
    height: 42px;
  }
  section {
    padding: 3rem 1rem;
  }
}
