/* ============================================
   Dra. Patricia Fietz — Site Pessoal
   CSS — Mobile-first + Responsive
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Cores base da marca */
  --azul-profundo: #115367;
  --oliva: #AFA57B;
  --bege-claro: #ffffff;
  --cinza-azulado: #46525E;

  /* Cores do site pessoal */
  --bg-principal: #ffffff;
  --bg-secundario: #afa57b;
  --texto-principal: #46525E;
  --texto-secundario: #7A8490;
  --accent: #115367;
  --accent-hover: #0D4252;
  --accent-gold: #AFA57B;
  --accent-gold-hover: #9A9068;
  --border-sutil: rgba(70,82,94,0.15);

  /* Tipografia */
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Poppins', sans-serif;

  /* Espacamento */
  --section-padding: 5rem 0;
  --container-max: 1140px;
  --navbar-height: 72px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--texto-principal);
  background-color: var(--bg-principal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--texto-principal);
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--texto-principal);
}

.section-subtitle {
  text-align: center;
  color: var(--texto-secundario);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background-color: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
  font-weight: 700;
}

.btn--gold:hover {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Animations (Reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay {
  transition-delay: 0.2s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  height: var(--navbar-height);
}

.navbar--scrolled {
  background-color: rgba(247, 244, 238, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--texto-principal);
  flex-shrink: 0;
}

.navbar__nav {
  display: none;
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto-secundario);
  position: relative;
  padding: 0.25rem 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.navbar__link:hover {
  color: var(--accent);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}

.navbar__link--active {
  color: var(--accent);
}


.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.navbar__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--texto-principal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger → X animation */
.navbar__toggle.active .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu open */
.navbar__nav.active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-principal);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.navbar__nav.active .navbar__list {
  flex-direction: column;
  gap: 2rem;
}

.navbar__nav.active .navbar__link {
  font-size: 1.25rem;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding-top: calc(var(--navbar-height) + 2rem);
  padding-bottom: 4rem;
  background-color: var(--bg-principal);
}

.hero__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
}

.hero__content {
  text-align: center;
}

.hero__title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: var(--texto-principal);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--texto-secundario);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hero__image {
  width: 100%;
  max-width: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.hero__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-principal), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero__photo {
  width: 100%;
  display: block;
  object-fit: cover;
  margin-top: -20%;
  margin-bottom: -5%;
}

.hero__photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 500px;
  background: linear-gradient(135deg, var(--bg-secundario) 0%, var(--border-sutil) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--texto-secundario);
  position: relative;
  overflow: hidden;
}

.hero__photo-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-principal), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero__photo-placeholder svg {
  opacity: 0.4;
  position: relative;
  z-index: 2;
}

.hero__photo-placeholder span {
  font-size: 0.85rem;
  opacity: 0.5;
  position: relative;
  z-index: 2;
}

/* ========================================
   SOBRE
   ======================================== */
.sobre {
  padding: var(--section-padding);
  background-color: var(--bg-secundario);
}

.sobre .section-title {
  text-align: left;
}

.sobre__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.sobre__photo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.sobre__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.sobre__photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: linear-gradient(135deg, var(--border-sutil) 0%, #d4cfc2 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--texto-secundario);
}

.sobre__photo-placeholder svg {
  opacity: 0.35;
}

.sobre__photo-placeholder span {
  font-size: 0.85rem;
  opacity: 0.45;
}

.sobre__text p {
  color: var(--texto-secundario);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.85;
}

.sobre__text p:last-child {
  margin-bottom: 0;
}

.sobre__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

.stat-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-sutil);
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-card__label {
  font-size: 0.9rem;
  color: var(--texto-secundario);
  font-weight: 500;
}

/* ========================================
   CURRICULO / TRAJETORIA — Minimal
   ======================================== */
.curriculo {
  padding: var(--section-padding);
  background-color: var(--bg-principal);
}

