/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 05 2026 | 16:11:13 */
/* ------------------------------
   ACESSIBILIDADE
------------------------------ */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(0,115,230,0.4);
  outline-offset: 3px;
}

/* ------------------------------
   TOP BAR PERSONALIZADA
------------------------------ */
.custom-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #000;
  padding: 6px 20px;
  z-index: 99999;
  transition: all 0.25s ease;
}

.custom-topbar.shrink {
  padding: 3px 20px;
}

.custom-topbar--hidden {
  transform: translateY(-100%);
}

.custom-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

#top-bar-content {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0px;
}

/* Telefone */
.topbar-phone {
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.topbar-phone:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.topbar-phone::after {
  content: "|";
  margin-left: 14px;
  margin-right: 10px;
  color: #ffffff;
}

/* Ícones */
.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}

.topbar-icon i {
  color: #ffffff !important;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.topbar-icon:hover i {
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Linha inferior da topbar */
#top-bar-wrap {
  border-bottom: 1px solid #000000 !important;
}
.topbar-phone:last-child::after {
    content: "" !important;
    margin: 0 !important;
}

/* ------------------------------
   HEADER STICKY + SHRINK
------------------------------ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.5s ease;
  padding: 10px 0;
}

/* Logo normal (200px de largura) */
#site-logo img.custom-logo {
    max-width: 170px !important;
    height: auto !important;
    transition: all 0.25s ease;
}

/* Shrink do logo */
#site-header.shrink #site-logo img.custom-logo {
    max-width: 170px !important; /* ajusta aqui o shrink */
    height: auto !important;
}

#site-header.shrink {
  padding: 5px 0 !important;
}

#site-navigation-wrap {
  padding-top: 05px;
  padding-bottom: 10px;
}

@media (max-width: 959px) {
  .oceanwp-mobile-menu-icon {
    padding-top: 5px !important;
  }
}

/* Mobile shrink */
@media (max-width: 959px) {
  #site-header.shrink .custom-logo {
    max-height: 35px !important;
    height: auto !important;
    width: auto !important;
  }

  #site-header.shrink #site-navigation-wrap .dropdown-menu > li > a {
    font-size: 0.9em !important;
    padding-bottom: 20px !important;
  }
}

/* ------------------------------
   LOGO SHRINK
------------------------------ */
#site-logo img {
  max-height: 80px;
}

#site-header.shrink #site-logo img {
  max-height: 50px;
}

/* ------------------------------
   MENU SHRINK
------------------------------ */
#site-navigation-wrap .dropdown-menu > li > a {
  transition: all 0.25s ease;
}

#site-header.shrink #site-navigation-wrap .dropdown-menu > li > a {
  font-size: 0.9em !important;
  padding-bottom: 0px !important;
}

#site-navigation-wrap .dropdown-menu > li > a:hover {
  transform: scale(1.06);
  font-weight: 600;
}

/* ------------------------------
   HERO BACKGROUND
------------------------------ */
.hero-bg {
  display: inline-block;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 8px;
  border-radius: 0px;
  position: relative;
  z-index: 2;
}

/* ------------------------------
   ESCONDER BANNER NATIVO
------------------------------ */
#cookie-notice {
  display: none !important;
}

/* ------------------------------
   BANNER CUSTOM (ESTILO AIRBNB)
------------------------------ */
.tomas-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 900px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 22px;
  border-radius: 0px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  z-index: 999999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 14px;
}

.tomas-cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.tomas-cookie-text {
  text-align: justify;
}

.tomas-cookie-text p {
  margin: 6px 0 0 0;
  line-height: 1.4;
}

.tomas-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.tomas-cookie-btn {
  padding: 9px 16px;
  border-radius: 0px;
  cursor: pointer;
  font-size: 14px;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tomas-cookie-btn.primary {
  background: #ffffff;
  color: #000;
  font-weight: 600;
}

.tomas-cookie-btn.primary:hover {
  background: #e6e6e6;
}

.tomas-cookie-btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.tomas-cookie-btn.secondary:hover {
  border-color: #fff;
}

/* Mobile */
@media (max-width: 959px) {
  .tomas-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 10px;
    padding: 16px 16px;
  }

  .tomas-cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ------------------------------
   FOOTER CLEANUP
------------------------------ */
#footer-bottom {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.site-footer {
  background-color: #000 !important;
}

#footer-bottom-inner {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* ------------------------------
   FLIP BOX FIXES (EAEL)
------------------------------ */
.eael-elements-flip-box-container,
.eael-elements-flip-box-flip-card,
.eael-elements-flip-box-front-container,
.eael-elements-flip-box-rear-container {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.eael-elements-slider-display-table,
.eael-elements-flip-box-vertical-align,
.eael-elements-flip-box-padding {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.eael-elements-flip-box-rear-container .eael-elements-flip-box-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.eael-elements-flip-box-content p {
  margin: 0 !important;
  padding: 0 !important;
}

.eael-elements-flip-box-flip-card {
  backface-visibility: hidden !important;
  transform-style: preserve-3d !important;
}

.elementor-element-52654cf {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.elementor-element-52654cf .eael-elements-flip-box-container {
  overflow: hidden !important;
}

/* Remove gaps in Elementor sections */
.elementor-section .elementor-container {
  gap: 0 !important;
  column-gap: 0 !important;
}

/* Tipografia e reset */
.tomas-excerpt-widget,
.tomas-full-widget,
.tomas-excerpt-widget p,
.tomas-full-widget p {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  margin: 0;
  color: inherit;
}

