/* ==================== RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==================== PALETA DE CORES EXCLUSIVA E ESTRITA DO LOGOTIPO ==================== */
:root {
  /* 1. O Roxo Escuro Místico do fundo do logo */
  --cor-fundo: #190a1b;       
  /* 2. O Rosa Vibrante em destaque no logo */
  --cor-rosa: #cf4e5f;        
  /* 3. Branco Puro para contraste e leitura limpa */
  --cor-creme: #ffffff;       

  /* Variáveis de compatibilidade purgadas de qualquer dourado antigo */
  --azul-noite: #190a1b; 
  --dourado: #cf4e5f;      /* Redirecionado para o Rosa do logo */
  --creme: #ffffff;
  --texto-claro: #ffffff;
}

/* ==================== BASE UNIFICADA ==================== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-creme);
  line-height: 1.6;
  scroll-behavior: smooth;
  position: relative;
  padding-top: 100px;

  /* Pontinhos discretos de fundo baseados exclusivamente no Rosa do logo */
  background-image: radial-gradient(circle, rgba(207, 78, 95, 0.12) 1px, transparent 0);
  background-size: 80px 80px;
}

/* Títulos principais destacam o Rosa oficial */
h1,
h2,
h3,
h4 {
  color: var(--cor-rosa) !important;
}

/* ==================== NAVBAR NO TOPO ==================== */
.navbar {
  /* Fundo baseado no Roxo do logo com uma transparência elegante */
  background: rgba(25, 10, 27, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  position: absolute; 
  top: 20px;
  left: 50%;
  transform: translateX(-50%); 
  width: 95%;         
  max-width: 1100px;
  padding: 0.8rem 2rem;
  border-radius: 50px; 
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;

  /* Borda fina em Rosa (substituindo o dourado) */
  border: 1px solid rgba(207, 78, 95, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-logo {
  color: #ffffff; /* Branco puro como o texto do logo */
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- LIGAÇÕES DIRETAS (SEM BOTÃO) --- */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #ffffff; /* Letras em Branco para leitura perfeita */
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-links a:hover {
  color: var(--cor-rosa);
  text-shadow: 0 0 8px rgba(207, 78, 95, 0.6);
}

/* Esconde o menu lateral antigo se ainda estiver no CSS */
#nav-menu, .btn-menu {
  display: none !important;
}

/* Ajuste para ecrãs pequenos (Mobile) */
@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .nav-links a {
    font-size: 0.7rem;
  }
}

/* ==================== HEADER ==================== */
header {
  padding: 6rem 10%;
  text-align: center;
  background: radial-gradient(circle at top, #2d0e30, var(--cor-fundo) 70%, #050209 100%);
}

header h1 {
  font-size: 3.5rem;
  letter-spacing: 3px;
  color: #ffffff; /* Texto principal em branco */
  text-shadow: 0 0 20px var(--cor-rosa);
  animation: glow 3s ease-in-out infinite alternate;
}

header p {
  margin-top: 1rem;
  color: var(--cor-rosa);
  letter-spacing: 2px;
}

/* Brilho animado focado exclusivamente no Rosa do logo */
@keyframes glow {
  from {
    text-shadow: 0 0 10px var(--cor-rosa);
  }
  to {
    text-shadow: 0 0 25px var(--cor-rosa), 0 0 10px #ffffff;
  }
}

/* ==================== SECÇÕES GENÉRICAS ==================== */
section {
  padding: 4rem 10%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Cartões estruturados com o Roxo e contorno em Rosa */
.card {
  background: rgba(25, 10, 27, 0.95);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--cor-rosa);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

/* Botões com a cor de destaque Rosa */
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--cor-rosa);
  color: #ffffff;
  background: var(--cor-rosa);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: transparent;
  color: var(--cor-rosa);
  box-shadow: 0 0 15px rgba(207, 78, 95, 0.5);
}

/* ==================== GALERIA / LOOKBOOK ==================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery img,
.lookbook-item img {
  width: 100%;
  border-radius: 18px 18px 0 0;
  border: 3px solid var(--cor-rosa);
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  cursor: pointer;
  transition: transform .3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.lookbook-item h3 {
  margin-top: 1rem;
  color: #ffffff;
}

/* ==================== SILHUETAS ==================== */
.silhueta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 4rem 10%;
}

.silhueta-imagem img {
  width: 100%;
  border-radius: 18px;
  border: 3px solid var(--cor-rosa);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.silhueta-texto h2 {
  font-size: 2.2rem;
  color: var(--cor-rosa);
  margin-bottom: 1rem;
}

.silhueta-texto p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--cor-creme);
}

/* ==================== FOOTER ESTILO NAVBAR ==================== */
footer {
  background: rgba(25, 10, 27, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  width: 95%;
  max-width: 1100px;
  margin: 80px auto 40px; 
  padding: 1.5rem 2rem;
  border-radius: 50px;
  text-align: center;

  /* Contorno em Rosa do logo */
  border: 1px solid rgba(207, 78, 95, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  gap: 20px;
  margin-bottom: 15px;
}

.footer-nav a {
  color: var(--cor-creme);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--cor-rosa);
  text-shadow: 0 0 8px rgba(207, 78, 95, 0.6);
}

footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-top: 10px;
}

