/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIÁVEIS */
:root {
  --primary: #ff7a00;
  --dark: #1a1a1a;
}

/* BODY COM SEU GRADIENTE */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f87f15, #ffb380);
  color: var(--dark);
  line-height: 1.6;
}

/* NAVBAR GLASS */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);

  z-index: 100;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.logo {
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Texto normal */
.logo-light {
  font-size: 1.4rem;
  color: #000000;
  opacity: 0.9;
}

/* IA com efeito neon */
.logo-ia {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fefefe;

  text-shadow:
    0 0 4px #c6c6c6,
    0 0 10px #ffb066,
    0 0 20px #ff8c00,
    0 0 40px #ff7a00,
    0 0 80px rgba(255, 122, 0, 0.6);
}

nav a {
  margin-left: 1.8rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.cta {
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
}

/* HERO MAIS IMPACTANTE */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding: 160px 60px 80px 60px;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 620px;
  padding-left: 10vh;
  
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero span {
  color: white;
}

.hero p {
  margin: 2rem 0;
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 520px;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}


/* movimento */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* BOTÕES */
.hero-buttons {
  margin-top: 1rem;
  font-size: 14px;
}

/* BASE (IMPORTANTE: TRANSITION AQUI) */
.btn-primary {
  background: #008724c0;
  font-weight: 500;
  font-size: 14px;
  color: white;
  padding: 1.5rem 4.0rem;
  border-radius: 20px;
  
  border: none;

  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow:
      0 12px 0 #703600,
    0 25px 45px rgba(0, 0, 0, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 6px 0 #cc6200;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

/* SECONDARY */
.btn-secondary {
  margin-left: 1rem;
  padding: 1.5rem 4.0rem;
  border-radius: 12px;
  border: none;
  background: #008724c0;
  font-weight: 500;
  font-size: 14px;
  color: white;

  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s ease;
  will-change: transform;
}

.btn-secondary:hover {
  transform: translateY(-5px);
  box-shadow:
        0 12px 0 #703600,
    0 25px 45px rgba(0, 0, 0, 0.5);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 6px 0 #492300;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hero span {
  color: white;
}


/* FLOR COMO ELEMENTO VISUAL */
.hero::after {
  content: "";
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 1200px;
  height: 500px;

  background: url("assets/flor.svg") no-repeat center;
  background-size: 100%;

  pointer-events: none;
  z-index: 1;
}

/* VISUAL PREMIUM */
.hero-visual {
  width: 500px;
  height: 500px;
  border-radius: 50%;

  background: url("assets/socias.svg") no-repeat center;

  box-shadow:
    inset 0 15px 50px rgba(0,0,0,0.1),
    0 40px 80px rgba(0,0,0,0.25);

  transition: transform 0.5s ease;
}

.hero-visual:hover {
  transform: scale(1.10)  rotate(3deg);
}

/* ABOUT MAIS STARTUP */
.about {
  display: flex;
  justify-content: center;
  padding: 100px 20px;
}

.about-box {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 20px;
  max-width: 1200px;
}

.about-box h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-box p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}


.portfolio {
  text-align: center;
  padding: 60px 20px;
  font-size: 20px;
}

.carousel {
  overflow: hidden;
  max-width: 1200px;
  max-height: 900px;
  margin: auto;
  margin-top: 30px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.carousel-track img {
  width: 550px; /* controla quantas aparecem */
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* animação contínua */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ===== FOUNDERS / TEAM / CONTACT (PADRÃO ABOUT) ===== */

.founders,
.team,
.contact {
  display: flex;
  justify-content: center;
  padding: 3rem;
}


/* variação leve respeitando seu gradient */
.team {
  background: transparent;
}

.contact {
  background: transparent;
}

/* reaproveita o glass */
.founders .about-box,
.team .about-box,
.contact .about-box {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 20px;
  max-width: 1200px;
  max-height: 900px;
}

/* títulos seguem padrão existente */
.founders h2,
.team h2,
.contact h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* nomes das sócias (único elemento novo real) */
.founders h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--primary);
}

/* textos consistentes */
.founders p,
.team p,
.contact p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

/* frase final destaque */
.founders p:last-child {
  margin-top: 40px;
  font-style: italic;
}


/* espaçamento entre blocos */
.group-section .about-box {
  margin-bottom: 40px;
}

/* TIPOGRAFIA MAIS IMPACTANTE */
h1, h2, h3 {
  letter-spacing: -0.5px;
}


.about-box h2 span {
  background: linear-gradient(90deg, #f98f0e, #db6d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO */
.hero p strong {
  display: block;
  margin-top: 8px;
  font-weight: 600;
}

/* ABOUT */
.highlight {
  color: var(--primary);
  font-weight: 600;
}

.about-signature {
  margin-top: 20px;
  font-style: italic;
}

/* FESTAS */
.festas {
  display: flex;
  justify-content: center;
  padding: 100px 20px;
}

.festa-item {
  margin-bottom: 30px;
  padding-left: 10px;
  border-left: 3px solid rgba(255,122,0,0.4);
  transition: 0.3s;
}

.festa-item:hover {
  border-left: 3px solid var(--primary);
  transform: translateX(20px);
}

.festa-item h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.festa-item span {
  display: block;
  margin-top: 6px;
  font-weight: 500;
  opacity: 0.85;
}


/* SERVICES */
.services {
  display: flex;
  gap: 1.5rem;
  padding: 80px 40px;
  flex-wrap: wrap;
  width: 115vh;
}

.card {
  background: white;
  padding: 2.2rem;
  border-radius: 18px;
  flex: 1;
  min-width: 260px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.card h3 {
  margin-bottom: 0.8rem;
}

.card:hover {
  transform: translateY(-20px);
}

.carousel2 {
  overflow: hidden;
  max-width: 1200px;
  max-height: 900px;
  margin: auto;
  margin-top: 30px;
}

.carousel2-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll2 30s linear infinite;
}

.carousel2-track img {
  width: 1000px; /* menor que o anterior */
  height: 400px;
  object-fit: cover; 
  border-radius: 16px;
  flex-shrink: wrap;
}

/* animação contínua */
@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CONTAINER */
.contact-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 115vh;
}

/* BASE PADRÃO (consistência com seu site) */
.contact-buttons button {
  display: flex;
  flex-direction: column;
  align-items: start;
  align-content: space-between;
  
  
  padding: 1.2rem 1.6rem;
  border-radius: 16px;
  border: none;

  font-weight: 600;
  font-size: 15px;

  cursor: pointer;

  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform;
}
button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-bottom: 15px;
  vertical-align: middle;

}


/* TEXTO SECUNDÁRIO */
.contact-buttons span {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}


/* =========================
   WHATSAPP (PRINCIPAL)
========================= */
.btn-contact-primary {
  background: #008724a5;
  color: white;
  margin-left: 2.2rem;

  box-shadow:
    0 10px 0 #703600,
    0 20px 40px rgba(0,0,0,0.25);
}

.btn-contact-primary:hover {
  transform: translateY(-6px);
  box-shadow:
    0 14px 0 #437000,
    0 28px 50px rgba(0,0,0,0.35);
}

.btn-contact-primary:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 0 #cc6200;
}


/* =========================
   INSTAGRAM
========================= */
.btn-contact-secondary {
  background: rgba(255,255,255,0.4);
  color: var(--dark);
  margin-left: 2.2rem;

  backdrop-filter: blur(10px);

  box-shadow:
    0 10px 0 #703600,
    0 20px 40px rgba(0,0,0,0.25);
}

.btn-contact-secondary:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 0 rgba(213, 0, 60, 0.619),
    0 28px 50px rgba(0,0,0,0.3);
}

.btn-contact-secondary:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 5px 0 rgba(120,60,0,0.8);
}


