/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --confeitudo-red: #e0a7c8;

  --confeitudo-blue: #a1e3c8;
  --confeitudo-dark: #1a1a1a;
  --confeitudo-gray: #666666;

  --confeitudo-brown: #793327;
}

body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1a1a1a;
  background-color: white;
}

.font-sans {
  font-family: "Inter", sans-serif;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-gray-800 {
  color: #1f2937;
}

.bg-white {
  background-color: white;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  background-color: var(--confeitudo-red);
  color: white;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  fill: white;
  stroke: none;
  width: 28px;
  height: 28px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.svg-draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.animate-draw {
  animation: draw 1.5s ease-out forwards;
}

.animate-delay-200 {
  animation-delay: 200ms;
}

.animate-delay-500 {
  animation-delay: 500ms;
}

#ToDay {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
#ToDay:hover {
  color: #03a4e9;
}
