/* ============================================= */
/*                  IMPORTS & VARIÁVEIS          */
/* ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

:root {
  /* Cores */
  --cor-fundo: #FFFBFB;
  --cor-gradiente: #5881f0;
  --cor-primaria: #f470b5;
  --cor-secundaria: #dd2d7c;
  --cor-terciaria: #FFD166;
  --cor-quarternaria: #FCFCFC;
  --cor-texto: #242424;
  --cor-texto-secundario: #88111B;
  --cor-texto-terciario: #4B5563;
  --cor-footer: #930DE4;
  --cor-header: #f7f7f7e0;

  /* Fontes */
  --fonte-principal: 'Poppins', sans-serif;
  --fonte-logo: "Galada", cursive;
}

/* ============================================= */
/*                  RESET & BASE                 */
/* ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  overflow-x: hidden;
  font-family: var(--fonte-principal);
  text-align: center;
  animation: fadeIn 1s;
  background-color: #f3ebec;
}

/* ============================================= */
/*                  HEADER                       */
/* ============================================= */
header {
  padding: 0 20px;
  backdrop-filter: blur(9px);
  background-color: var(--cor-header);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.logo {
  font-weight: 300;
  font-size: 2.4em;
  font-family: var(--fonte-logo);
  background: linear-gradient(92deg, #f470b5 0%, #dd2d7c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2.6rem;
  text-decoration: none;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.logo a:hover {
  transform: scale(1.1);
}

/* Menu Hamburguer */
#menu-toggle {
  display: none;
}
.action-btn {
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  background-color: #fac0ca;
  color: #88111B;
  transition: all 0.3s ease;
  border-radius: 50px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.action-btn:hover {
  background-color: #FFCDD5;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.menu-icon {
  display: none;
  cursor: pointer;
  padding: 15px;
  position: relative;
  z-index: 1001;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.05);
}

.menu-icon__line {
  height: 3px;
  width: 30px;
  background-color: var(--cor-primaria);
  border-radius: 3px;
  transition: all 0.3s ease;
  margin: 5px 0;
  transform-origin: center;
}

nav {
  display: flex;
  gap: 15px;
  padding-left: 30px;
  align-items: center;
  animation: fadeIn 1s ease-in-out;
  transition: all 0.3s ease;
}

nav a {
  text-decoration: none;
  padding: 10px 10px;
  font-weight: 500;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav a:hover {
  color: var(--cor-secundaria);
  transform: scale(1.1);
}

/* ============================================= */
/*                  HERO SECTION                 */
/* ============================================= */
/* ============================================= */
/*                  INTRO TEXT                  */
/* ============================================= */
.intro-text {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #d15997 0%, #dd2d7c 100%);
  color: white;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.intro-content {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.intro-content span {
  font-family: var(--fonte-logo);
}

.intro-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.intro-content p {
  font-size: 1.5rem;
  font-weight: 300;
}

.scroll-arrow-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin: 0;
}

.scroll-down-arrow {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 100;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  40% {
    transform: rotate(45deg) translateY(-10px);
  }

  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

/* Adicione isso para a seção intro-text */
.intro-text {
  position: relative;
  min-height: 100vh;
  /* Garante que o container ocupe a tela toda inicialmente */
  padding-bottom: 60px;
  /* Espaço para a seta */
}

/* Animação de pulo suave */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%) rotate(45deg);
  }

  40% {
    transform: translateY(-15px) translateX(-50%) rotate(45deg);
  }

  60% {
    transform: translateY(-7px) translateX(-50%) rotate(45deg);
  }
}

/* Opcional: efeito hover */
.scroll-down-arrow:hover {
  border-color: #666;
}

/* Opcional: esconder após scroll */
.scroll-down-arrow.hidden {
  display: none;
}

.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.main-content {
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f7f2f2;
}

.main-content h2 {
  font-size: 3em;
}

.main-content p {
  margin-top: 20px;
  font-size: 1.3em;
}

.main-content i {
  color: var(--cor-texto-terciario);
}

/* ============================================= */
/*                  HERO 2                       */
/* ============================================= */

.hero2 .hero-image {
  transition: opacity 0.5s ease;
  will-change: opacity;
}

.hero2 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero2 .hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}


.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flamingo {
    font-size: 8rem;
}

.logo-text {
    font-size: 6rem;
    font-family: var(--fonte-logo);
    background: linear-gradient(92deg, #f470b5 0%, #dd2d7c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Opcional: escurecer a imagem para melhor contraste */
.hero2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* ============================================= */
/*                  FOOTER                       */
/* ============================================= */
footer {
  padding: 20px;
  color: #00000088;
  background: rgba(255, 224, 228, 1);
}

footer i {
  font-weight: 300;
}

.made-by {
  text-decoration: none;
  color: inherit;
}

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

  /* Header */
  .menu-icon {
    display: block;
  }

  header {
    backdrop-filter: blur(9px);
    background-color: var(--cor-header);
    transition: top 0.3s;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .header-hidden {
    top: -100px;
  }

  nav {
    position: absolute;
    gap: 0;
    padding: 0;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    visibility: hidden;
    background-color: var(--cor-header);
    backdrop-filter: blur(9px);
  }

  #menu-toggle:checked~nav {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  nav a {
    display: block;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    color: var(--cor-primaria);
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: -1;
  }

  #menu-toggle:checked~nav a {
    opacity: 1;
    transform: translateY(0);
  }

  nav a:hover {
    transform: scale(1.1);
    transform-origin: left center;
    color: var(--cor-secundaria);
    background-color: #FFCDD5;
    margin-left: 10px;
  }

  nav a:hover::before {
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.1);
  }

  nav a:last-child:hover {
    transform-origin: left bottom;
  }

  .logo {
    font-size: 1.8em;
  }

  .logo a {
    padding: 0;
  }

  .logo-icon {
    max-width: 45px;
  }

  /* Menu Hamburguer Animation */
  #menu-toggle:checked+.menu-icon .menu-icon__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #menu-toggle:checked+.menu-icon .menu-icon__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  #menu-toggle:checked+.menu-icon .menu-icon__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* INTRO CONTENT */
  .intro-content h1 {
    font-size: 2em;
    letter-spacing: 0;
  }

  .intro-content p {
    font-size: 1.2em;
  }

  .scroll-arrow-container {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }

  .scroll-down-arrow {
    margin-left: 25px;
  }

  .hero2 {
    height: 80vh;
  }


  /* MAIN CONTENT */
  .main-content {
    padding: 10px;
  }

  .main-content h2 {
    font-size: 1.5em;
    letter-spacing: 0;
  }

  .main-content p {
    font-size: 1em;
  }
  .flamingo {
    font-size: 4rem;
}

.logo-text {
    font-size: 3rem;
    font-family: var(--fonte-logo);
    background: linear-gradient(92deg, #f470b5 0%, #dd2d7c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
}

@media (min-width: 769px) {
  nav {
    display: flex !important;
  }
}