@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Oswald:wght@200..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #1a0b3d;
  color: #fff;
}

a, h3 a {
  color: #fff !important;
  text-decoration: none !important;
}

/* HERO */
.hero {
  background: url('../img/bg.webp') center/cover no-repeat;
  height: 70vh;
  position: relative;
}

.hero-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* LOGO */
.hero-logo {
  max-width: 420px;   /* desktop */
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 220px;
  }
}

.hero h1 span {
  color: #ffcc00;
  font-size: 2.5rem;
}

.hero h1 strong {
  font-size: 3rem;
  font-weight: bold;
}

/* SECTIONS */
.section {
  padding: 60px 8%;
}

.section h2 {
  margin-bottom: 30px;
}

/* GRIDS */
.grid-episodes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.grid-moments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* CARDS */
.card {
  background: #2a1460;
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
  display: block;
}

.card h3 {
  padding: 10px;
  font-size: 1rem;
}

.card span {
  padding: 0 10px 15px;
  display: block;
  font-size: 0.85rem;
  color: #ccc;
}

/* BUTTONS */
.center {
  text-align: center;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  background: linear-gradient(
    180deg,
    #ffb300,
    #ff7a00
  );
  color: #000;
  padding: 14px 28px;
  font-weight: 500;
  font-family: "Oswald", serif;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* ABOUT */
.about {
  background: #140536;
  padding: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 400px;
}

/* TEXTO */
.about-text {
  text-align: center;
  font-size: 24px;
  padding: 60px 0px 60px 15%;
  display: flex;
  align-items: center;
}

.about-text p {
  max-width: 800px;
  line-height: 1.6;
}

/* IMAGEM */
.about-image {
  background: 
    url("../img/juliana.webp") no-repeat center;
  background-size: contain;
  background-position: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 250px;
  }
  
  .about-text {
    padding: 60px 15% !important;
  }
}

/* NEWSLETTER */
.newsletter {
  padding: 50px 10%;
  text-align: center;
}

.newsletter form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 12px;
  width: 280px;
  border-radius: 4px;
  border: none;
}

.newsletter button {
  background: #ff9900;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #0d0224;
  font-size: 0.85rem;
}

.footer {
  background: #0d0224;
  padding: 25px 8%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* TEXTO */
.footer-text {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* REDES SOCIAIS */
.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 strong {
    font-size: 2.2rem;
  }
}
