﻿:root {
  --beige-100: #f7efe5;
  --beige-200: #ecd9c6;
  --beige-300: #dbc0a5;
  --sand-900: #5b4638;
  --sand-700: #7b6353;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--sand-900);
}

.hero {
  --split: 35%;
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: var(--split);
  top: -4%;
  height: 108%;
  pointer-events: none;
  z-index: 3;
}

/* Faixa vertical 1 */
.hero::before {
  width: 92px;
  background: linear-gradient(90deg, rgba(236, 217, 198, 0.96) 0%, rgba(247, 239, 229, 0.58) 100%);
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
  box-shadow: 10px 0 22px rgba(0, 0, 0, 0.08);
}

/* Faixa vertical 2 (mais para a direita, sobreposta) */
.hero::after {
  width: 136px;
  transform: translateX(1cm);
  background: linear-gradient(90deg, rgba(219, 192, 165, 0.84) 0%, rgba(247, 239, 229, 0.42) 100%);
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  box-shadow: 14px 0 26px rgba(0, 0, 0, 0.1);
}

.hero__content {
  position: relative;
  flex: 0 0 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 2.8vw, 3rem);
  background: linear-gradient(160deg, var(--beige-100) 0%, var(--beige-200) 52%, var(--beige-300) 100%);
  z-index: 2;
}

.content-wrap {
  width: min(100%, 26rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-logo {
  display: block;
  width: clamp(243px, 29.7vw, 432px);
  max-width: 100%;
  margin: 0 auto 1.15rem;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.42));
}

.brand-title {
  margin: 0;
  font-size: clamp(2rem, 2.75vw, 3.1rem);
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-align: center;
  color: #4f3d31;
}

.brand-subtitle {
  margin: 0.95rem 0 0;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.55;
  color: #6d5647;
  text-align: center;
}

.brand-instruction {
  margin: 1.15rem 0 1.35rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #735e4f;
  text-align: center;
}

.service-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.86rem;
  font-weight: 650;
  color: #5f4b3d;
  text-align: center;
}

.service-select {
  width: min(100%, 16.5rem);
  border: 1px solid rgba(91, 70, 56, 0.25);
  background-color: rgba(255, 255, 255, 0.9);
  color: #4f3d31;
  border-radius: 0.6rem;
  padding: 0.82rem 0.95rem;
  font-size: 0.95rem;
  text-align: center;
  text-align-last: center;
  outline: none;
  display: block;
  margin: 0 auto;
  box-shadow: 0 6px 14px rgba(91, 70, 56, 0.08);
}

.service-select option {
  text-align: center;
}

.service-select:focus {
  border-color: rgba(91, 70, 56, 0.55);
  box-shadow: 0 0 0 3px rgba(219, 192, 165, 0.28);
}

.hero__media {
  position: relative;
  flex: 0 0 65%;
  min-height: 100vh;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.brand-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--split);
  padding: 0.7rem 0.9rem;
  background: rgba(217, 192, 165, 0.9);
  color: #4f3d31;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  z-index: 6;
}

@media (max-width: 960px) {
  .hero {
    --split: 42%;
  }

  .hero__content {
    flex-basis: 42%;
  }

  .hero__media {
    flex-basis: 58%;
  }

  .hero::before {
    width: 76px;
  }

  .hero::after {
    width: 112px;
  }

}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: 100dvh;
  }

  .hero__media {
    order: 2;
    flex: 0 0 auto;
    min-height: 0;
    height: 44dvh;
  }

  .hero__content {
    order: 1;
    flex: 1;
    min-height: 56dvh;
    padding-top: 2.2rem;
    padding-bottom: 2.6rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__content::before,
  .hero__content::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
  }

  .hero__content::before {
    bottom: 0;
    height: 20px;
    background: linear-gradient(180deg, rgba(236, 217, 198, 0.95) 0%, rgba(247, 239, 229, 0.85) 100%);
    z-index: 3;
  }

  .hero__content::after {
    bottom: -14px;
    height: 30px;
    background: linear-gradient(180deg, rgba(219, 192, 165, 0.82) 0%, rgba(247, 239, 229, 0.2) 100%);
    z-index: 2;
  }

  .brand-footer {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }

}

@media (max-width: 420px) {
  .hero__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
