/* ====== 1. Variáveis e Tema ====== */
:root {
  --rosa: #ec899d;
  --rosa-hover: #d66f85;
  --rosa-suave: #FBE3E8;
  --texto: #555555;
  --texto-escuro: #2b2b2b;
  --branco: #ffffff;
  --nav-altura: 80px;
  --radius: 16px;
  --shadow-sm: 0 6px 15px rgba(0, 0, 0, .05);
  --shadow-hover: 0 15px 30px rgba(236, 137, 157, 0.25);
}

/* ====== 2. Base ====== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--texto);
  background: var(--branco);
  overflow-x: hidden;
}

section {
  scroll-margin-top: calc(var(--nav-altura) + 20px);
}

.brand-title {
  font-family: "Playfair Display", serif;
  color: var(--texto-escuro);
}



/* ====== 3. Botões ====== */
.btn-rosa {
  background-color: var(--rosa);
  border-color: var(--rosa);
  color: #fff;
  box-shadow: var(--shadow-sm);
  border-radius: 50px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-rosa:hover {
  background-color: var(--rosa-hover);
  border-color: var(--rosa-hover);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-rosa {
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-rosa:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #fff;
  color: #fff;
}

/* ====== 4. Navegação ====== */
.nav-glass {
  min-height: var(--nav-altura);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-link {
  color: var(--texto-escuro);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rosa);
}

.navbar-toggler {
  border: none;
  background-color: var(--rosa);
  padding: 0.5rem;
  border-radius: 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ====== 5. Hero ====== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-altura);
  color: var(--branco);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url('img/hero.jpg') center/cover no-repeat;
}

.hero-content h1 {
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  color: #fff;
}

/* ====== 6. Imagens com Efeito  ====== */
.img-hover-effect {
  border-radius: var(--radius);
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;


  width: 100%;
  height: auto;

}

.img-hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.text-rosa-destaque {
  color: var(--rosa);
  font-weight: 700;
}

.chip {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}


/* ====== 7. Cards ====== */
.card-soft {
  border: none;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
  height: 100%;
}

.card-soft:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.icon-badge {
  width: 50px;
  height: 50px;
  background: var(--rosa-suave);
  color: #b44b63;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ====== 8. Seções ====== */
.section-pad {
  padding: 4rem 0;
}

.bg-soft {
  background-color: var(--rosa-suave);
}


/* ====== 9. Galeria com Overlay ====== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(236, 137, 157, 0.7);
  /* Cor rosa com transparência */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* Escondido por padrão */
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Efeito Hover */
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  /* Mostra o nome no hover */
}

.gallery-item:hover img {
  transform: scale(1.1);
  /* Zoom suave na imagem */
}



/* ====== 10. Rodapé ====== */
footer {
  font-size: small;
  background: #1a1a1a;
  color: #ccc;
  padding: 3rem 0;
}

footer a {
  font-size: small;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

footer a:hover {
  opacity: 1;
  color: var(--rosa);
}

/* ====== WhatsApp Flutuante ====== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}


/* ====== Mobile  ====== */
@media (min-width: 992px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-pad {
    padding: 3rem 0;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .experience-badge {
    right: 0;
    bottom: -10px;
    font-size: 0.8rem;
  }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    align-items: flex-end;
    padding-bottom: 10px;
  }
}

  .gallery-overlay span {
    font-size: 0.8rem;
  }


/* === AJUSTE DO MENU MOBILE (BACKGROUND) === */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #ffffff;
    /* Fundo branco para leitura */
    margin-top: 15px;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    /* Sombra forte para destacar */
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid #f0f0f0;
    /* Linha separadora suave */
    margin-bottom: 5px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    /* Mais espaço para o dedo */
  }

  /* Remove a borda do último item */
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
}