/* Reset & Base */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

/* Header */
header {
  background-color: #1e1e1e;
  color: #f2f2f2;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@font-face {
  font-family: 'Conthrax'; /* Nome que vais usar no CSS */
  src: url('../font/Conthrax-SemiBold.otf') format('woff2');
  font-weight: normal;
  font-style: normal;
}

header h1 {
  font-family: Conthrax, sans-serif;
}

/* Hero Section Layout */
.hero {
  display: flex;
  width: 100%;
  min-height: 80vh;
  flex-wrap: wrap;
}

/* Hero Section Blocks */
.hero-section {
  position: relative;
  flex: 1;
  min-width: 320px;
  height: 80vh;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto Sobreposto */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  padding: 24px 48px;
  text-align: center;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  max-width: 95%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  font-weight: 600;
  cursor: default;
}

.hero-text:hover {
  padding: 32px 56px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.8);
}

/* Texto Principal */
.hero-text-p1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
  transition: font-size 0.3s ease;
}

.hero-text-p1:hover {
  font-size: 28px;
}

/* Subtítulo */
.hero-text-p2 {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  opacity: 0.9;
  transition: font-size 0.3s ease;
}

.hero-text-p2:hover {
  font-size: 18px;
}

/* Botão */
.hero-text a button {
  margin-top: 18px;
  padding: 14px 28px;
  border: none;
  background-color: #ffffff;
  color: #1e1e1e;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 255, 0.3);
}

.hero-text a button:hover {
  background-color: #0033cc;
  color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 8px 18px rgba(0, 0, 150, 0.5);
  padding: 16px 32px;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-section {
    height: 50vh;
  }

  .hero-text {
    padding: 16px 24px;
    max-width: 90%;
  }

  .hero-text:hover {
    padding: 20px 28px;
  }

  .hero-text-p1 {
    font-size: 24px;
  }

  .hero-text-p1:hover {
    font-size: 26px;
  }

  .hero-text-p2 {
    font-size: 14px;
  }

  .hero-text-p2:hover {
    font-size: 16px;
  }

  .hero-text a button {
    padding: 12px 24px;
  }

  .hero-text a button:hover {
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .hero-text-p1 {
    font-size: 20px;
  }

  .hero-text-p2 {
    font-size: 12px;
  }

  .hero-text a button {
    width: 100%;
    padding: 12px;
  }

  .hero-text {
    padding: 12px 16px;
  }
}

/* Footer */
footer {
  background-color: #1e1e1e;
  color: #f2f2f2;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6);
}

footer a {
  color: #a0cfff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