/* ==================== RESPONSIVO (TELEMÓVEL) ==================== */
.btn-menu {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#img-menu {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.btn-menu.active #img-menu {
    transform: rotate(90deg);
}

#nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--cor-fundo);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
}

#nav-menu.active {
    right: 0;
}

#nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#nav-menu a {
    color: var(--cor-creme);
    text-decoration: none;
    padding: 12px;
    display: block;
    border-radius: 4px;
    transition: background 0.3s;
}

#nav-menu a:hover {
    background: rgba(207, 78, 95, 0.15);
}

@media (min-width: 5000px) {
    .btn-menu {
        display: none;
    }
    #nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        right: auto;
    }
    #nav-menu ul {
        flex-direction: row;
        gap: 20px;
    }
}

/* ==================== GALERIA DE PROCESSO ==================== */
.featured-image {
  width: 100%;
  margin: 40px 0;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(207, 78, 95, 0.4);
  box-shadow: 0 0 20px rgba(207, 78, 95, 0.15);
}

.featured-image img {
  width: 100%;
  height: 500px; 
  object-fit: cover;
  display: block;
}

.processo-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.galeria-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(207, 78, 95, 0.2);
  transition: all 0.3s ease;
}

.galeria-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%); 
  transition: all 0.3s ease;
}

.galeria-item:hover {
  transform: translateY(-5px);
  border-color: var(--cor-rosa);
  box-shadow: 0 0 15px rgba(207, 78, 95, 0.4);
}

.galeria-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .featured-image img {
    height: 300px;
  }
}

/* ==================== PROCESSO: IMAGENS INTEIRAS ==================== */
.featured-image {
  width: 100%;
  max-width: 650px;       
  height: 550px;          
  margin: 45px auto;      
  display: block;         
  
  border-radius: 40px;    
  border: 3px solid var(--cor-rosa) !important; 
  overflow: hidden;       
  
  box-shadow: 0 0 25px rgba(207, 78, 95, 0.4), 
              0 10px 40px rgba(0, 0, 0, 0.7) !important;
}

.featured-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;      
  object-position: center 60%; 
  display: block;
}

.featured-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 45px rgba(207, 78, 95, 0.7) !important;
}

.processo-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.galeria-item {
  border: 1px solid rgba(207, 78, 95, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.galeria-item img {
  width: 100%;
  height: auto; 
  display: block;
}

/* ==================== MOLDURAS EXCLUSIVAS DO LOGO ==================== */
.featured-image, .galeria-item, .lookbook-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  
  /* BORDA ROSA OFICIAL EM SUBSTITUIÇÃO DO DOURADO */
  border: 3px solid var(--cor-rosa) !important; 
  
  box-shadow: 0 0 15px rgba(207, 78, 95, 0.4) !important;
  transition: all 0.3s ease-in-out;
  background: #0d050e; 
}

.featured-image img, .galeria-item img, .lookbook-item img {
  width: 100%;
  height: auto !important; 
  display: block;
  object-fit: contain;
}

.featured-image:hover, .galeria-item:hover, .lookbook-item:hover {
  border-color: #ffffff !important; /* Acende em Branco Puro ao passar o rato */
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-5px) scale(1.01);
}

/* --- MODAIS --- */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(13, 5, 14, 0.85);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--cor-fundo); 
  margin: 10% auto;
  padding: 40px;
  border: 2px solid var(--cor-rosa); 
  width: 90%;
  max-width: 550px;
  border-radius: 15px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 30px rgba(207, 78, 95, 0.3);
}

.close {
  color: #ffffff;
  position: absolute;
  top: 15px; right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover { color: var(--cor-rosa); }

/* Linhas divisórias agora usam o Rosa */
.gold-line {
  border: 0; height: 2px;
  background: var(--cor-rosa);
  margin: 15px auto; width: 60px;
}

/* ==================== ESTILO DO BOTÃO CTA ==================== */
.cta-button {
  display: inline-block;
  background-color: var(--cor-rosa); 
  color: #ffffff;                    
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;       
  border: 2px solid var(--cor-rosa);
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: transparent !important;
  color: var(--cor-rosa) !important;            
  box-shadow: 0 0 20px rgba(207, 78, 95, 0.8);
  transform: scale(1.05);
}

/* Ajuste do Overlay */
.lookbook-overlay {
  position: absolute;
  top: 0; left: 0; 
  width: 100%; height: 100%;
  background: rgba(25, 10, 27, 0.7); 
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lookbook-item:hover .lookbook-overlay {
  opacity: 1;
}

.modal-content h3 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modal-content {
    max-height: 80vh; 
    overflow-y: auto; 
}

.lookbook-item {
  position: relative; 
  overflow: hidden;
  border-radius: 15px;
  border: 3px solid var(--cor-rosa); 
  transition: transform 0.3s ease;
}

.lookbook-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 10, 27, 0.7); 
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; 
  visibility: hidden;
  transition: all 0.3s ease;
}

