/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables representing the premium and welcoming palette */
:root {
  --primary: hsl(150, 20%, 25%);       /* Verde Oliva/Sálvia Profundo */
  --primary-dark: hsl(150, 20%, 15%);  /* Sálvia Escuro */
  --primary-light: hsl(150, 18%, 38%); /* Sálvia Intermediário */
  --primary-bg: hsl(150, 25%, 96%);    /* Fundo Sálvia Ultra Suave */
  --secondary: hsl(30, 20%, 40%);      /* Terracota/Areia Quente */
  --accent: hsl(28, 55%, 45%);         /* Terracota Vibrante para CTAs */
  --bg: #faf8f5;                        /* Areia Quente/Off-white super acolhedor */
  --card-bg: rgba(255, 255, 255, 0.85);
  --text: hsl(210, 20%, 18%);          /* Slate Escuro */
  --text-muted: hsl(210, 10%, 45%);
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 10px 30px -10px rgba(45, 60, 50, 0.08);
  --shadow-hover: 0 20px 40px -15px rgba(45, 60, 50, 0.15);
  --border-radius: 16px;
  --font-title: 'Lora', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Main Construction Wrapper */
.container-construction {
  width: 100%;
  max-width: 780px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 60px 50px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: pageFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header */
.construction-header {
  margin-bottom: 40px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo-link svg {
  fill: var(--primary-light);
  transition: var(--transition);
}

.logo-link:hover svg {
  transform: rotate(15deg);
  fill: var(--accent);
}

/* Main Content */
.construction-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-bg);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(45, 60, 50, 0.1);
  animation: slideDown 0.6s ease-out 0.2s both;
}

h1 {
  font-family: var(--font-title);
  color: var(--primary);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 10px;
  animation: slideDown 0.6s ease-out 0.3s both;
}

.intro-text {
  font-size: 1.25rem;
  color: var(--primary-light);
  max-width: 600px;
  font-weight: 500;
  animation: slideDown 0.6s ease-out 0.4s both;
}

.description-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 10px;
  animation: slideDown 0.6s ease-out 0.5s both;
}

/* Action Button */
.action-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0;
  animation: slideDown 0.6s ease-out 0.6s both;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 50px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(220, 90, 50, 0.3);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background-color: hsl(28, 55%, 38%);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(220, 90, 50, 0.4);
}

.btn-whatsapp svg {
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover svg {
  transform: scale(1.15) rotate(5deg);
}

/* Information Grid */
.info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  margin-top: 30px;
  padding-top: 40px;
  border-top: 1px solid rgba(45, 60, 50, 0.08);
  text-align: left;
  animation: slideDown 0.6s ease-out 0.7s both;
}

.info-item {
  display: flex;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.info-text h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Footer */
.construction-footer {
  margin-top: 50px;
  width: 100%;
  border-top: 1px solid rgba(45, 60, 50, 0.05);
  padding-top: 25px;
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: slideDown 0.6s ease-out 0.8s both;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container-construction {
    padding: 40px 24px;
    border-radius: 24px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 30px;
  }
  
  .btn-whatsapp {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
  }
}
