/*
Theme Name: Vila Baleira
Theme URI: https://vilabaleira.com
Author: Sanzza
Author URI: https://sanzza.com
Description: Custom WordPress theme for Vila Baleira Hotel Holding — responsive design with Tailwind CSS.
Version: 1.0.0
License: All Rights Reserved
Text Domain: vila-baleira
Tags: hotel, luxury, responsive, tailwind, custom-template
*/

/* ========================================
   Vila Baleira — Design Tokens & Base
   ======================================== */
:root {
  --verde: #0d5257;
  --dourado: #bc945b;
  --branco: #ffffff;
  --bege: #eee8e5;
  --preto: #000000;
}

/* ========================================
   Base Resets
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Commissioner', sans-serif;
  color: var(--preto);
  background: var(--branco);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  border-style: solid;
  border-width: 0;
  border-color: inherit;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ========================================
   WordPress-specific overrides
   ======================================== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* Remove WordPress admin bar spacing when logged in */
body.admin-bar .header-fixo {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header-fixo {
    top: 46px;
  }
}

/* ========================================
   Scrollbar hide utility
   ======================================== */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ========================================
   WordPress Menu Reset
   ======================================== */
.vbl-nav-menu,
.vbl-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vbl-nav-menu li {
  display: inline-block;
}

.vbl-nav-menu a {
  text-decoration: none;
  color: inherit;
}

/* Mobile nav menu */
.vbl-mobile-menu,
.vbl-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vbl-mobile-menu li {
  display: block;
}

/* ========================================
   Botões de Seta dos Carrosseis
   Normal: transparente + borda dourada + seta dourada
   Hover:  fundo dourado + seta branca
   ======================================== */
.vbl-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: transparent;
  border: 1px solid #bc945b;
  cursor: pointer;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.vbl-arrow-btn img {
  width: 27px;
  height: 27px;
  transition: filter 0.25s ease;
}

.vbl-arrow-btn:hover {
  background: #bc945b;
}

/* Inverte a cor do SVG para branco no hover */
.vbl-arrow-btn:hover img {
  filter: brightness(0) invert(1);
}