/* =========================================
   RESET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #5a4038;
  background: #fff9f6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* =========================================
   GERAL
========================================= */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 100px 0;
}


/* =========================================
   HEADER
========================================= */

header {
  width: 100%;
  background: #fff9f6;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #f3d9d5;
}

.header-container {
  width: 92%;
  max-width: 1300px;
  height: 120px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 110px;
  height: auto;
}

.brand-name h2 {
  font-family: "DM Serif Display", serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: #5a4038;
  letter-spacing: 0.5px;
}

.brand-name span {
  display: block;
  margin-top: 5px;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #c98b8b;

  position: relative;
  left: 30px;
  top: -5px;
}


/* =========================================
   NAVEGAÇÃO
========================================= */

nav ul {
  display: flex;
  align-items: center;
  gap: 45px;
}

nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #5a4038;
  transition: 0.3s;
}

nav a:hover {
  color: #c98b8b;
}


/* =========================================
   BOTÃO HEADER
========================================= */

.header-button,
.botao-header {
  background: #c98b8b;
  color: #fff;

  padding: 16px 38px;
  border-radius: 40px;

  font-size: 1rem;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(201, 139, 139, 0.25);
  transition: 0.3s;
}

.header-button:hover,
.botao-header:hover {
  background: #a96f70;
  transform: translateY(-3px);
}


/* =========================================
   HERO
========================================= */

