/* Complete redesign following official Banguelê website style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-pink: #e91e8c;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --bg-white: #ffffff;
  --bg-light: #f9f9f9;
  --bg-alt: #fafafa;
  --border-color: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-bangue {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-pink);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: var(--bg-white);
  position: relative;
  text-align: center;
}

.hero-container {
  max-width: 800px;
  width: 100%;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  margin-bottom: 3rem;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.logo-text {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-gray);
  margin-top: 0.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.btn-primary {
  padding: 1rem 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--bg-white);
  background: var(--primary-pink);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #d01a7d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text-light);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Sections */
.section {
  padding: 6rem 2rem;
  background: var(--bg-white);
}

.section-alt {
  background: var(--bg-alt);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--bg-white);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card-number {
  font-size: 3rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1rem;
  line-height: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-gray);
  line-height: 1.6;
}

.card-contact {
  background: var(--primary-pink);
  color: var(--bg-white);
  border: none;
}

.card-contact .card-title {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  color: var(--bg-white);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Two Column Content */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.col-image {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-light);
  border-radius: 8px;
}

.emoji-large {
  font-size: 10rem;
}

.col-content {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

/* Lists */
.list-checked {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-checked li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.list-checked li:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-pink);
}

.icon-no {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffe5e5;
  color: #d32f2f;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
}

.icon-yes {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
}

.icon-alert {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff3e0;
  color: #f57c00;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
}

.list-checked p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Alert Box */
.alert-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: #fff3e0;
  border: 2px solid #f57c00;
  border-radius: 8px;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.alert-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.alert-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.alert-content p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.alert-highlight {
  color: #f57c00;
  font-weight: 600;
}

/* Info Box */
.info-box {
  background: var(--bg-white);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.info-box-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-pink);
}

.list-simple {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-simple li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
  line-height: 1.6;
}

.list-simple li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Final Card */
.final-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.final-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.divider-line {
  width: 80px;
  height: 2px;
  background: var(--primary-pink);
  margin: 2rem auto;
}

.thank-you-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.thank-you-box h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.thank-you-box p {
  font-size: 1.125rem;
  color: var(--text-gray);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li,
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Animation Delays */
[data-aos] {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.card:nth-child(1),
[data-aos]:nth-child(1) {
  animation-delay: 0s;
}
.card:nth-child(2),
[data-aos]:nth-child(2) {
  animation-delay: 0.1s;
}
.card:nth-child(3),
[data-aos]:nth-child(3) {
  animation-delay: 0.2s;
}
.card:nth-child(4),
[data-aos]:nth-child(4) {
  animation-delay: 0.3s;
}
.card:nth-child(5),
[data-aos]:nth-child(5) {
  animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    align-items: flex-start;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .logo-text {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .content-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .emoji-large {
    font-size: 6rem;
  }

  .alert-box {
    flex-direction: column;
    padding: 2rem;
  }

  .final-card {
    padding: 2rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }
}
