/* ===================================================================================
   Isa Beauty - Sobre Nós
   Objetivo: layout institucional (história + valores) com estética de luxo.
   =================================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;





body {
  background-color: #f8f9fa;
  overflow-x: hidden;
  padding-top: 100px; /* header fixo */
}


/* Utilitário: aplica padding-top correto para mobile também */
@media (max-width: 768px) {
  body {
    padding-top: 90px;
  }
}

/* =========================
   CABEÇALHO / PRELOADER
   (reutiliza os mesmos seletores já existentes no projeto)
   ========================= */

#isa-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0b0b0b;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.6s ease;
}

#isa-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo-container {
  max-width: 150px;
  height: auto;
  animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  border-top-color: #D4AF37;
  animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

/* Header e menu: mantidos para garantir consistência visual
   (o mesmo padrão já está em css/contatos.css; aqui replicamos o mínimo necessário) */

/* =========================
   MOBILE MENU (Sobre Nós)
   =========================
   Nesta página existe um overlay/drawer próprio: #mobile-overlay e .mobile-menu-drawer.
   A reclamação é que ele fica “logo exposto”; aqui garantimos que o overlay
   comece invisível e só abra quando o drawer tiver a classe 'open'.
*/
#mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

#mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: #0b0b0b;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  padding: 18px;
  z-index: 1041;
  display: flex;
  flex-direction: column;
}

#mobile-overlay.open .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  padding: 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.mobile-link {
  color: #D4AF37;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.mobile-link.active {
  color: #ffffff;
}

.mobile-menu-drawer .logo-isa {
  height: 56px;
}

/* =========================
   CART overlay etc (mantém o estilo existente)
   ========================= */

