:root {
  --turquoise: #0d81b8;
  --orange: #ff8a3d;
  --hotpink: #ff2d8b;
  --yellow: #ffe066;
  --bg: #ffffff;
  --muted: #666666;
  --card-shadow: 0 6px 18px rgba(0,0,0,0.08);
  --img-radius: 12px;
}

/* Reset e base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: Calibri, Candara, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: #222;
  line-height: 1.5;
  position: relative;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* HEADER */
header {
  background: var(--turquoise) url('imagens/graffiti-fundo.png') center/cover no-repeat;
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img.logo-img {
  height: 100px;
  width: auto;
  border-radius: var(--img-radius);
  display: block;
}

nav ul {
  display: flex;
  gap: 14px;
  align-items: center;
}

nav a {
  color: #053;
  opacity: 0.95;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
}

nav a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}

.menu-toggle { display: none; }

@media(max-width:768px) {
  nav ul {
    flex-direction: column;
    background: var(--turquoise);
    padding: 12px;
    border-radius: 8px;
    position: absolute;
    top: 70px;
    right: 16px;
    display: none;
  }

  nav ul.show { display: flex; }
  .menu-toggle {
    display: block;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }
}

/* BOTÃO CONTACTOS */
.cta {
  background: var(--hotpink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
}
.cta:hover { background: var(--orange); }

/* SECTIONS */
section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

section h2 {
  color: var(--turquoise);
  margin-bottom: 20px;
}

section h3 { margin-bottom: 20px; }

section p {
  max-width: 700px;
  margin: 0 auto 20px;
  text-align: justify;
  hyphens: auto;
}

.icon-section {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--hotpink);
}

/* CARTÕES */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: var(--yellow);
  border-radius: 16px;
  padding: 20px;
  width: 250px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.card h3 {
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
}

.card p {
  font-size: 14px;
  text-align: justify;
  hyphens: auto;
}

.card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* IMAGENS DENTRO DOS CARTÕES */
.card img {
  width: 80%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 12px auto;
}

/* LEMA (frase principal) */
.lema {
  font-family: 'Pacifico', cursive;
  font-size: 28px;
  color: var(--hotpink);
  margin: 18px auto 0;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255,45,139,0.06);
  box-shadow: var(--card-shadow);
  text-align: center;
}

/* IMAGENS GERAIS */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--img-radius);
}

#inicio img {
  width: 80%;
  margin-top: 20px;
}

/* SOL DECORATIVO */
.sol-decorativo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
  animation: float-sol 12s ease-in-out infinite alternate;
}

@keyframes float-sol {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-10px) translateX(5px); }
  50% { transform: translateY(-20px) translateX(0); }
  75% { transform: translateY(-10px) translateX(-5px); }
  100% { transform: translateY(0) translateX(0); }
}

/* FOOTER */
footer {
  padding: 40px 0;
  background: #f7f7fb;
  border-top: 1px solid #eee;
  text-align: center;
  position: relative;
  z-index: 1;
}

footer .contact-info {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

footer .contact-info i {
  margin-right: 6px;
  color: var(--hotpink);
}

/* RESPONSIVO */
@media(max-width:768px) {
  .brand img.logo-img { height: 80px; }
  nav a { font-size: 16px; }
  .lema { font-size: 24px; }
}

@media(max-width:500px) {
  .contact-info { flex-direction: column; align-items: center; gap: 6px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}