/* --------------------------------------------- */
/*  RESET / BASE                                 */
/* --------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Poppins", sans-serif;
  background: #f6f7fb;
  color: #1f1f1f;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* VARIÁVEIS */

:root {
  --primary: #dc3545;
  --primary-light: #e06572;
  --dark: #1f1f1f;
  --card: #ffffff;
  --muted: #6a6a6a;
  --white: #ffffff;
  --rounded: 18px;
  --shadow: 0 8px 20px rgba(0,0,0,0.08);
}



/* --------------------------------------------- */
/*  NAVBAR                                       */
/* --------------------------------------------- */

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  transition: 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-outline {
  padding: 8px 18px;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 20px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.hamburger span {
  transition: .3s;
}



/* ============================
   SEÇÃO INICIAL (HERO NICOLLY)
   ============================ */

.public-info-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #ffe6f4, #fff);
  display: flex;
  justify-content: center;
}

.hero-content {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);

  padding: 45px 40px;
  max-width: 950px;
  width: 100%;
  border-radius: 32px;

  box-shadow: 0 10px 26px rgba(0,0,0,0.12);

  display: flex;
  align-items: center;
  gap: 40px;
}

.profile-pic {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  
  border: 5px solid #fff;

  box-shadow:
    0 0 20px rgba(255, 79, 163, 0.4),
    0 0 30px rgba(83, 211, 148, 0.25);
}

.hero-text {
  flex: 1;
}

.profile-name {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ff4fa3;
}

.bio {
  font-size: 18px;
  color: #444;
  line-height: 1.55;
  margin-bottom: 25px;
  max-width: 600px;
}


/* -------- ESTATÍSTICAS -------- */

.social-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.stat-card {
  background: linear-gradient(135deg, #ffe3f1, #e6fbf1);
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.5);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
  text-align: center;
  min-width: 120px;
}

.stat-card strong {
  display: block;
  font-size: 22px;
  color: #ff4fa3;
}

.stat-card span {
  font-size: 14px;
  color: #2c2c2c;
}


/* -------- BOTÕES -------- */

.links {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ff4fa3;
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  box-shadow: 0 4px 10px rgba(255, 79, 163, 0.3);
}

.btn-primary:hover {
  background: #ff7cbd;
}

.btn-primary.ghost {
  background: transparent;
  border: 2px solid #53d394;
  color: #2f7f5b;
}

.btn-primary.ghost:hover {
  background: #53d394;
  color: #fff;
  box-shadow: 0 4px 10px rgba(83, 211, 148, 0.22);
}


/* -------- RESPONSIVIDADE -------- */

@media (max-width: 820px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .profile-pic {
    width: 165px;
    height: 165px;
  }

  .social-stats {
    justify-content: center;
  }

  .links {
    justify-content: center;
  }
}



/* --------------------------------------------- */
/*  SEÇÕES DE PRODUTOS                          */
/* --------------------------------------------- */

.produtos-box {
  padding: 60px 20px;
  text-align: center;
}

.produtos-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.produtos-box .lead {
  color: var(--muted);
  margin-bottom: 40px;
}

.produtos-list {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card-produto {
  background: var(--white);
  padding: 15px;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card-produto:hover {
  transform: translateY(-4px);
}

.card-produto img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
}

.card-produto h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.card-produto p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 5px;
}

.card-produto .btn-primary {
  margin-top: auto;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}


/* --------------------------------------------- */
/*  FORMULÁRIO DE CONTATO                        */
/* --------------------------------------------- */

.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: auto;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}



/* --------------------------------------------- */
/*  FOOTER                                       */
/* --------------------------------------------- */

.site-footer {
  background: var(--dark);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.site-footer p {
  opacity: 0.8;
}



/* =======================
      MODAL DE LOGIN
   ======================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 192, 230, 0.25);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

.modal-content {
  width: 100%;
  max-width: 420px;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  padding: 35px 32px;

  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  position: relative;
  animation: fadeUp 0.35s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão de fechar */
.fechar {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #ff4fa3;
  color: #fff;
  border: none;
  font-size: 22px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 79, 163, 0.3);
  transition: 0.2s;
}

.fechar:hover {
  background: #ff7cbd;
}

/* Título */
.modal-content h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #ff4fa3;
  margin-bottom: 10px;
}

/* Descrição */
.modal-desc {
  text-align: center;
  font-size: 15px;
  color: #333;
  line-height: 1.55;
  margin-bottom: 25px;
}

/* Inputs */
.modal-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-inputs input {
  background: rgba(255,255,255,0.8);
  border: 2px solid rgba(255, 79, 163, 0.4);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
  transition: 0.25s;
}

.modal-inputs input:focus {
  border-color: #ff4fa3;
  box-shadow: 0 0 8px rgba(255, 79, 163, 0.3);
}

/* Botão */
.modal-btn {
  width: 100%;
  font-size: 16px;
  padding: 14px 0;
  border-radius: 14px;
  box-shadow: 0 5px 12px rgba(255, 79, 163, 0.28);
}

/* Mensagem */
.msg {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

/* Contato */
.modal-contato {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #444;
}

.modal-contato a {
  color: #53d394;
  font-weight: 600;
}

body.modal-open {
  overflow: hidden !important;
}

/* --------------------------------------------- */
/*  RESPONSIVO                                   */
/* --------------------------------------------- */

@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 70%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: 0.3s;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    height: auto;
    padding: 20px 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    text-align: center;
    flex-direction: column;
  }

  .links {
    justify-content: center;
  }

  .social-stats {
    justify-content: center;
  }
}


/* ---------------------- CARROSSEL DE PRODUTOS ---------------------- */

.produtos-carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 45px; /* espaço para botões */
}

.produtos-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.produtos-carousel::-webkit-scrollbar {
  height: 8px;
}
.produtos-carousel::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

.prod-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 26px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  transition: 0.2s;
}

.prod-btn:hover {
  background: var(--primary-light);
}

.prod-btn.left {
  left: 0;
}

.prod-btn.right {
  right: 0;
}

/* cards dentro do carrossel */
.card-produto {
  min-width: 240px;
  max-width: 240px;
  flex-shrink: 0;
}

.produtos-carousel-container.centered .produtos-carousel {
  justify-content: center;
}

.produtos-carousel-container.centered .card-produto {
  margin: 0 auto;
}


/* ============================================================
    FOOTER MODERNO • MIDIA KIT
============================================================ */
.mk-footer {
  margin-top: 60px;
  padding: 40px 0 20px;
  background: var(--card);
  color: var(--text);
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* --- GRID PERFEITO --- */
.footer-container {
  display: grid;
  grid-template-columns: 1fr; /* mobile */
  gap: 40px;
  text-align: center;
}

@media (min-width: 781px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
    align-items: start;
  }
}

/* Foto + nome */
.footer-profile {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  margin: 0 auto 12px;
}

.footer-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-desc {
  font-size: .92rem;
  opacity: .75;
  margin-top: 6px;
}

/* Redes sociais */
.social-icons a {
  font-size: 1.6rem;
  color: var(--text);
  margin: 0 10px;
  transition: .25s;
}

.social-icons a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

/* Agência */
.a2l-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  transition: .25s;
}

.a2l-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.a2l-link:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

/* Linha inferior */
.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  font-size: .9rem;
  opacity: .7;
}