* { -webkit-tap-highlight-color: transparent; }
a:link { color: white; }
/* link que foi visitado */
a:visited { color: white; }
/* mouse over */
a:hover { color: white; }
/* link selecionado */
a:active { color: white; }

html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: #f8f9fa;
}

.header {
    background: #632475;
    color: #fabb1c;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 160px;
    padding: 24px;
    border-radius: 30px;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: white;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.1);
}

.whats {
    position: fixed;
    right: 50px;
    bottom: 20px;
    z-index: 2;
}

.tagline {
    display: flex;
    justify-content: center;
}

.banner {
    position: relative;
    height: 40vh;
    overflow: hidden;
}

.banner-slides img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}

.banner-slides img.active {
    opacity: 1;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 36, 117, 0.3);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-primary {
    background: #fabb1c;
    color: #632475;
}

.btn-primary:hover {
    background: #eab308;
}

.btn-secondary {
    border: 2px solid #fabb1c;
    color: #fabb1c;
}

.btn-secondary:hover {
    background: #fabb1c;
    color: #632475;
}

/* CONHEÇA O HUB */
.blocos {
    padding: 20px 120px;
    padding-bottom: 60px;
    background: #f9f9f9;
    text-align: center;
}

.blocos h1 {
    color: #632475;
    margin-bottom: 40px;
}

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

.bloco {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.bloco h3 {
    color: #632475;
}

.bloco img {
    width: 100%;
}

.bloco div {
    padding: 20px 0;
}

.bloco:hover {
    transform: translateY(-5px);
}

/* GALERIA */
.galeria {
    padding: 20px 120px;
    padding-bottom: 60px;
    background: #f9f9f9;
    text-align: center;
}
.galeria h1 {
    color: #632475;
    margin-bottom: 40px;
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.image-container img.active {
  opacity: 1;
}

.bt_reservepeloapp {
    margin-top: 50px;;
}

/* SOBRE O HUB CRIATIVO */
.sobre {
    padding: 60px 120px;
    background: #fabb1c;
}

.sobre h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #632475;
}

.sobre h4 {
    color: #632475;
}

.sobre ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

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

/* DIFERENCIAIS */
.diferenciais {
    padding: 20px 120px;
    background: #632475;
    color: white;
}

.diferenciais h1 {
    text-align: center;
    margin-bottom: -10px;
    color: #fabb1c;
}

.diferenciais-grid {
    display: grid;
    gap: 20px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.diferenciais img {
    height: 500px;
    border-radius: 20px;
}

.diferenciais ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.avaliacoes {
    padding: 60px 20px;
    text-align: center;
}

.avaliacoes h1 {
    color: #632475;
    margin-bottom: 20px;
}

.avaliacoes iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

/* FOOTER - CONTATO */
.footer {
    padding: 20px 120px;
    background: #632475;
    color: white;
}
.footer_salas {
    text-align: center;
    background: #632475;
    padding-top: 20px;
    padding-bottom: 40px;

    h1 {
        color: #fabb1c;
    }
}

.footer .container {
    display: flex;
    justify-content: center;
}
.footer .footer-info {
    margin-left: 40px;
}

.footer h1 {
    margin-bottom: 20px;
}

.footer iframe {
    border-radius: 12px;
}

.footer .email {
    text-decoration: none;
    color: #fabb1c;
}
.footer .phone {
    text-decoration: none;
    color: white;
    pointer-events: none;
}

.socials a {
    margin-right: 15px;
    color: #fabb1c;
    text-decoration: none;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 800px) {
    .blocos, .footer {
        padding: 20px;
    }
    .blocos-grid {
        gap: 30px;
    }
    .sobre {
        padding: 60px 20px;
    }
    .diferenciais {
        padding: 20px 20px;
    }
    .galeria { padding: 20px 20px; }
    .galeria-grid { gap: 30px; }

    /* HIDE */
    .tagline { visibility: hidden; }

    .banner { height: 80vh; }

    /* Footer */
    .footer iframe {
        width: calc(100vw - 40px);
    }
    .footer .container {
        flex-direction: column;
    }
    .footer .footer-info {
        margin-left: 0;
        margin-top: 20px;
    }
}