.hero {
  padding-top: 70px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-texto {
  flex: 1;
}

.subtitulo {
  display: inline-block;
  color: #c98b8b;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.2;
  color: #5a4038;
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #80665d;
  margin-bottom: 35px;
}

.hero-botoes {
  display: flex;
  gap: 20px;
}


/* =========================================
   BOTÕES
========================================= */

.btn-principal {
  display: inline-block;

  background: #c98b8b;
  color: #fff;

  padding: 15px 35px;
  border-radius: 30px;

  font-weight: 500;
  transition: 0.3s;
}

.btn-principal:hover {
  background: #a96f70;
  transform: translateY(-3px);
}

.btn-secundario {
  display: inline-block;

  background: #c98b8b;
  border: 2px solid #c98b8b;
  color: #fff;

  padding: 13px 30px;
  border-radius: 30px;

  transition: 0.3s;
}

.btn-secundario:hover {
  background: #b87474;
  border-color: #b87474;
  color: #fff;
}


/* =========================================
   SELO
========================================= */

.selo {
  position: absolute;
  top: 40px;
  left: 20px;

  background: #fff;
  padding: 12px 20px;
  border-radius: 30px;

  color: #5a4038;
  font-size: 0.9rem;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(90, 64, 56, 0.12);
}

.selo i {
  color: #c98b8b;
  margin-right: 8px;
}


/* =========================================
   IMAGEM HERO
========================================= */

.hero-imagem {
  flex: 1;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-imagem::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  background: #f3d9d5;
  border-radius: 50%;

  z-index: -1;
}

.hero-imagem img {
  max-width: 520px;

  border-radius: 30px;
  border: 8px solid #fff;

  box-shadow: 0 25px 50px rgba(90, 64, 56, 0.18);
}


/* =========================================
   TÍTULOS
========================================= */

.titulo {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

.titulo span,
.sobre-texto > span {
  display: inline-block;

  color: #c98b8b;

  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 15px;
}

.titulo span::before,
.titulo span::after {
  content: "";

  display: inline-block;

  width: 45px;
  height: 2px;

  background: #c98b8b;

  vertical-align: middle;
  margin: 0 15px;
}

.titulo h2,
.sobre-texto h2 {
  font-family: "DM Serif Display", serif;

  font-size: 3rem;
  line-height: 1.2;

  color: #5a4038;

  margin: 15px 0 25px;
}

.titulo p {
  color: #80665d;
  font-size: 1.05rem;
  line-height: 1.8;
}


/* =========================================
   ESPECIALISTA
========================================= */

.especialista {
  padding: 100px 8%;
  background: #fffaf8;
}

.especialista-content {
  display: flex;
  align-items: center;

  gap: 60px;
  margin-top: 60px;
}

.especialista-img {
  flex: 1;
}

.especialista-img img {
  width: 100%;
  max-width: 450px;

  border-radius: 20px;

  object-fit: cover;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.especialista-info {
  flex: 1.2;
}

.especialista-info h3 {
  font-size: 2rem;
  color: #5d3b3b;
  margin-bottom: 10px;
}

.especialista-info span {
  display: block;

  color: #c98b8b;
  font-weight: 600;

  margin-bottom: 25px;
}

.especialista-info p {
  margin-bottom: 18px;

  line-height: 1.8;
  color: #555;
}

.especialista-info ul {
  margin-top: 30px;
  list-style: none;
}

.especialista-info ul li {
  margin-bottom: 15px;

  color: #555;
  font-weight: 500;
}


/* =========================================
   SERVIÇOS
========================================= */

.servicos {
  background: #fdf1ee;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;

  padding: 35px 30px;

  border-radius: 20px;
  border: 1px solid #f3d9d5;

  text-align: center;

  box-shadow: 0 10px 30px rgba(90, 64, 56, 0.06);

  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card i {
  font-size: 2.3rem;
  color: #c98b8b;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
  color: #5a4038;
}

.card p {
  color: #80665d;
  line-height: 1.7;
  font-size: 0.95rem;
}


/* =========================================
   SOBRE SARAH&CURA
========================================= */

.sobre-container {
  display: flex;
  align-items: center;
  gap: 70px;
}

.sobre-imagem {
  flex: 1;
}

.sobre-imagem img {
  width: 100%;

  border-radius: 40px;

  box-shadow: 0 15px 40px rgba(90, 64, 56, 0.12);
}

.sobre-texto {
  flex: 1;
}

.sobre-texto p {
  color: #80665d;

  line-height: 1.8;

  margin-bottom: 20px;
}

.sobre-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin: 30px 0;
}

.info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info i {
  color: #c98b8b;
  font-size: 1.2rem;
}

/* Espaço entre os dois botões da seção Sobre */

.sobre-texto .btn-principal {
  margin-right: 10px;
}


/* =========================================
   CONTATO
========================================= */

.contato {
  background: #fdf1ee;
}

.contato-box {
  background: #fff;

  border-radius: 30px;

  padding: 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;

  box-shadow: 0 20px 50px rgba(90, 64, 56, 0.08);
}

.contato-texto {
  flex: 1;
}

.contato-texto span {
  color: #c98b8b;
  font-weight: 600;
}

.contato-texto h2 {
  font-family: "DM Serif Display", serif;

  font-size: 2.5rem;
  line-height: 1.3;

  color: #5a4038;

  margin: 15px 0 20px;
}

.contato-texto p {
  color: #80665d;

  line-height: 1.8;

  margin-bottom: 30px;
}

.contato-info {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 25px;
}

.contato-item {
  display: flex;
  align-items: center;

  gap: 20px;
}

.contato-item i {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: #f3d9d5;

  color: #c98b8b;
  font-size: 1.3rem;

  border-radius: 50%;
}

.contato-item h3 {
  color: #5a4038;
  margin-bottom: 5px;
}

.contato-item p {
  color: #80665d;
  font-size: 0.95rem;
}


/* =========================================
   FOOTER
========================================= */

footer {
  background: #5a4038;
  color: #fff;
  padding-top: 70px;
}

.footer-container {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 60px;

  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-bottom: 20px;
}

.footer-logo img {
  width: 65px;
}

.footer-logo h2 {
  font-family: "DM Serif Display", serif;

  font-size: 2.2rem;

  color: #fff;
}

.footer-brand p {
  color: #e8d6d0;

  line-height: 1.8;

  max-width: 350px;
}

footer h3 {
  color: #f3d9d5;

  font-size: 1.1rem;

  margin-bottom: 25px;
}

.footer-links,
.footer-contato {
  display: flex;
  flex-direction: column;

  gap: 15px;
}

.footer-links a,
.footer-contato a {
  color: #e8d6d0;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contato a:hover {
  color: #c98b8b;
}

.footer-contato i {
  color: #c98b8b;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  text-align: center;

  padding: 25px 0;
}

.footer-bottom p {
  color: #d8c2bb;
  font-size: 0.9rem;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  nav {
    display: none;
  }

  .hero-container,
  .sobre-container,
  .especialista-content,
  .contato-box {
    flex-direction: column;
  }

  .hero {
    text-align: center;
  }

  .hero-botoes {
    justify-content: center;
    flex-wrap: wrap;
  }

  .especialista-content {
    text-align: center;
  }

  .especialista-img img {
    max-width: 380px;
    margin: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .sobre-texto {
    text-align: center;
  }

  .sobre-info {
    grid-template-columns: 1fr;
  }

  .contato-box {
    padding: 35px;
    text-align: center;
  }

  .contato-item {
    text-align: left;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-brand p {
    margin: auto;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

  /* ---------- GERAL ---------- */

  .container {
    width: 90%;
    max-width: 100%;
  }

  section {
    padding: 60px 0;
  }


  /* ---------- HEADER ---------- */

  .header-container {
    width: 92%;
    height: 90px;
    gap: 10px;
  }

  .brand {
    gap: 7px;
    min-width: 0;
  }

  .brand img {
    width: 72px;
    flex-shrink: 0;
  }

  .brand-name {
    min-width: 0;
  }

  .brand-name h2 {
    font-size: 1.75rem;
    white-space: nowrap;
    line-height: 1;
  }

  .brand-name span {
    font-size: 0.5rem;
    letter-spacing: 0.5px;

    left: 0;
    top: 0;

    margin-top: 0;

    white-space: nowrap;
  }

  .header-button {
  padding: 14px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  }


  /* ---------- HERO ---------- */

  .hero {
    padding-top: 45px;
  }

  .hero-container {
    gap: 45px;
  }

  .hero-texto {
    width: 100%;
  }

  .subtitulo {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;

    margin-bottom: 20px;
  }

  .hero p {
    font-size: 0.92rem;
    line-height: 1.7;

    margin-bottom: 28px;
  }

  .hero-botoes {
    flex-direction: column;

    width: 100%;

    gap: 15px;
  }

  .hero-botoes .btn-principal,
  .hero-botoes .btn-secundario {
    width: 100%;

    padding: 14px 20px;

    text-align: center;
  }


  /* ---------- IMAGEM HERO ---------- */

  .hero-imagem {
    width: 100%;
  }

  .hero-imagem::before {
    width: 280px;
    height: 280px;
  }

  .hero-imagem img {
    width: 100%;
    max-width: 100%;

    border-radius: 24px;
    border-width: 6px;
  }


  /* ---------- TÍTULOS ---------- */

  .titulo {
    margin-bottom: 45px;
  }

  .titulo span,
  .sobre-texto > span {
    font-size: 0.8rem;
  }

  .titulo span::before,
  .titulo span::after {
    width: 20px;
    margin: 0 8px;
  }

  .titulo h2,
  .sobre-texto h2 {
    font-size: 2rem;
  }

  .titulo p {
    font-size: 0.9rem;
  }


  /* ---------- ESPECIALISTA ---------- */

  .especialista {
    padding: 60px 0;
  }

  .especialista-content {
    gap: 35px;

    margin-top: 40px;
  }

  .especialista-img {
    width: 100%;
  }

  .especialista-img img {
    width: 100%;
    max-width: 380px;

    margin: auto;
  }

  .especialista-info h3 {
    font-size: 1.7rem;
  }

  .especialista-info p {
    font-size: 0.9rem;
    line-height: 1.7;
  }


  /* ---------- SERVIÇOS ---------- */

  .cards {
    gap: 20px;
  }

  .card {
    padding: 30px 22px;
  }


  /* ---------- SOBRE SARAH&CURA ---------- */

  .sobre-container {
    gap: 40px;
  }

  .sobre-imagem,
  .sobre-texto {
    width: 100%;
  }

  .sobre-imagem img {
    width: 100%;
    border-radius: 25px;
  }

  .sobre-texto p {
    font-size: 0.9rem;
  }

  .sobre-info {
    gap: 15px;
  }

  .info {
    justify-content: center;
  }

  /*
     IMPORTANTE:
     deixa os dois botões separados no mobile
  */

  .sobre-texto .btn-principal,
  .sobre-texto .btn-secundario {
    display: block;

    width: 100%;

    text-align: center;
  }

  .sobre-texto .btn-principal {
    margin-right: 0;
    margin-bottom: 20px;
  }


  /* ---------- CONTATO ---------- */

  .contato-box {
    padding: 30px 20px;
    gap: 40px;
  }

  .contato-texto h2 {
    font-size: 1.9rem;
  }

  .contato-texto p {
    font-size: 0.9rem;
  }


  /* ---------- FOOTER ---------- */

  .footer-container {
    gap: 40px;
  }
}


/* ==================================================
   CELULARES PEQUENOS
================================================== */

@media (max-width: 500px) {

  .header-container {
    width: 94%;
  }

  .brand img {
    width: 62px;
  }

  .brand-name h2 {
    font-size: 1.65rem;
  }

  .brand-name span {
    font-size: 0.5rem;
  }

  .header-button {
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .titulo h2,
  .sobre-texto h2 {
    font-size: 1.8rem;
  }

  .hero-imagem::before {
    width: 240px;
    height: 240px;
  }

  .contato-texto h2 {
    font-size: 1.8rem;
  }
}