
  
    :root {
      --primary: #1caad9;
      --dark: #222;
      --light: #f8f9fa;
    }

    body {
      margin: 10;
      font-family: system-ui, -apple-system, sans-serif;
      background: var(--light);
      color: var(--dark);
      font-size: 16px;
    }

           .header {
          background: #FCE221;
          padding: 0.5rem;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          position: sticky;
          top: 0;
          z-index: 100;
          }

          .nav {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          justify-content: space-between;
          }

              .logo {
          font-size: 1.1rem;
          font-weight: bold;
          color: var(--primary);
          text-decoration: none;
          }

    
    /* Estilos del Model Viewer */
.viewer {
    display: block;
    margin: 0 auto;
    width: 99%;
    height: 400px; /* Adjust height as needed */
}
    
    
    
    
    
    
    /* Estilos generales */


/* Franja principal */
.strip {
  background-color: #2c3e50; /* Fondo oscuro */
  color: #fff; /* Texto blanco */
  padding: 40px 20px;
  text-align: center;
}

        .strip-supfrank {
          background-color: #ffffff; /* Fondo oscuro */
          color: #fff; /* Texto blanco */
          padding: 15px 7px;
          text-align: center;
          max-width: 100%;
          margin: 0 auto;
          }
    
    
.strip-content {
  max-width: 800px;
  margin: 0 auto;
}

.strip-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.strip-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Botones */
.button-group {
  display: flex;
  justify-content: center;
  gap: 15px; /* Espaciado entre botones */
}

