/* =============================
   STYLE.CSS – Pousada Miss Roses
   Base estrutural do site
   ============================= */

:root{
  --primary:#2aa7a7;
  --primary-light:#f8fefe;
  --dark:#222;
  --text:#333;
  --muted:#666;
}

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

body{
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

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

/* =============================
   HEADER
   ============================= */
header{
  position:fixed;
  top:0;left:0;
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
  z-index:1000;
}

.header-container{
  max-width:1200px;
  margin:auto;
  padding:15px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

header h1{
  font-size:22px;
  font-weight:600;
  color:var(--primary);
}

nav a{
  margin-left:25px;
  font-size:14px;
  font-weight:500;
  text-transform:uppercase;
}

/* =============================
   HERO
   ============================= */
.hero{
  height:100vh;
  margin-top:70px;
  padding:0 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.55)),
    url('../img/hero.jpg') center/cover no-repeat;
}

.hero-content{
  max-width:600px;
  color:#fff;
  position:relative;
  z-index:2;
}

.hero-content h2{
  font-size:56px;
  font-weight:600;
  margin-bottom:20px;
}

.hero-content p{
  font-size:18px;
}

/* =============================
   AVAILABILITY BOX
   ============================= */
.availability-box{
  max-width:360px;
  width:100%;
  background:rgba(255,255,255,.95);
  padding:30px;
  border-radius:8px;
  position:relative;
  z-index:2;
}

.availability-box h4{
  font-size:22px;
  font-weight:500;
  color:var(--primary);
  margin-bottom:15px;
}

.availability-box label{
  font-size:13px;
  color:#555;
  display:block;
  margin:12px 0 5px;
}

.availability-box input,
.availability-box select{
  width:100%;
  padding:10px;
  border:1px solid #ddd;
  border-radius:4px;
}

.availability-box button{
  width:100%;
  margin-top:20px;
  padding:14px;
  background:var(--primary);
  border:none;
  color:#fff;
  font-size:15px;
  border-radius:4px;
  cursor:pointer;
}

/* =============================
   BUTTONS
   ============================= */
.btn{
  display:inline-block;
  padding:14px 35px;
  background:var(--primary);
  color:#fff;
  font-size:14px;
  font-weight:500;
  text-transform:uppercase;
  border-radius:4px;
}

/* =============================
   SECTIONS
   ============================= */
section{
  padding:100px 20px;
  position:relative;
}

.bg-light{background:var(--primary-light)}

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

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h3{
  font-size:34px;
  font-weight:500;
  color:var(--primary);
  margin-bottom:10px;
}

.section-title p{
  font-size:15px;
  color:var(--muted);
}

/* =============================
   ABOUT
   ============================= */
.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.about-img{
  height:350px;
  background:#ddd;
}

/* =============================
   CTA
   ============================= */
.cta{
  background:var(--primary-light);
  text-align:center;
}

.cta h3{
  font-size:32px;
  font-weight:500;
  margin-bottom:20px;
  color:var(--primary);
}

/* =============================
   FOOTER
   ============================= */
footer{
  background:var(--dark);
  color:#bbb;
  padding:40px 20px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
  font-size:14px;
}

/* =============================
   RESPONSIVO
   ============================= */
@media(max-width:900px){
  .hero{
    flex-direction:column;
    justify-content:center;
    gap:30px;
  }

  .hero-content h2{font-size:38px}
}

@media(max-width:768px){
  nav{display:none}
  .about{grid-template-columns:1fr}
}
/* =============================
   FEATURES / COMODIDADES (PADRÃO STRELAMAR)
   ============================= */

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  margin-top:40px;
}

.feature-card{
  background:#fff;
  border-radius:14px;
  padding:22px 20px;
  display:flex;
  align-items:flex-start;
  gap:14px;
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
  transition:all .25s ease;
}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.feature-icon{
  font-size:22px;
  color:var(--primary);
  flex-shrink:0;
}

.feature-text{
  font-size:15px;
  color:#444;
  line-height:1.4;
}

/* =============================
   HERO – PÁGINAS DE QUARTO
   ============================= */
.hero-room{
  height:55vh;
  margin-top:70px;
  padding:0 5%;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#2aa7a7,#1f8f8f);
}

.hero-room .hero-content{
  color:#fff;
}

.hero-room h2{
  font-size:48px;
  margin-bottom:10px;
}

.hero-room p{
  font-size:18px;
}

/* =============================
   GALERIA DE QUARTO
   ============================= */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  margin-bottom:60px;
}

.gallery img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:10px;
}

/* =============================
   DETALHES DO QUARTO
   ============================= */
.room-details{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  margin-bottom:60px;
}

