/* Seção Comodidades */
.comodidades-section {
  background-color: #ffffff;
  padding: 60px 7%;
  text-align: left;
}

.comodidades-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2A3D4A;
  font-family: 'Aleo', serif;
}

.comodidades-section hr {
  width: 80px;
  height: 3px;
  background-color: #A9472E;
  border: none;
  margin-bottom: 20px;
}

.comodidades-section > p {
  font-size: 1.2rem;
  color: #5D737E;
  max-width: 100%;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Container com 4 cards lado a lado */
.comodidades-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Card com duas colunas internas */
.comodidade-card {
  flex: 1 1 calc(25% - 30px); 
  min-width: 0; 
  display: flex;
  flex-direction: row;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  height: 180px;
}

/* Coluna da esquerda */
.comodidade-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  box-sizing: border-box;
}

.comodidade-info .icone {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 8px;
}

.comodidade-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #2A3D4A;
}

.comodidade-info p {
  font-size: 0.9rem;
  margin: 0;
  color: #5D737E;
  text-align: justify;
}

/* Coluna da direita com imagem fixa */
.comodidade-imagem {
  width: 240px;
  height: 100%;
}

.comodidade-imagem img {
  width: 240px;
  height: 100%;
  object-fit: cover;
  border-left: 1px solid #eee;
}

/* Responsividade */
@media (max-width: 1024px) {
  .comodidade-card {
    flex: 1 1 100%;
    flex-direction: column;
    height: auto;
  }

  .comodidade-info {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .comodidade-info .icone {
    width: 28px;
    height: 28px;
  }

  .comodidade-imagem {
    width: 100%;
    height: 200px;
  }

  .comodidade-imagem img {
    width: 100%;
    height: 100%;
  }
}