.header-isa {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-isa {
  height: 80px;
  width: auto;
}

.nav-isa {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 100%;
}

.menu-isa {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu-item-isa {
  text-decoration: none;
  color: #D4AF37;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-item-isa:hover,
.menu-item-isa.active {
  color: #ffffff;
}

.actions-isa {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-container {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.cart-icon-isa {
  color: #D4AF37;
  transition: color 0.3s ease;
}

.cart-container:hover .cart-icon-isa {
  color: #ffffff;
}

.cart-badge-isa {
  background-color: #E74C3C;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -8px;
}

.search-container-isa {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 25px;
  display: flex;
  align-items: center;
  height: 40px;
  overflow: hidden;
  width: 300px;
  max-width: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.search-container-isa:focus-within {
  border-color: #B8860B;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
}

.search-icon-isa {
  color: #888888;
  margin-left: 15px;
  flex-shrink: 0;
}

.search-input-isa {
  border: none;
  outline: none;
  padding: 0 10px;
  font-size: 13px;
  color: #333333;
  flex: 1;
  min-width: 0;
  background: transparent;
}

.search-input-isa::placeholder {
  color: #aaaaaa;
  font-style: italic;
}

.search-button-isa {
  background: linear-gradient(135deg, #CFB53B 0%, #B8860B 100%);
  color: #ffffff;
  border: none;
  height: 100%;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.search-button-isa:hover {
  opacity: 0.9;
}

.menu-toggle-isa {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle-isa span {
  width: 100%;
  height: 2px;
  background-color: #D4AF37;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Select do menu categorias */
.menu-select-isa {
  background: transparent;
  color: #D4AF37;
  border: none;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease, background-image 0.3s ease;
  width: auto;
  max-width: 125px;
  display: inline-block;
  padding: 0 18px 0 0;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right center;
}

.menu-select-isa:hover {
  color: #ffffff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
}

.menu-select-isa option {
  background-color: #000000;
  color: #ffffff;
  font-size: 15px;
}

.menu-select-isa option:disabled {
  color: #888888;
}

/* =========================
   RESPONSIVIDADE HEADER (clonado do catálogo)
   ========================= */
@media (max-width: 991px) {
  .header-isa {
    padding: 0 30px;
    height: 85px;
  }

  .logo-isa {
    height: 60px;
  }

  .actions-isa {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 15px !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .menu-toggle-isa {
    display: flex;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }


  /* Transformação da barra de navegação em painel lateral deslizante */
  .nav-isa {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #0b0b0b;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 120px 40px 40px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1050;
  }

  .nav-isa.open {
    right: 0;
  }

  .menu-isa {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
  }

  .menu-item-isa {
    font-size: 19px;
    width: 100%;
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }
}

/* Mobile: ajuste fino do header/botão/ações */
@media (max-width: 650px) {
  .header-isa {
    padding: 0 20px;
  }

  .actions-isa {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 15px !important;
  }

  /* Remove peso do container de busca no mobile (mantém só o botão circular) */
  .search-container-isa {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .search-input-isa {
    display: none !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .search-icon-isa {
    display: none !important;
  }

  .search-button-isa {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    background: linear-gradient(135deg, #CFB53B 0%, #B8860B 100%) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .search-button-isa .btn-text-isa {
    display: none !important;
  }

  .search-container-isa.active-search {
    width: 150px !important;
    border-radius: 25px !important;
    background-color: #ffffff !important;
    border: 1px solid #B8860B !important;
    padding-left: 15px !important;
    justify-content: flex-start !important;
  }

  .search-container-isa.active-search .search-input-isa {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: calc(100% - 50px) !important;
    padding: 0 10px !important;
  }

  .search-container-isa.active-search .search-button-isa {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
  }

  .menu-toggle-isa {
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }
}



@media (max-width: 480px) {
  .header-isa {
    padding: 0 14px;
  }

  .actions-isa {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 15px !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .menu-toggle-isa {
    margin-left: auto !important;
  }
}


/* =========================
   MAIN - SOBRE NÓS
   ========================= */

.main-content-isa {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url('../img/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  margin-bottom: 36px;
}

.about-hero h1 {
  font-size: 2.6rem;
  color: #D4AF37;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.about-hero p {
  font-size: 1.1rem;
  color: #e7e7e7;
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
}

.section-sobre {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-text-block h2 {
  font-size: 2rem;
  color: #0b0b0b;
  position: relative;
  margin-bottom: 14px;
}

.about-text-block h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 64px;
  height: 3px;
  background-color: #D4AF37;
}

.about-text-block p {
  color: #555555;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 14px;
}

/* Cards de valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.value-card i {
  font-size: 2rem;
  color: #B8860B;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.98rem;
  color: #666666;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 55px 15px;
  }

  .about-hero h1 {
    font-size: 2.1rem;
  }
}

/* =========================
   FOOTER (Sobre Nós)
   =========================
   O footer estava “sem estilo” nesta página.
   Reaproveitamos o styling premium do css/style.css (classes footer-isa...)
   mas limitando ao necessário para esta página.
*/
.footer-isa {
  width: 100%;
  background: linear-gradient(to right, #ebd490 0%, #a38132 30%, #543f0e 50%, #a38132 70%, #ebd490 100%);
  position: relative;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 8% 50px 8%;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrapper {
  max-width: 180px;
  background-color: #000000;
  padding: 12px 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-title {
  color: #E2C034;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 8px;
}

.font-whatsapp {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #E2C034;
  transform: translateX(4px);
}

.footer-admin-link {
  opacity: 0.28;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-admin-link a {
  color: #ffffff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-admin-link:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-social-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.footer-social-section .footer-title {
  color: #ffffff;
}

.footer-social-section .footer-text {
  color: rgba(255, 255, 255, 0.95);
}

.footer-social-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.footer-social-links a i {
  font-size: 18px;
}

.footer-bottom-bar {
  background-color: #000000;
  width: 100%;
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-bar p {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 50px 5%;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 25px;
    text-align: left;
  }

  .footer-links-list a:hover {
    transform: translateX(0);
  }
}

/* =========================
   RESPONSIVIDADE (Sobre Nós)
   ========================= */

/* Mobile menu drawer: garante que o conteúdo não “escapa” e fica clicável */
@media (max-width: 480px) {
  #mobile-overlay {
    z-index: 1050;
  }

  .mobile-menu-drawer {
    width: 92vw;
    padding: 14px;
  }

  .mobile-menu-links {
    padding: 16px 6px;
    gap: 12px;
  }

  .mobile-link {
    font-size: 17px;
  }

  .mobile-drawer-header {
    padding: 8px 4px 12px 4px;
  }
}

/* Conteúdo principal: ajusta espaçamentos e tipografia */
@media (max-width: 768px) {
  .main-content-isa {
    margin: 26px auto;
    padding: 0 14px;
  }

  .about-hero {
    padding: 60px 14px;
  }

  .about-text-block h2 {
    font-size: 1.7rem;
  }

  .about-text-block p {
    font-size: 0.98rem;
  }

  .values-grid {
    gap: 14px;
  }
}

/* Ajuste extra para telas bem pequenas */
@media (max-width: 360px) {
  .about-hero h1 {
    font-size: 1.9rem;
  }
}