.traj__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 900px;
  margin: 2rem auto 0;
}

.traj__item {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-sutil);
}

.traj__item:last-child {
  border-bottom: none;
}

.traj__year {
  flex-shrink: 0;
  width: 3.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
}

.traj__text {
  flex: 1;
  min-width: 0;
}

.traj__title,
.traj__title * {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--texto-principal) !important;
  margin-bottom: 0.1rem;
}

.traj__desc,
.traj__desc * {
  font-size: 0.8rem;
  color: var(--texto-secundario) !important;
  line-height: 1.45;
}

/* Photo strip */
.traj__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.traj__photo-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-secundario) 0%, var(--border-sutil) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-secundario);
}

.traj__photo-placeholder svg {
  opacity: 0.25;
}

/* ========================================
   PRODUTOS
   ======================================== */
.produtos {
  padding: var(--section-padding);
  background-color: var(--bg-secundario);
}

.produtos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.produto-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-sutil);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.produto-card__photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--bg-secundario) 0%, var(--border-sutil) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-secundario);
  flex-shrink: 0;
  overflow: hidden;
}

.produto-card__photo svg {
  opacity: 0.3;
}

.produto-card__photo span {
  font-size: 0.8rem;
  opacity: 0.4;
  margin-left: 0.5rem;
}

.produto-card__body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.produto-card--destaque {
  border-color: var(--accent);
  border-width: 2px;
}

.produto-card--destaque .produto-card__photo {
  background: linear-gradient(135deg, rgba(17, 83, 103, 0.06) 0%, var(--border-sutil) 100%);
}

.produto-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: rgba(17, 83, 103, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.produto-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.produto-card__tag--plataforma {
  background-color: rgba(17, 83, 103, 0.1);
  color: var(--accent);
}

.produto-card__tag--template {
  background-color: rgba(175, 165, 123, 0.2);
  color: #7A7250;
}

.produto-card__tag--pdf {
  background-color: rgba(226, 222, 204, 0.6);
  color: #7A7250;
}

.produto-card__tag--curso {
  background-color: rgba(175, 165, 123, 0.15);
  color: #7A7250;
}

.produto-card__tag--planilha {
  background-color: rgba(17, 83, 103, 0.08);
  color: var(--accent);
}

.produto-card__tag--mentoria {
  background-color: rgba(70, 82, 94, 0.1);
  color: var(--cinza-azulado);
}

.produto-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--texto-principal);
}

.produto-card__desc {
  font-size: 0.9rem;
  color: var(--texto-secundario);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.produto-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background-color: var(--accent-gold);
  color: #fff;
}

