.elementor-28 .elementor-element.elementor-element-5f6507a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-fe892fc *//* PAKKO - Site em Construção | WordPress/Elementor */
:root {
  --pakko-deep-blue: hsl(215, 80%, 12%);
  --pakko-blue: hsl(215, 80%, 25%);
  --pakko-magenta: hsl(330, 85%, 50%);
  --pakko-white: #ffffff;
}

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

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600&display=swap');

.construcao-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pakko-deep-blue) 0%, var(--pakko-blue) 50%, hsl(330, 85%, 35%) 100%);
  overflow: hidden;
  position: relative;
  font-family: 'Inter', sans-serif;
}

/* Background blobs */
.bg-elements { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blob-1 {
  top: 80px; left: 40px;
  width: 288px; height: 288px;
  background: hsla(330, 85%, 50%, 0.1);
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  bottom: 80px; right: 40px;
  width: 384px; height: 384px;
  background: hsla(215, 80%, 25%, 0.2);
  animation: float 6s ease-in-out infinite 0.4s;
}

.blob-3 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: hsla(330, 85%, 50%, 0.05);
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Content */
.construcao-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px;
  max-width: 640px;
  margin: 0 auto;
}

/* Logo */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mandala-container {
  width: 256px;
  height: 256px;
}

.mandala-container svg {
  width: 100%;
  height: 100%;
  animation: spinSlow 20s linear infinite;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pakko-white);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .brand-name { font-size: 4.5rem; }
}

/* Icon box */
.message-area {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--pakko-magenta);
}

.message-area h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--pakko-white);
}

@media (min-width: 768px) {
  .message-area h2 { font-size: 2rem; }
}

.message-area p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 480px;
}

/* Progress */
.progress-area {
  margin-top: 40px;
  max-width: 384px;
  margin-left: auto;
  margin-right: auto;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.progress-bar {
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 9999px;
  background: var(--pakko-magenta);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact */
.contact-area {
  margin-top: 48px;
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--pakko-magenta);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }/* End custom CSS */