/*
=====================================
COLÉGIO EXPLORARTE
STYLE.CSS (Padrão Identidade Visual)
=====================================
*/

:root {
  --rosa: #F56BA8;
  --rosa-claro: #FF8FC1;
  --amarelo: #F8C33A;
  --azul: #143C6D;
  --verde: #7DC66A;
  --roxo: #A868E8;
  --branco: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* HEADER / TOPO */

.header {
  background: #fff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  width: 180px;
  height: 180px;
  background-image: url('https://drive.google.com/thumbnail?id=1WZZJmrIwNPcScnBekddae0LFXwbaaFF9&w=1000');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu a {
  color: var(--azul);
  font-weight: 700;
  transition: .3s;
}

.menu a:hover {
  color: var(--rosa);
}

.menu-toggle {
  display: none;
}

.btn-matriculas {
  background: var(--rosa);
  padding: 14px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  transition: .3s;
}

.btn-matriculas:hover {
  background: var(--rosa-claro);
}

/* HERO */

.hero {
  padding: 50px 8% 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.1;
  color: var(--azul);
  margin-bottom: 0;
  font-weight: 800;
}

.hero-content h1 span {
  display: block;
}

#heroTituloPrincipal, #heroTituloDestaque {
  color: var(--rosa);
}

.hero-content h2 {
  color: var(--amarelo);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-top: 0px;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 0px;
}

.hero-content p {
  font-size: 20px;
  margin-top: 15px;
  max-width: 540px;
  color: #555;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.btn-rosa {
  background: var(--rosa);
  color: #fff;
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-block;
  transition: .3s;
}

.btn-rosa:hover {
  transform: translateY(-2px);
}

.btn-amarelo {
  background: var(--azul);
  color: #fff;
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-block;
  transition: .3s;
}

.btn-amarelo:hover {
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin-top: -110px;
}

/* DIFERENCIAIS */

.wave {
  height: 100px;
  background: var(--amarelo);
  border-radius: 100% 100% 0 0;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.diferenciais-container {
  background: var(--amarelo);
  padding: 40px 8%;
}

.diferenciais {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.card h3 {
  color: var(--azul);
  margin-top: 10px;
  margin-bottom: 5px;
}

.card p {
  color: #666;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* TITULOS DE SEÇÃO */

.section-title {
  text-align: center;
  margin: 80px 0 50px;
}

.section-title h2 {
  font-size: 42px;
  color: var(--azul);
}

/* SOBRE */

.sobre {
  padding: 0 8% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sobre img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.sobre h2 {
  font-size: 36px;
  color: var(--azul);
  margin-bottom: 15px;
}

.sobre p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* GALERIA */

.galeria {
  padding: 0 8% 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.galeria img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: .3s;
}

.galeria img:hover {
  transform: scale(1.03);
}

/* EVENTOS */

.eventos {
  padding: 0 8% 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.eventos img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: .3s;
}

.eventos img:hover {
  transform: scale(1.03);
}

/* CTA */

.cta {
  background: var(--rosa);
  padding: 80px 8%;
  text-align: center;
  color: #fff;
}

.cta h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

/* FOOTER */

footer {
  background: var(--azul);
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}

.footer-contato {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 15px;
}

.footer-contato span {
  opacity: .95;
}