* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
  }
  
  
  /* Carrossel */
.carousel {
    position: relative;
    max-width: 100%;
    height: 55vh;
    overflow: hidden;
  }
  
  .slides {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: fade 1.5s ease-in-out;
  }
  
  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 30, 30, 0.9), rgba(0, 0, 0, 0.3));
  }
  
  .carousel-content {
    position: absolute;
    top: 65%;
    left: 50%;
      transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    max-width: 550px;
  }
  
  .carousel-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .carousel-content .highlight {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #b2d8cc;
  }
  
  .carousel-content .subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 400;
  }.room-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .room-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .room-card:hover {
    transform: translateY(-5px);
  }
  
  .video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none; /* Agora oculto por padrão */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }
  
  /* Mostra o ícone quando passar o mouse */
  .video-container:hover .play-icon {
    display: flex;
  }
  
  /* No mobile, ícone aparece quando o vídeo está pausado */
  @media (max-width: 768px) {
    .play-icon {
      display: flex;
    }
  }
  
  .play-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .room-card h3 {
    margin: 0;
    padding: 12px;
    font-size: 1.2rem;
    background: linear-gradient(to right, #ff9800, #e65100);
    color: white;
    font-weight: 600;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .room-cards {
      grid-template-columns: 1fr;
    }
  }
  