* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #1d1d1d;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    flex: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 2rem; /* Espacio para el footer */
}

header {
    margin-top: 40px;
    margin-bottom: 40px;
}

header p {
    font-size: 1rem;
}

header h1 {
    font-size: 1.5rem;
    color: white;
    margin: 1rem 0;
}

.highlight {
    color: #ca9732;
    font-weight: bold;
}

.additional-info {
    font-size: 0.8rem;
    color: #cccccc;
    margin-top: 20px;
    text-align: center;
}

.additional-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.additional-info i {
    font-size: 1.2rem;
}

/* Footer fijo al final de la página o de la pantalla */
.privacy-footer {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    bottom: 0;
}

.privacy-footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
}

.privacy-footer a:hover {
    text-decoration: underline;
}

img {
    max-width: 30%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Ajustar el contenedor del video */
 .video-container {
      position: relative;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 10px;
    }
    .video-wrapper {
      position: relative;
      width: 100%;
    }
    video {
      width: 100%;
      height: auto;
      pointer-events: none;
      display: block;
    }
    .overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 15px 30px;
      font-size: 1.2em;
      border-radius: 8px;
      cursor: pointer;
      z-index: 2;
    }
   .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    background: #d43f3a; /* rojo suave */
    width: 0%;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

    .resume-screen {
      position: absolute;
      inset: 0;
      background: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      z-index: 9999;
      padding: 20px;
    }
    .resume-screen h1 {
      font-size: 1.5rem;
      color: #1a1a1a;
      margin-bottom: 20px;
    }
    .resume-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }
    .resume-buttons button {
      padding: 8px 20px;
      font-size: 1rem;
      border-radius: 25px;
      border: 2px solid #1a1a4d;
      background: white;
      color: #1a1a4d;
      cursor: pointer;
    }
    .resume-buttons button:hover {
      background: #1a1a4d;
      color: white;
    }
   

.resume-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 249, 240, 0.9);
    color: #1a1a4f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    border-radius: 5px;
    display: none;
    pointer-events: auto;
}

.resume-overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resume-options {
    display: flex;
    gap: 2rem;
}

.resume-button {
    background: none;
    border: 2px solid #1a1a4f;
    color: #1a1a4f;
    padding: 0.5rem 1rem;
    font-size: 0.2pxrem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s, color 0.3s;
}

.resume-button:hover {
    background-color: #1a1a4f;
    color: #ffffff;
}

.buy-button {
    background-color: #ca9732;
    color: #8b190d;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.buy-button:hover {
    background-color: #e6b800;
    color: #ffffff;
}

/* Estilo de la sección oculta */
#extra-section {
    background-color: #ffffff;
    color: #000000;
    padding: 30px 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#extra-section h2 {
    color: #8b190d;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.solo{
    display: inline-block;
     padding: 0.6em 1em;
     border-radius: 4px;  
    margin-top: 10px;
    color: #d43f3a;
    background: white;
}

#extra-section h3 {
    color: #8b190d;
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

#extra-section ul {
    list-style-type: none;
    padding: 0;
    color: #333333;
}

#extra-section ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

#extra-section p {
    font-size: 1rem;
    margin: 15px 0;
    color: #333333;
    line-height: 1.5;
}

/* Ajuste de imagen dentro de la sección */
#extra-section img {
    max-width: 200px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Bloque de copyright antes del footer */
.copyright-info {
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0.5rem 0 2rem;
}


@media (max-width: 600px) {
  body {
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 0 0.5rem;
    max-width: 100%;
  }

  header {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  header p {
    font-size: 0.65rem;
    line-height: 1.3;
    padding: 0 1rem;
  }
    
.resume-options {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    padding-top: 0.1rem;
  }

 .resume-button {
    background: none;
    border: 2px solid #1a1a4f;
    color: #1a1a4f;
    padding: 0.5rem 0.5rem;
    font-size: 0.1pxrem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s, color 0.3s;
}
  
    .resume-screen h1 {
      font-size: 1rem;
      color: #1a1a1a;
      margin-bottom: 20px;
    }
    
    footer a{
        font-size: 0.9rem;
    }
    
  .resume-overlay h2 {
    margin-top: 0.5rem; /* separa del borde superior */
    padding-top: 0.1rem;
  }

  .resume-overlay {
    padding-top: 0.5rem; /* por si acaso */
  }

.overlay{
    font-size: 1rem;
}

.texto{
    font-size: 0.75rem;
    
}

   .texto {
    margin-top: 3rem; /* aumenta el espacio encima del texto */
  }

  .copyright-info {
    margin-top: 2rem; /* empuja el copyright hacia abajo */
    margin-bottom: 4.5rem; /* opcional: separa del footer */
    font-size: 0.75rem;  
  }   
    

    
}
