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

body {
  background: linear-gradient(to bottom, #f4f4f4, #ffffff);
  color: #333;
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s ease;
}


/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-logo {
  width: clamp(160px, 30vw, 500px);
  height: auto;
}

/* Overlay escuro */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}


.btn {
  display: inline-block;
  background: linear-gradient(135deg, #c40000, #e60000);
  color: white;
  padding: 14px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(196, 0, 0, 0.25);
  border: none;
  outline: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196, 0, 0, 0.4);
  background: linear-gradient(135deg, #b30000, #ff1a1a);
}

.btn:active {
  transform: translateY(0px);
  box-shadow: 0 5px 15px rgba(196, 0, 0, 0.3);
}
/*   FOOTER   */
.footer-moderno {
  background: #f4f6f8;
  padding-top: 70px;
  margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 0 20px 60px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #c40000;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: #c40000;
}

.footer-col p,
.footer-col li {
  margin-bottom: 10px;
  color: #555;
  list-style: none;
}

.footer-col ul {
  padding: 0;
}

.footer-col a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #c40000;
}

/* REDES */

.footer-redes {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-redes a {
  width: 38px;
  height: 38px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c40000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.footer-redes a:hover {
  background: #c40000;
  color: white;
  transform: translateY(-3px);
}

/* BOTTOM */

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #eaeaea;
  font-size: 14px;
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
}