/* =========================
   EMAIL (TERCIÁRIO)
========================= */
.btn-contact-tertiary {
  background: rgba(0,0,0,0.15);
  color: white;
  margin-left: 2.2rem;

 box-shadow:
    0 10px 0 #703600,
    0 20px 40px rgba(0,0,0,0.25);
}

.btn-contact-tertiary:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 0 rgba(205, 0, 0, 0.5),
    0 28px 50px rgba(0,0,0,0.35);
}

.btn-contact-tertiary:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 5px 0 rgba(0,0,0,0.7);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 60px 20px;
  opacity: 0.8;
}

@media (max-width: 2000px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 80px;
    padding-left: 20px;
    gap: 40px 60px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-visual {
    width: 400px;
    height: 400px;
  }

  .hero::after {
    width: 850px;
    height: 650px;
  }
}
/* =========================
   DESKTOP NOTEBOOK (até 1440px)
========================= */
@media (max-width: 1440px) {

  .hero {
    padding: 150px 60px 80px 60px;
    gap: 40px 60px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-visual {
    width: 360px;
    height: 360px;
  }

  .hero::after {
    width: 450px;
    height: 450px;
    opacity: 0.75;
  }
}


/* =========================
   DESKTOP MENOR / TABLET HORIZONTAL (1024px)
========================= */
@media (max-width: 1024px) {

  /* HERO vira estrutura mais compacta */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "content"
      "flower"
      "visual";

    padding: 140px 40px 70px 40px;
    text-align: center;

    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  /* FLOR vira elemento central controlado */
  .hero::after {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    width: 520px;
    height: 300px;

    margin: 0 auto;
    opacity: 0.5;
  }

  .hero-visual {
    width: 360px;
    height: 360px;
  }
  /* CONTACT BUTTONS - TABLET */
.contact-buttons {
  justify-content: center;
}

.contact-buttons button {
  align-items: center;
  text-align: center;
}
}



/* =========================
   TABLET (768px)
========================= */
@media (max-width: 768px) {

  /* NAVBAR FIX */
  .navbar {
    padding: 0.9rem 1rem;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .logo {
    gap: 6px;
  }

  .logo-light {
    font-size: 0.95rem;
  }

  .logo-ia {
    font-size: 1.4rem;
  }

  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* HERO */
  .hero {
    padding-top: 110px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
    gap: 25px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1.05rem;
  }

  /* BOTÕES */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .btn-secondary {
    margin-left: 0;
  }

  /* HERO VISUAL */
  .hero-visual {
    display: none;
  }

  /* FLOR reduzida */
  .hero::after {
    display: none;
  }
  /* CONTACT BUTTONS - MOBILE */
.contact-buttons {
  flex-direction: column;
  align-items: start;
  gap: 20px;
  margin-left: none;
}

.contact-buttons button {
  width: 100%;
  max-width: 320px;

  align-items: start;
  text-align: start;
}

.contact-buttons span {
  text-align: start;
}
}


/* =========================
   MOBILE (480px)
========================= */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-visual {
    display: none;
  }

  /* remove flor pra não poluir */
  .hero::after {
    display: none;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 100%;
  }
  /* CONTACT BUTTONS - MOBILE PEQUENO */
.contact-buttons button {
  max-width: 100%;
  padding: 1.1rem 1.2rem;
  margin-left: none;
}

.contact-buttons span {
  font-size: 12px;
}
}