.button {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.button.primary {
  background-color: #025db8; /* Azul */
  color: white;
}

.button.primary:hover {
  background-color: #2980b9; /* Azul más oscuro */
}

.button.secondary {
  background-color: #ffffff; /* Gris */
  color: #025db8;
}

.button.secondary1 {
  background-color: #17c700; /* Gris */
  color: #ffffff;
}


.button.secondary:hover {
  background-color: #7f8c8d; /* Gris más oscuro */
}

    
    
    
    
    
    /* CARDS */
    
    
              .feednitron {
              max-width: 400px;
              margin: 2rem auto;
              display: grid;
              grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
              gap: 2rem;
              padding: 0 1rem;
            }
                .cardnitron {
              background: white;
              border-radius: 15px;
              overflow: hidden;
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
              transition: transform 0.2s ease;
            }

            .card:hover {
              transform: translateY(-5px);
            }

            .model-previewnitron {
              width: 100%;
              height: 20px;
              overflow: hidden;
            }
            .card-content {
              padding: 1rem;
              text-align: center;
            }

            .model-title {
              font-size: 1.25rem;
              margin: 0.5rem 0;
            }

            .model-author {
              color: var(--primary);
              text-decoration: none;
              font-weight: bold;
            }

            .stats {
              display: flex;
              justify-content: center;
              gap: 1rem;
              color: #666;
              margin-top: 0.5rem;
            }



    
    
    
    
    
    
    
    
    
          
    
    .feed {
      max-width: 1200px;
      margin: 2rem auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      padding: 0 1rem;
    }

    .card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .model-preview {
      width: 100%;
      height: 250px;
      overflow: hidden;
    }

    .model-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .card:hover .model-preview img {
      transform: scale(1.1);
    }

 

          .button:hover {
            background-color: #0056b3; /* Azul más oscuro al pasar el mouse */
          }

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

:root {
  --primary: #1caad9;
  --dark: #222222;
  --light: #f8f9fa;
}



/* Feed y tarjetas */
.feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Tarjetas generales */
.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  overflow: hidden;  /* Asegura que el contenido dentro de la tarjeta respete el borde redondeado */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Tarjeta tipo texto y número */
.text-number {
  height: 40px;
  padding: 20px;
  justify-content: space-between;
  flex-direction: row;
}

.text-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.text-left {
  font-size: 22px;
  color: var(--dark);
  font-weight: bold;
}

.text-right {
  font-size: 18px;
  color: var(--primary);
  font-weight: bold;
}

/* Contenedor con texto centrado */
.text-rownitron {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.text-leftnitron {
  font-size: 22px;
  color: var(--dark);
  font-weight: bold;
}

/* Estilo para las imágenes en tarjetas */
.model-preview {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-top-left-radius: 10px; /* Asegura que la parte superior de la imagen respete las esquinas redondeadas */
  border-top-right-radius: 10px; /* Asegura que la parte superior de la imagen respete las esquinas redondeadas */
}

.model-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-top-left-radius: 10px; /* Asegura que la imagen respete las esquinas redondeadas */
  border-top-right-radius: 10px; /* Asegura que la imagen respete las esquinas redondeadas */
}



/* Botones */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.button {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
  background-color: #007bff; /* Azul por defecto */
  color: white;
  text-align: center;
}

.button:hover {
  background-color: #0056b3; /* Azul más oscuro */
}













/* ROOT VARIABLES */
:root {
  --primary: #1caad9;
  --dark: #222;
  --light: #f8f9fa;
  --card-bg: #ffffff;
  --text-muted: #666;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: var(--dark);
  font-size: 16px;
}

/* PROFILE CARD CONTAINER */
.profile-container {
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
}

.profile-card {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.profile-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  color: var(--dark);
}

.profile-position {
  font-size: 1rem;
  color: var(--primary);
  margin: 0.25rem 0;
}

.profile-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* MEDIA QUERY */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-photo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}








      body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        .franja {
            background-color: #f4f4f4;
            padding: 40px 20px;
            text-align: center;
            border-top: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        .franja h2 {
            color: #333;
            font-size: 28px;
            margin-bottom: 30px;
        }
        .contenedor-reconocimientos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .caja-fundador {
            background-color: #fff;
            border: 1px solid #fff;
            border-radius: 8px;
            width: 250px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .caja-fundador img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 2px solid #555;
        }
        .caja-fundador h3 {
            font-size: 20px;
            margin: 10px 0;
            color: #333;
        }
        .caja-fundador p {
            font-size: 16px;
            color: #777;
        }









/* FOOTER STYLING */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

/* SOCIAL BUTTONS */
.social-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-button {
  text-decoration: none;
  color: var(--light);
  padding: 0.5rem 1rem;
  border: 2px solid var(--light);
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

/* INDIVIDUAL COLORS */
.social-button.fb {
  border-color: #3b5998;
}

.social-button.fb:hover {
  background: #3b5998;
}

.social-button.tw {
  border-color: #1da1f2;
}

.social-button.tw:hover {
  background: #1da1f2;
}

.social-button.ig {
  border-color: #e4405f;
}

.social-button.ig:hover {
  background: #e4405f;
}

.social-button.yt {
  border-color: #ff0000;
}

.social-button.yt:hover {
  background: #ff0000;
}










       #floatingWindow {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 600px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            display: none;
            z-index: 1000;
        }

        #floatingWindow iframe {
            width: 100%;
            height: 315px;
            border: none;
            border-radius: 10px 10px 0 0;
        }

        #floatingWindow .close-btn {
            display: block;
            padding: 10px;
            text-align: center;
            background-color: #f44336;
            color: white;
            font-size: 16px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            border-radius: 0 0 10px 10px;
        }

        #overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 999;
        }











/* Adaptabilidad para pantallas más pequeñas */
@media (max-width: 768px) {
  .feed {
    grid-template-columns: 1fr;
  }
}



.stripfrank {
  position: relative; /* Contenedor relativo para superponer contenido */
  height: 450px; /* Altura de la franja */
  overflow: hidden; /* Oculta el contenido que exceda la franja */
}

.stripfrank-img {
  width: 100%; /* La imagen ocupa todo el ancho */
  height: 100%; /* La imagen ocupa toda la altura */
  object-fit: cover; /* Ajusta la imagen para cubrir el contenedor */
  position: absolute; /* Posiciona la imagen en la parte superior izquierda */
  top: 0;
  left: 0;
}

.stripfrank-content {
  position: absolute; /* Contenido superpuesto a la imagen */
  top: 50%; /* Centra verticalmente */
  left: 50%; /* Centra horizontalmente */
  transform: translate(-50%, -50%); /* Ajusta el punto de anclaje para centrar */
  background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  color: white; /* Color del texto */
  padding: 1rem 2rem; /* Espaciado interno */
  border-radius: 10px; /* Esquinas redondeadas */
  text-align: center; /* Texto centrado */
}

.stripfrank h2 {
  font-size: 2rem; /* Tamaño del título */
  margin-bottom: 0.5rem;
}

.stripfrank p {
  font-size: 1.2rem; /* Tamaño del texto */
  margin: 0;
}