.room-info{
  background:#fff;
  padding:25px;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.room-info p{
  margin-bottom:10px;
}

/* =============================
   WAVES (QUARTOS)
   ============================= */
.wave-bottom path,
.wave-top path{
  fill:var(--primary-light);
}

/* =============================
   RESPONSIVO – QUARTOS
   ============================= */
@media(max-width:900px){
  .room-details{
    grid-template-columns:1fr;
  }

  .hero-room h2{
    font-size:34px;
  }
}
/* =============================
   HERO COM IMAGEM – QUARTOS
   ============================= */
.hero-cover{
  background:
    linear-gradient(180deg,rgba(42,167,167,.65),rgba(42,167,167,.85)),
    url('../img/quartos/triplo-capa.jpg') center/cover no-repeat;
}
.breadcrumb{
  margin-top:70px;
  padding:15px 0;
  font-size:13px;
  color:#666;
}
.breadcrumb a{
  color:var(--primary);
}
/* =============================
   PÁGINAS DE QUARTOS – LAYOUT HOTEL
   ============================= */

.hero-room{
  background:
    linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.55)),
    url('../img/quartos/triplo-capa.jpg') center/cover no-repeat;
  height:60vh;
}

.breadcrumb{
  margin-top:90px;
  background:#f5fafa;
  padding:12px 0;
  font-size:14px;
  color:#666;
}

.breadcrumb a{
  color:var(--primary);
}

.room-main{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:50px;
  align-items:flex-start;
}

.room-gallery img{
  width:100%;
  border-radius:8px;
  margin-bottom:15px;
}

.room-gallery h3{
  margin-top:40px;
  font-size:26px;
  color:var(--primary);
}

.room-sidebar{
  position:sticky;
  top:120px;
}

.room-info{
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.room-info p{
  margin-bottom:15px;
  font-size:15px;
}

@media(max-width:900px){
  .room-main{
    grid-template-columns:1fr;
  }

  .room-sidebar{
    position:relative;
    top:0;
    margin-top:40px;
  }
}
/* =============================
   CTA DE CONVERSÃO – QUARTOS
   ============================= */

.btn-cta-room {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.btn-cta-room small {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
}

/* =============================
   CTA FIXO MOBILE
   ============================= */

.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 16px;
    z-index: 9999;
    display: flex;
    justify-content: center;
  }

  .mobile-cta button {
    width: 100%;
    max-width: 420px;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
  }
}
/* =============================
   FEATURES / COMODIDADES – PADRÃO PREMIUM
   ============================= */

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  margin-top:40px;
}

.feature-card{
  background:#fff;
  border-radius:14px;
  padding:22px 20px;
  display:flex;
  align-items:flex-start;
  gap:14px;
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
  transition:all .25s ease;
}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.feature-icon{
  width:26px;
  height:26px;
  color:var(--primary);
  flex-shrink:0;
}

.feature-icon svg{
  width:100%;
  height:100%;
  stroke:currentColor;
}

.feature-text{
  font-size:15px;
  color:#444;
  line-height:1.4;
}
/* =============================
   CARROSSEL DE IMAGENS – QUARTOS
   ============================= */

.room-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 40px;
  background: #eee;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  height: 420px;
  object-fit: cover;
}

/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

.carousel-btn:hover {
  background: rgba(0,0,0,0.65);
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-track img {
    height: 260px;
  }
}
/* =============================
   OUTRAS ACOMODAÇÕES / MAIS QUARTOS
   ============================= */

.other-rooms {
  padding: 60px 20px;
}

.rooms-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}

.room-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.room-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.room-card-body {
  padding: 14px 18px;
}

.room-card-body h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.room-card-body p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #555;
}

.btn-small {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  text-align: center;
}
/* =============================
   FOOTER PROFISSIONAL
   ============================= */

.footer-main {
  background: #111;
  color: #ccc;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-col a {
  color: #ccc;
}

.footer-col a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.room-sidebar .availability-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.room-sidebar .availability-box small {
  font-size: 13px;
  color: #666;
}
/* =============================
   LAYOUT PÁGINA DO QUARTO
   ============================= */

.room-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* Coluna esquerda */
.room-gallery {
  width: 100%;
}

/* Sidebar direita */
.room-sidebar {
  position: sticky;
  top: 100px;
}

