@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot?orkqwr');
  src: url('fonts/icomoon.eot?orkqwr#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?orkqwr') format('truetype'),
    url('fonts/icomoon.woff?orkqwr') format('woff'),
    url('fonts/icomoon.svg?orkqwr#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




.icon-magnifying-glass:before {
  content: "\e900";
}

.icon-shopping-cart:before {
  content: "\e901";
}

.icon-special:before {
  content: "\e902";
}

.icon-gift:before {
  content: "\e903";
}

.icon-massage:before {
  content: "\e904";
}

.icon-facial-mask:before {
  content: "\e905";
}

.icon-lotus:before {
  content: "\e906";
}

.icon-right-arrow:before {
  content: "\e907";
}

.icon-left-arrow:before {
  content: "\e908";
}

.icon-up-arrow:before {
  content: "\e909";
}

.icon-down-arrow:before {
  content: "\e90a";
}

.icon-massage-1:before {
  content: "\e90b";
}

.icon-lotus-1:before {
  content: "\e90c";
}

.icon-customer-service:before {
  content: "\e90d";
}

.icon-herbal:before {
  content: "\e90e";
}

.icon-telephone:before {
  content: "\e90f";
}

.icon-time:before {
  content: "\e910";
}

.icon-spa-candles:before {
  content: "\e911";
}

.icon-alarm-clock:before {
  content: "\e912";
}

.icon-meditation:before {
  content: "\e913";
}

.icon-spa:before {
  content: "\e914";
}

.icon-facial-massage:before {
  content: "\e915";
}

.icon-hand-cream:before {
  content: "\e916";
}

.icon-stones:before {
  content: "\e917";
}

.icon-aroma:before {
  content: "\e918";
}

.icon-telephone-call:before {
  content: "\e919";
}

.icon-herbs:before {
  content: "\e91a";
}

.icon-flower:before {
  content: "\e91b";
}

.icon-spa-1:before {
  content: "\e91c";
}

.opening-hour {
        background-color: transparent; /* Mantém a seção sem fundo (se necessário) */
        padding: 20px 20px;
    }

    .opening-hour__inner {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .opening-hour__content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap; /* Permite que os itens se ajustem em telas menores */
        gap: 15px;
    }

    .opening-hour__content h2 {
        color: white;
        font-size: 30px;
        margin: 0;
        white-space: nowrap; /* Evita quebra de linha nos títulos */
    }

    .divider {
        color: white;
        font-size: 30px;
        font-weight: bold;
    }

    /* Responsividade para telas menores */
    @media (max-width: 768px) {
        .opening-hour__content {
            flex-direction: column;
            gap: 10px;
        }

        .divider {
            display: none; /* Remove os divisores em telas pequenas */
        }
    }