* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #333;
  font-family: 'Nunito', sans-serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 35px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #ddd;
  border-radius: 40px;
  padding: 8px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-box span {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  padding: 0 10px;
}

.search-box span:not(:last-child) {
  border-right: 1px solid #ddd;
}

.search-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.01);
}

.btn-search {
  background: #ff385c;
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search img {
  height: 14px;
  filter: invert(1);
}

.btn-search:hover {
  background: #e11d48;
  transform: scale(1.1);
}

.acoes {
  display: flex;
  align-items: center;
  gap: 15px;
}

.acoes a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.btn-idioma {
  background: #f7f7f7;
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-idioma img {
  height: 18px;
}

.perfil {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.perfil:hover,
.btn-idioma:hover {
  background: #eee;
}

.menu-icon {
  height: 18px;
}

.link-anfitriao {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
}

.link-anfitriao:hover {
  background: #f7f7f7;
}

.titulo-barra {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 20px 30px;
}

.titulo-barra h1 {
  font-size: 26px;
  font-weight: 800;
}

.compartilhar-salvar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compartilhar-salvar a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 20px;
}

.compartilhar-salvar a img {
  height: 18px;
  width: auto;
}

.compartilhar-salvar a:hover {
  background: #f7f7f7;
}


#foto {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px;
  display: grid;
  gap: 10px;
}

#foto>div>div:first-child {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 170px 170px;
  gap: 12px;
  position: relative;
}


#foto>div>div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#foto>div>div:first-child img:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  /* ocupa as duas linhas */
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

#foto>div>div:first-child img:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

#foto>div>div:first-child img:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  border-top-right-radius: 14px;
}

#foto>div>div:first-child img:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

#foto>div>div:first-child img:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  border-bottom-right-radius: 14px;
}

#foto>div>div:first-child button {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

#foto>div>div:last-child {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-auto-rows: auto;
  align-items: start;
  gap: 16px;
}

#foto>div>div:last-child h2 {
  grid-column: 1 / 2;
  font-size: 22px;
  font-weight: 700;
}

#foto>div>div:last-child p {
  grid-column: 1 / 2;
  font-size: 16px;
  color: #555;
}

#foto>div>div:last-child button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

#foto>div>div:last-child button img {
  width: 22px;
  height: 22px;
}

.descricao {
  margin-top: 30px;
}

.container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
  font-family: Arial, sans-serif;
  color: #222;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.host {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.host img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.host-info h3 {
  font-size: 18px;
  font-weight: bold;
}

.host-info p {
  font-size: 14px;
  color: #555;
  margin-top: 3px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-text h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: #555;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

.right {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.price span {
  text-decoration: line-through;
  font-size: 18px;
  color: #777;
  margin-right: 6px;
}

.booking-box {
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.booking-box div {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.booking-box div:last-child {
  border-bottom: none;
}

.booking-box strong {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}

.booking-box span {
  font-size: 14px;
}

.reserve-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff385c, #e61e4d);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 12px;
}

.reserve-note {
  text-align: center;
  font-size: 13px;
  color: #555;
}

.feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 12px;
}

.payment-box {
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  padding: 60px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.old-price {
  text-decoration: line-through;
  color: #717171;
  font-size: 16px;
}

.new-price {
  font-size: 22px;
  font-weight: bold;
}

.price-info {
  color: #555;
  font-size: 14px;
}

.date-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #ccc;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.date-item {
  padding: 10px;
  border-right: 1px solid #ccc;
}

.date-item:last-child {
  border-right: none;
}

.label {
  display: block;
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.value {
  font-size: 14px;
  font-weight: 500;
}

.guests-box {
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px;
}

.reserve-btn {
  width: 100%;
  background: linear-gradient(90deg, #e61e4d, #d70466);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 30px;
  margin-top: 18px;
  cursor: pointer;
}

.reserve-btn:hover {
  opacity: 0.9;
}

.note {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.descricao-chale {
  max-width: 700px;
  line-height: 1.6;
  font-size: 16px;
}

.descricao-chale p {
  margin-bottom: 20px;
  text-align: justify;
}

.descricao-chale h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.mostrar-mais {
  background: #f2f2f2;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
}

.mostrar-mais:hover {
  background: #e6e6e6;
}

.dormir {
  margin-top: 40px;
  padding-left: 50px;
  border-bottom: 1px solid #e0e0e0;
}

.dormir h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.quarto-card {
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  background: #fff;
  margin-bottom: 30px;
}

.quarto-card img {
  width: 100%;
  height: 200px;
  border-bottom: 1px solid #eee;
  display: block;
}

.quarto-info {
  padding: 10px 15px;
}

.quarto-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

.quarto-info p {
  font-size: 14px;
  color: #717171;
  margin: 0;
}

.comodidades {
  width: 45%;
  margin: 40px 50px;
  padding-right: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.comodidades h2 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
}

.comodidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-bottom: 20px;
}

.comodidade-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222;
}

.comodidade-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-comodidades {
  display: inline-block;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #f7f7f7;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
}

.btn-comodidades:hover {
  background: #e6e6e6;
}

.date-picker {
  font-family: Arial, sans-serif;
  padding: 20px;
  margin-left: 50px;
  max-width: 55%;
}

.date-picker h2 {
  font-size: 22px;
  margin-bottom: 4px;
}

.date-picker .subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.calendar-container {
  display: flex;
  gap: 80px;
}

.calendar {
  width: 280px;
}

.calendar-header {
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 16px;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 14px;
}

.weekdays div {
  font-weight: bold;
  color: #555;
  padding: 8px 0;
}

.days div {
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.days div:hover {
  border: 1px solid #000;
}

.days .disabled {
  color: #ccc;
  cursor: default;
}

.days .disabled:hover {
  border: none;
}

.days .selected {
  border: 2px solid #000;
}

.calendar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.keyboard-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
}

.keyboard-icon {
  width: 20px;
  height: 20px;
}

.clear-dates {
  font-size: 14px;
  color: #333;
  text-decoration: underline;
  cursor: pointer;
}

.clear-dates:hover {
  color: #000;
}

.comentários {
  padding: 40px 20px;
}

.rating {
  text-align: center;
  padding: 6px 0 9px;
}

.header-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 14px 0 6px;
}

.laurel {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .15));
}