.lookbook-item:hover .lookbook-overlay {
  opacity: 1;
  visibility: visible;
}

/* Garante o botão cta-button limpo dentro do overlay */
.cta-button {
  background-color: var(--cor-fundo) !important;
  color: var(--cor-rosa) !important;
  border: 2px solid var(--cor-rosa) !important; 
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  z-index: 10; 
}

.cta-button:hover {
  background-color: var(--cor-rosa) !important;
  color: #ffffff !important;
}

/* ==================== GALERIA BRANDING (COM SETAS) ==================== */
.slider-wrapper {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border: 5px solid var(--cor-rosa); 
  border-radius: 15px;
  background: #0d050e;
}

.slides-container {
  height: 350px; 
  width: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.slides-container::-webkit-scrollbar {
  display: none;
}

.slide {
  width: 100%;
  height: 100%;
  flex: 1 0 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  padding: 10px;
}

/* ==================== AJUSTE DAS SETAS ==================== */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  
  background: rgba(25, 10, 27, 0.8); 
  color: #ffffff; 
  border: 2px solid var(--cor-rosa);
  border-radius: 50%;
  
  width: 45px;
  height: 45px;
  cursor: pointer;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 28px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  padding: 0; 
  line-height: 0; 
}

.slide-arrow:hover {
  background: var(--cor-rosa);
  color: var(--cor-fundo);
  border-color: var(--cor-rosa);
  box-shadow: 0 0 15px rgba(207, 78, 95, 0.6); 
}

#slide-arrow-prev { 
  left: 15px; 
  padding-right: 3px; 
}

#slide-arrow-next { 
  right: 15px; 
  padding-left: 3px; 
}

#slide-arrow-prev-app { 
  left: 15px !important; 
  position: absolute;
}

#slide-arrow-next-app { 
  right: 15px !important; 
  position: absolute;
}

.slider-wrapper {
  position: relative; 
  display: block;
}

/* ==================== ESTILOS DO MANIFESTO ==================== */
.manifesto-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 10%;
}

.manifesto-card {
  max-width: 850px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.glow-text {
  font-size: 3rem !important;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 0.5rem;
  color: #ffffff !important;
  text-shadow: 0 0 15px rgba(207, 78, 95, 0.8) !important;
}

.subtitle {
  color: var(--cor-rosa);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.manifesto-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.text-block p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--cor-creme);
}

.gold-line.small {
  width: 40%;
  opacity: 0.4;
  margin: 2rem auto;
  background: var(--cor-rosa);
}

.curadoria-list {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.curadoria-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.curadoria-list span {
  color: var(--cor-rosa);
  margin-right: 10px;
}

.quote {
  font-style: italic;
  font-size: 1.4rem;
  margin-top: 2rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(207, 78, 95, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== NAVBAR RESPONSIVA ==================== */
.btn-menu-mobile {
  display: none; 
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

#img-menu-icon {
  width: 35px;
  filter: drop-shadow(0 0 5px var(--cor-rosa));
}

#nav-menu-mobile {
  position: fixed;
  top: 0;
  right: -100%; 
  width: 75%;
  height: 100vh;
  background: rgba(25, 10, 27, 0.98);
  backdrop-filter: blur(10px);
  padding: 100px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  border-left: 2px solid var(--cor-rosa);
}

#nav-menu-mobile.active {
  right: 0;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-links a {
  color: var(--cor-creme);
  text-decoration: none;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(207, 78, 95, 0.2);
  display: block;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-menu-mobile { display: block; }
  .navbar { width: 90%; }
}

/* ==================== ESTILO MANIFESTO ==================== */
.manifesto-section {
  display: flex;
  justify-content: center;
  padding: 6rem 10% 4rem;
}

.manifesto-card {
  max-width: 850px;
  text-align: center;
  border: 2px solid var(--cor-rosa);
  box-shadow: 0 0 30px rgba(207, 78, 95, 0.3) !important;
}

.glow-text {
  font-size: 2.8rem !important;
  text-shadow: 0 0 15px rgba(207, 78, 95, 0.6) !important;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--cor-rosa);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.manifesto-content h3 {
  margin-top: 2rem;
  color: #ffffff;
  font-size: 1.4rem;
}

.gold-line.small {
  width: 40%;
  opacity: 0.4;
  margin: 2rem auto;
}

.curadoria-list {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.curadoria-list li { margin-bottom: 10px; }
.curadoria-list span { color: var(--cor-rosa); margin-right: 8px; }

.quote {
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 2rem;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(207, 78, 95, 0.3);
}

/* ==================== MODAIS RESPONSIVAS (AJUSTE FINO) ==================== */
@media (max-width: 768px) {
  .modal-content {
    width: 92% !important;
    margin: 15% auto !important;
    padding: 35px 20px 25px !important; 
  }

  .close {
    top: 10px !important;    
    right: 15px !important;  
    font-size: 28px !important; 
    line-height: 0.8 !important; 
    padding: 5px;            
  }
  
  .modal-content h3 {
    font-size: 1.1rem !important;
    padding-right: 30px;     
    text-align: left;        
    margin-top: 0;
  }
}