/* =============================================
   FRAME – Mulheres & Tech | Estilos Globais
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Variáveis de Cor */
:root {
  --purple:    #691d6b;
  --magenta:   #74165a;
  --lime:      #a0cf19;
  --lime-light:#daff70;
  --pink-soft: #ecb3cb;
  --pink-bg:   #fedcff;
  --dark:      #1a1a1a;
  --crimson:   #bc204b;
  --white:     #ffffff;
  --gray:      #666666;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--pink-bg);
  color: var(--dark);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* =============================================
   ANIMAÇÕES
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* =============================================
   NAVBAR
   ============================================= */
nav {
  background: var(--purple);
  padding: .9rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo-text {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.15;
}
.logo-text small {
  display: block;
  color: var(--lime-light);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 500;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--lime-light);
  border-bottom-color: var(--lime-light);
}

/* Hamburguer (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
  display: inline-block;
  background: var(--lime-light);
  color: var(--dark);
  padding: .78rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: transform .18s, background .18s;
}
.btn:hover { transform: scale(1.04); background: #c9ef3a; }

.btn-outline {
  background: transparent;
  color: var(--lime-light);
  border: 2px solid var(--lime-light);
  padding: .72rem 1.9rem;
}
.btn-outline:hover { background: var(--lime-light); color: var(--dark); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--purple);
  padding: 6rem 2.5rem 5rem;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}
.hero h1 mark {
  background: none;
  color: var(--lime-light);
}
.hero p {
  color: rgba(255,255,255,.78);
  margin: 1.3rem auto 0;
  max-width: 480px;
  line-height: 1.8;
  font-size: 1rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--purple);
}
.section-header p {
  color: var(--gray);
  margin-top: .6rem;
  font-size: .95rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* =============================================
   PILLARS (HOME)
   ============================================= */
.pillars-section {
  padding: 4rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 4px solid var(--magenta);
  transition: transform .22s;
}
.pillar-card:hover { transform: translateY(-6px); }
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pillar-card h3 {
  color: var(--purple);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.pillar-card p { font-size: .86rem; color: var(--gray); line-height: 1.65; }

/* =============================================
   BANNER CTA
   ============================================= */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 2.5rem;
  margin: 0 2.5rem 3rem;
  border-radius: 16px;
}
.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
}
.cta-banner h2 em { color: var(--lime-light); font-style: normal; }
.cta-banner p {
  color: rgba(255,255,255,.62);
  font-size: .93rem;
  max-width: 400px;
  margin: .85rem auto 2rem;
  line-height: 1.75;
}

/* =============================================
   PAGE TOP (Sobre / Contato)
   ============================================= */
.page-top {
  padding: 4.5rem 2.5rem 3.5rem;
  text-align: center;
}
.page-top.magenta { background: var(--magenta); }
.page-top.dark    { background: var(--dark); }
.page-top h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
}
.page-top p {
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin: 1rem auto 0;
  line-height: 1.78;
  font-size: .95rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-body {
  max-width: 820px;
  margin: 3rem auto;
  padding: 0 2.5rem;
}
.about-section { margin-bottom: 2.5rem; }
.about-section h2 {
  color: var(--purple);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .75rem;
  padding-bottom: .45rem;
  border-bottom: 2px solid var(--pink-soft);
}
.about-section p {
  color: #444;
  line-height: 1.85;
  font-size: .93rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.35rem;
  border-left: 4px solid var(--crimson);
  transition: transform .2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card h4 {
  color: var(--magenta);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.value-card p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 2.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .22s;
}
.contact-card:hover { transform: translateY(-6px); }
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 {
  color: var(--dark);
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.contact-card p { font-size: .83rem; color: #888; line-height: 1.55; }
.contact-chip {
  display: inline-block;
  margin-top: 1rem;
  background: var(--lime-light);
  color: var(--dark);
  padding: .45rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
  border: none;
  font-family: var(--font);
}
.contact-chip:hover { background: #c9ef3a; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--purple);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2rem;
  font-size: .82rem;
  margin-top: 1rem;
}
footer strong { color: var(--lime-light); font-weight: 600; }

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 768px) {
  nav { padding: .8rem 1.25rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--purple);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: .5rem 0; border-bottom: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 4rem 1.5rem 3rem; }
  .pillars-section { padding: 2.5rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cta-banner { margin: 0 1.5rem 2.5rem; padding: 3rem 1.5rem; }
  .page-top { padding: 3.5rem 1.5rem 2.5rem; }
  .about-body { padding: 0 1.5rem; margin-top: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding: 0 1.5rem; }
}

@media (min-width: 769px) and (max-width: 960px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