.room-info {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.room-info p {
  font-size: 15px;
  margin-bottom: 10px;
}

/* Ajustes mobile */
@media (max-width: 900px) {
  .room-main {
    grid-template-columns: 1fr;
  }

  .room-sidebar {
    position: relative;
    top: auto;
  }
}
/* ================= BUSCA DE QUARTOS ================= */

.search-filter {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.filter-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: end;
}

.filter-group label {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

@media(max-width:768px){
  .search-filter { margin-top: -30px; }
}
.search-filter {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.filter-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.group-cta {
  margin: 50px auto;
  padding: 40px;
  max-width: 700px;
  background: linear-gradient(135deg, #2aa7a7, #4fc3c3);
  color: #fff;
  border-radius: 18px;
  text-align: center;
}

.btn-group {
  background: #fff;
  color: #2aa7a7;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.team-card img {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-card h4 {
  margin-bottom: 5px;
}

.team-card p {
  color: #666;
  font-size: 14px;
}
/* ================= CONTATO ================= */

/* ================= CONTATO – PADRÃO STRELAMAR ================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn {
  width: fit-content;
  padding: 12px 30px;
  background: #2fa8a4;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.contact-form .btn:hover {
  background: #24918d;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* HERO HOME – FORÇADO */
.hero-home {
  min-height: 90vh;
  background-image: url("../fotos/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  position: relative;
}

/* Overlay escuro */
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Conteúdo acima da imagem */
.hero-home .hero-content,
.hero-home .availability-box {
  position: relative;
  z-index: 2;
}
/* ================= HERO HOME (FORÇADO) ================= */
.hero.hero-home {
  min-height: 90vh;
  background-image: url("../fotos/hero.jpg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  position: relative;
}

/* Overlay escuro */
.hero.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Conteúdo acima da imagem */
.hero.hero-home .hero-content,
.hero.hero-home .availability-box {
  position: relative;
  z-index: 2;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.quartos {
  padding: 80px 5%;
  text-align: center;
}

.quartos h2 {
  color: #2aa7a3;
  font-size: 36px;
  margin-bottom: 10px;
}

.quartos .subtitulo {
  color: #555;
  margin-bottom: 50px;
}

.quartos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.quarto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quarto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.quarto-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.quarto-card h3 {
  color: #2aa7a3;
  font-size: 22px;
  margin: 20px 0 10px;
}

.quarto-card p {
  padding: 0 20px;
  color: #555;
  font-size: 15px;
}

.quarto-card .btn {
  display: inline-block;
  margin: 20px 0 25px;
}
.hero-quartos {
  position: relative;
  height: 380px;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("img/fotos/familia.jpg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
/* HERO PÁGINA QUARTOS – FORÇADO */
.hero.hero-room.hero-cover {
  height: 380px !important;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../fotos/familia.jpg.jpeg") !important;

  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  display: flex;
  align-items: center;
}
.hero-room {
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}

.hero-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-room .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO ESPECÍFICO DO CASAL */
.hero-casal {
  background: url("../fotos/casal.jpg.jpeg") center center / cover no-repeat;
}
.room-gallery {
  max-width: 1200px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
}

.carousel img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}
.room-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-track img {
  min-width: 100%;
  height: auto;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }
.hero-room {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

/* CASAL */
.hero-casal {
  background-image: url("../fotos/casal.jpg.jpeg");
}

/* TRIPLO */
.hero-triplo {
  background-image: url("../fotos/triplo.jpg.jpeg");
}

/* FAMÍLIA */
.hero-familia {
  background-image: url("../fotos/familia.jpg.jpeg");
}

/* QUÁDRUPLO */
.hero-quadruplo {
  background-image: url("../fotos/quadruplo.jpg.jpeg");
}
/* QUÁDRUPLO */
.hero-quadruplo {
  background-image: url("../fotos/quadruplo.jpg.jpeg");
}
.pousada-photo {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  border-radius: 20px;
  overflow: hidden;
}

.pousada-photo img {
  width: 100%;
  height: auto;
  display: block;
}
/* HERO BASE */
.hero-room {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}

/* HERO A POUSADA – COR SÓLIDA */
.hero-pousada {
  background-color: #2bb6b3; /* azul ciano */
}

/* Texto */
.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
}
.team-section {
  padding: 80px 0;
  text-align: center;
}

.team-section h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.team-section .subtitle {
  color: #666;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: start;
}

.team-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}
/* HERO CONTATO – AZUL CIANO */
.hero-contato {
  background-color: #2bb6b3; /* azul ciano */
}
/* ===== MOBILE ===== */
@media (max-width: 768px) {

  /* HERO */
  .hero-room {
    min-height: 50vh;
    padding: 40px 20px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* CARROSSEL */
  .room-carousel img {
    border-radius: 12px;
  }

  /* GRID GERAL */
  .room-main {
    grid-template-columns: 1fr;
  }

  .room-sidebar {
    margin-top: 40px;
  }

  /* TEAM */
  .team-card img {
    width: 130px;
    height: 130px;
  }
}
