/*
Theme Name: Manus Materno
Theme URI: https://manusmaterno.com.br
Author: Manus Materno
Description: Tema de página em construção para o Colégio Manus Materno - Berçário e Educação Infantil
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: manus-materno
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap");

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

:root {
  --background: hsl(30, 30%, 96%);
  --foreground: hsl(260, 30%, 15%);
  --primary: hsl(24, 85%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(264, 55%, 45%);
  --muted-foreground: hsl(260, 10%, 40%);
  --border: hsl(30, 15%, 82%);
  --card: hsl(30, 20%, 98%);
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Background texture */
.bg-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
}

/* Main content */
.content-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  animation: fadeInUp 0.8s ease-out both;
}

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

/* Logo */
.logo {
  width: 18rem;
}

@media (min-width: 640px) {
  .logo {
    width: 20rem;
  }
}

@media (min-width: 768px) {
  .logo {
    width: 24rem;
  }
}

/* Badge */
.badge {
  display: inline-block;
  border-radius: 9999px;
  background-color: hsla(24, 85%, 55%, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-top: 1.5rem;
}

/* Subtitle */
.subtitle {
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

/* Divider */
.divider {
  height: 1px;
  width: 4rem;
  background-color: hsla(260, 30%, 15%, 0.4);
  margin-top: 1.5rem;
}

/* Contact text */
.contact-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

/* Buttons wrapper */
.buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease;
  border: none;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}

/* Instagram button */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn-instagram:hover {
  transform: scale(1.05);
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
}
