/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: 'CoronaHeadline';
    src: url('../fonts/Corona-HeadlineDisplay-SemiBold.otf') format('opentype'), url('../fonts/Corona-HeadlineDisplay-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #0C2340;
  color: #333;
  line-height: 1.6;
  
}

/* HEADER */
.header {
  background: #e82a15;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.logo {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.logo a {
  color: #FFFFFF;
  width: 120px;
  height: auto;
}

.description {
  color: #021123;
  font-family: 'CoronaHeadline', sans-serif;
  text-align: center;
  font-size: 1.2rem;
  background: #FFC72C;
  padding: 30px 10px;
}

.description .text_description {
  max-width: 1200px;
  margin: 0 auto;
}

/* CONTENEDOR */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.banner {
  background: #0C2340;
  text-align: center;
}

.banner img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

/* TARJETAS */
.card {
  background: #0C2340;
  border-left: 8px solid #FFC72C;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

/* TEXTO */
.text {
  flex: 1 1 300px;
}

.text h2 {
  color: #FFC72C;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'CoronaHeadline', sans-serif;
}

.text p {
  color: #FFFFFF;
  font-family: 'CoronaHeadline', sans-serif;
}

/* VIDEO */
.video_frame {
  flex: 1 1 400px;
}

.video_frame {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    background: #000;
}

.video_frame video {
    width: 50%;
    margin: 0 auto;
    display: block;
    height: 100%;
}

/* FOOTER */
.footer {
  background: #021123;
  padding: 30px;
  text-align: center;
}

.footer-logo {
  width: 150px;
}

.btn {
    background-color: #FFC72C;
    color: #1f1f1f;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.btn:hover {
    background-color: #e6b300;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus {
    outline: 2px solid #FFC72C;
    outline-offset: 3px;
}

a.btn {
    color: inherit;
    text-decoration: none;
    font-family: 'CoronaHeadline', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }

  .logo {
    font-size: 1.6rem;
  }

  .video_frame {
    width: 100%;
    background: none;
  }

  .video_frame video {
      width: 100%;
      border-radius: 10px;
      margin: 0 auto;
  }
}