/* Importing Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Archivo+Black&family=Dancing+Script:wght@400..700&family=Italianno&family=Love+Light&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Satisfy&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Wix+Madefor+Display:wght@400..800&display=swap');

* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #400c0f;
  --color-gray: #4d4d4d;
  --primary-color: #580002;
  --secondary-color: #f3961c;
  --creme-suave: #d6b890;
  --creme-extraSuave: #fffff0;
}

::selection {
  background: var(--primary-color);
  color: white;
}

/*
 font-family: "Allura", cursive;
 font-family: "Love Light", cursive;
 font-family: "Satisfy", cursive;
 font-family: "Roboto", sans-serif;
 font-family: "Montserrat", sans-serif;
 font-family: "Orbitron", sans-serif;
 font-family: "Arizonia", cursive;
 font-family: "Archivo Black", sans-serif;
 font-family: "Inter", sans-serif;
 font-family: "Poppins", sans-serif;
 font-family: "Miniver", cursive;
 */

 
/* Use somente scroll-padding-top no HTML para todas as âncoras */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

a {
  text-decoration: none;
}

button {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  border-radius: 99px;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  height: fit-content;
}

button:hover {
  color: white;
}

section {
  margin-top: 0;
  margin-bottom: 0;
  padding-block: 2rem; /* menos respiro no topo */
  /* IMPORTANTE: sem scroll-margin-top aqui */
}

/* Se o id não estiver no <section>, garanta offset no próprio alvo */
[id] {
  scroll-margin-top: var(--header-h); /* aplica no elemento que tem o id */
}


.title span {
  color: var(--secondary-color);
}

.small-title,
.small-title span {
  font-family: "Satisfy", cursive;
}

/* Opcional: evitar “respiro” visual no topo da section */
/* section h1,
section h2,
section p:first-child {
  margin-top: 0;
} */

@media screen and (max-width: 1024px) {
  /* aplique apenas nas sections que precisam */
  .hero, .welcome, .agenda {
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
  }
}