.main-rating {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: #111;
  line-height: 0.95;
}


.guest-preferred {
  font-size: 28px;
  font-weight: 700;
  margin: 6px 0 6px;
}


.top-percentage {
  color: #555;
  font-size: 18px;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 12px;
}

.top-percentage strong {
  font-weight: 700;
}


.detailed-ratings {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0 0;
}

.general-evaluation {
  text-align: left;
  min-width: 180px;
  padding: 6px;
}

.general-evaluation .label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: #374151;
}

.rating-bar-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555;
}

.rating-row span {
  width: 18px;
  text-align: right;
}

.bar {
  height: 8px;
  width: 110px;
  background: #e5e7eb;
  border-radius: 6px;
}

.bar.full {
  background: #111;
  width: 110px;
}

.category {
  text-align: center;
  min-width: 150px;
  padding: 8px 12px;
  border-left: 1px solid #e5e7eb;
}

.category:first-child {
  border-left: none;
  padding-left: 0;
}

.category .label {
  font-weight: 600;
  font-size: 16px;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.category .value {
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
  color: #111;
  display: block;
}

.category-icon {
  width: 40px;
  height: 40px;
  display: block;
  margin: 6px auto 6px;
}

.detailed-ratings .general-evaluation {
  display: inline-block;
  vertical-align: top;
}

.detailed-ratings .category {
  display: inline-block;
  vertical-align: top;
}

.rating .detailed-ratings {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  align-items: start;
  text-align: left;
  padding: 12px 0;
}

.rating .detailed-ratings>div {
  padding: 12px 14px;
}

.rating .detailed-ratings>div:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}

.review {
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.review section {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    margin: 0 50px;
}

.tag {
    background-color: #f1f1f1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #222;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag:hover {
    background-color: #ff385c;
    color: #fff;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-header .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.name-area {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 600;
    font-size: 16px;
}

.sub {
    font-size: 13px;
    color: #717171;
}

.rating-line {
    font-size: 14px;
    color: #222;
    margin: 8px 0;
}

p {
    font-size: 14px;
    color: #222;
    margin-bottom: 8px;
}

.show-more {
    color: #ff385c;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.show-more:hover {
    text-decoration: underline;
}
.reviews {
  display: flex;
  flex-direction: row;
  margin: 0 50px;
}

.map-section {
  padding: 2rem;
  font-family: 'Arial', sans-serif;
  color: #1a1a1a;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

.map-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.map-container {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.host-section {
  font-family: 'Arial', sans-serif;
  color: #222;
  margin: 0 50px;
  padding: 40px;
  border-bottom: 1px solid #ddd;
}

.host-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}

.host-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.host-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 350px;
}

.host-profile {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.host-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.superhost-badge {
  position: absolute;
  bottom: 8px;
  right: 110px;
  background: #ff385c;
  width: 28px;
  height: 28px;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.host-card h3 {
  text-align: center;
  font-size: 20px;
  margin: 8px 0 4px;
}

.superhost-label {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.host-stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 20px;
}

.host-details {
  max-width: 600px;
  flex-grow: 1;
  margin-bottom: 30px;
}

.host-details h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.host-details p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.host-details h4 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.contact-button {
  background-color: #f7f7f7;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-bottom: 30px;
}

.contact-button:hover {
  background-color: #ededed;
}

.host-extra-info {
  list-style: none;
  padding: 0;
  margin: 32px 0 16px;
  font-size: 15px;
  color: #333;
}

.host-extra-info li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.security-note {
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-section {
  padding: 64px 0;
  font-family: 'Arial', sans-serif;
  border-top: 1px solid #e6e6e6;
  border-bottom: 3px solid #ddd;
  margin: 0 50px;
}

.info-section h2 {
  font-size: 22px;
  margin-bottom: 32px;
  color: #222;
}

.info-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.info-column {
  flex: 1;
  min-width: 280px;
}

.info-column h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.info-column p {
  font-size: 15px;
  color: #333;
  margin: 6px 0;
  line-height: 1.4;
}

.info-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

.info-link:hover {
  color: #000;
}

.site-footer {
  padding: 64px 40px 32px;
  background-color: #e0dfdf;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #333;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  padding-top: 24px;
  font-size: 13px;
  color: #555;
}

.footer-left a {
  color: #555;
  text-decoration: none;
  margin-right: 12px;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer-right a {
  color: #555;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right .globe {
  margin-right: 6px;
}

.footer-right img {
  width: 16px;
  height: 16px;
}