.produto-card__btn {
  align-self: flex-start;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos {
  padding: var(--section-padding);
  background-color: var(--bg-principal);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Horizontal scroll on mobile */
@media (max-width: 767px) {
  .depoimentos__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .depoimento-card {
    min-width: 85vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

.depoimento-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-sutil);
}

.depoimento-card__quote {
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 0.75rem;
}

.depoimento-card__text {
  font-size: 0.95rem;
  color: var(--texto-secundario);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.depoimento-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.depoimento-card__name {
  display: block;
  font-size: 0.9rem;
  color: var(--texto-principal);
}

.depoimento-card__role {
  display: block;
  font-size: 0.8rem;
  color: var(--texto-secundario);
}

.depoimentos__badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.badge-social {
  text-align: center;
  padding: 1rem 2rem;
  background-color: var(--bg-secundario);
  border-radius: var(--radius-md);
}

.badge-social__number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

.badge-social__label {
  font-size: 0.85rem;
  color: var(--texto-secundario);
}

/* ========================================
   CONTATO
   ======================================== */
.contato {
  padding: var(--section-padding);
  background-color: var(--bg-secundario);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contato-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background-color: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-sutil);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contato-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(17, 83, 103, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contato-card__label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texto-principal);
}

.contato-card__info {
  font-size: 0.85rem;
  color: var(--texto-secundario);
}

.contato__photo {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contato__photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--border-sutil) 0%, #d4cfc2 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--texto-secundario);
}

.contato__photo-placeholder svg {
  opacity: 0.35;
}

.contato__photo-placeholder span {
  font-size: 0.85rem;
  opacity: 0.45;
}

.contato__cta {
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--cinza-azulado);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.footer__tagline {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.footer__company {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 0.15rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer__social-link:hover {
  background-color: var(--accent);
  color: #fff;
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ========================================
   RESPONSIVE — Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  /* Navbar */
  .navbar__toggle {
    display: none;
  }

  .navbar__nav {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--navbar-height) + 4rem);
    padding-bottom: 5rem;
  }

  .hero__inner {
    flex-direction: row;
    gap: 3rem;
  }

  .hero__content {
    text-align: left;
    flex: 1;
  }

  .hero__title {
    font-size: 2.75rem;
  }

  .hero__description {
    margin: 0 0 2rem;
  }

  .hero__buttons {
    flex-direction: row;
  }

  .hero__image {
    flex-shrink: 0;
    width: 384px;
  }

  /* Sobre */
  .sobre__row {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  .sobre__photo {
    flex-shrink: 0;
    width: 280px;
    max-width: 280px;
    margin: 0;
  }

  .sobre__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Trajetória — 2 colunas */
  .traj__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }

  .traj__item {
    border-bottom: 1px solid var(--border-sutil);
  }

  /* Produtos — horizontal layout */
  .produto-card {
    flex-direction: row;
  }

  .produto-card__photo {
    width: 280px;
    min-width: 280px;
    aspect-ratio: auto;
    align-self: stretch;
  }

  /* Depoimentos */
  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contato */
  .contato__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   RESPONSIVE — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  :root {
    --section-padding: 6rem 0;
  }

  .hero__title {
    font-size: 3.25rem;
  }

  .hero__image {
    width: 456px;
  }

  /* Produtos — horizontal com foto maior */
  .produto-card__photo {
    width: 340px;
    min-width: 340px;
  }

  .sobre__row {
    gap: 4rem;
  }

  .sobre__photo {
    width: 320px;
    max-width: 320px;
  }

  /* Depoimentos — 4 colunas */
  .depoimentos__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Contato — 4 colunas */
  .contato__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   RESPONSIVE — Large Desktop (1200px+)
   ======================================== */
@media (min-width: 1200px) {
  .hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
  }

  .hero__inner {
    gap: 5rem;
  }
}

/* ========================================
   MODO DE EDICAO
   ======================================== */

/* Botao flutuante (lapis) */
.edit-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--cinza-azulado);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 9998;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}

.edit-fab:hover {
  background-color: var(--accent);
  transform: scale(1.1);
  opacity: 1;
}

.edit-fab--hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
}

/* Barra de controle */
.edit-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--cinza-azulado);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  flex-wrap: wrap;
}

.edit-bar--visible {
  transform: translateY(0);
}

.edit-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
  margin-right: auto;
}

.edit-bar__btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.edit-bar__btn:hover {
  opacity: 0.85;
}

.edit-bar__btn--save {
  background-color: var(--accent-gold);
  color: #fff;
}

.edit-bar__btn--reset {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.edit-bar__btn--close {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* Destaque visual nos elementos editaveis */
.edit-mode [contenteditable="true"] {
  background-color: rgba(175, 165, 123, 0.06);
  border-radius: 3px;
  cursor: text;
  min-height: 1em;
  transition: background-color 0.2s ease;
}

.edit-mode [contenteditable="true"]:focus {
  background-color: rgba(17, 83, 103, 0.08);
}

.edit-mode [contenteditable="true"]:hover {
  background-color: rgba(175, 165, 123, 0.12);
}

/* Toast de feedback */
.edit-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: var(--cinza-azulado);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10000;
  white-space: nowrap;
}

.edit-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
