/* ============== VARIÁVEIS ============== */
:root {
  --blue: hsl(195, 55%, 35%);
  --blue-light: hsl(195, 55%, 80%);
  --text: #1f2d2a;
  --bg: #f7faf9;
  --white: #ffffff;
}

/* ============== RESET ============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(to top, var(--blue-light), #ffffff 55%);
  padding-top: 80px;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

/* ================= HEADER ================= */

/* HEADER BASE */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: hsl(0, 0%, 100%);
  transition: background .3s ease, box-shadow .3s ease;
}

/* HEADER APÓS SCROLL */
.header.scrolled {
  background: hsla(195, 99%, 29%, 0);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* NAV */
.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: 42px;
  height: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #010101;
  transition: color .3s ease;
}

/* ============== HERO ============== */
.hero {
  min-height: 35vh;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.badge {
  background: rgba(0,0,0,.08);
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .85rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 1rem 0;
}

/* CARROSSEL */
.carousel {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 10px auto;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track img {
  width: 100%;
  height: auto;
  max-height: 650px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
  image-rendering: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .carousel-track img {
    max-height: 360px;          /* menor no mobile */
    aspect-ratio: 1 / 1;        /* mais quadrado */
    border-radius: 0 0 16px 16px;
  }
}


.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    transparent 50%
  );
  pointer-events: none;
}


.carousel-track {
  display: flex;
  transition: transform .4s ease;
}

/* SETAS */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .2s ease;
}

.carousel-arrow:hover {
  background: rgba(0,0,0,.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

/* ============== BOTÕES ============== */
.btn {
  padding: .8rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.primary {
  background: var(--blue);
  color: var(--white);
}

.full {
  width: 100%;
  text-align: center;
}

/* ============== SEÇÃO ============== */
.section {
  padding: 3rem 0;
}

/* ============== GRID ============== */
.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============== CONTEÚDO ============== */
.content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.content h3 {
  margin: 2rem 0 1rem;
}

.content p {
  line-height: 1.7;
}

.list {
  list-style: none;
  display: grid;
  gap: .6rem;
}

c
/* ============== CARD INFO ============== */
.card {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  height: fit-content;
}

.card h3 {
  margin-bottom: 1rem;
}



.info {
  list-style: none;
  display: grid;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
