
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #14416c;
    color: white;
    overflow-x: hidden;
}
@font-face {
    font-family: 'Bank Gothic';
    src: url('https://fisiolink.com/assets/fonts/BankGothic.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Hero Section */

.hero-section {
    position: relative; 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgb(30, 60, 90), rgb(50, 100, 150)); 
    overflow: hidden;
}

.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}



.hero-title {
    font-family: 'Bank Gothic', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

/*Buttons*/

.cta-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    background: rgb(50, 100, 150);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgb(30, 60, 90);
    transform: scale(1.1);
}


.cta-button.secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    background: rgb(50, 100, 150);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button.secondary:hover {
    transform: scale(1.1);
    background: rgb(20, 40, 60);
}

/* Redes Sociales */

.social-section {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgb(20, 40, 60), rgb(50, 100, 150));
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.social-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1.5s ease-in-out;
}

.social-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(200, 200, 200, 0.8);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

.social-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    border-radius: 50%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: scale(1.2);
    color: white;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.5);
}

.gmail {
    background: linear-gradient(135deg, #d93025, #a1201b);
    margin-top: 4px;
}


.facebook {
    background: linear-gradient(135deg, #1877f2, #154fb7);
}

.instagram {
    background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* COUNTER */
.card {
    position: absolute;
    width: 40vw;
    height: 60vh;
    background: #1a446ca4;
    color: white;
    display: flex;
    justify-content: start;
    align-items: start;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: start;
    flex-direction: column;
    padding: 15px;
    overflow: hidden;
}

.card h2 {
    font-size: 2rem;
}
.card h3 {
    background: #1a446cb8;
    
}


.card-sombra {
  background: rgb(50, 100, 150);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}


.dashboard-contadores {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  max-width: 500px;
  margin: auto;
}

.card-contador {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-contador div:first-child {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.card-contador div:last-child {
  font-size: 3rem;
  font-weight: bold;
}


/* HEADER */

  .header {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 1000;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

.logo {
    width: 200px;
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.5));
}

  .nav-desktop a {
    margin-right: 1rem;
    text-decoration: none;
    color: white;
  }

  .nav-desktop {
    display: none;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .login-link {
    color: white;
    text-decoration: none;
  }

  .register-btn {
    background: white;
    color: #0a2c57;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    margin-right: 1rem ;
  }

  .menu-toggle {
    background: none;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
  }

.nav-mobile {
    display: none;
    position: fixed;
    top: 150px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #14416c;
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1000;
    align-items: flex-start;
  }

  .nav-mobile a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }


.reserva-cita {
  padding: 2rem 1rem;
  background: #14416c;
  color: white;
  font-family: sans-serif;
}

.reserva-titulo {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.reserva-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.linea-tiempo {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem 0;
}

.linea-tiempo .punto {
  width: 14px;
  height: 14px;
  background: black;
  border-radius: 2px;
}


.pasos {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 400px;
  margin-left: 2rem;
}

.paso {
  display: flex;
  flex-direction: column;
  background: #ffffff0f;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  transition: transform 0.3s;
}

.paso:hover {
  transform: translateY(-4px);
}

.paso img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background-color: #ccc;
  margin-bottom: 0.75rem;
}

.paso h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
}

.paso p {
  font-size: 0.95rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .reserva-contenedor {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }

  .linea-tiempo {
    display: none;
  }

  .pasos {
    flex-direction: row;
    gap: 2rem;
    margin-left: 0;
    width: 100%;
    max-width: 1100px;
    align-items: stretch;
  }

  .paso {
    flex: 1;
    max-width: 100%;
    min-height: 450px;
    justify-content: space-between;
  }

  .paso img {
    max-height: 300px;
  }
}
/* CARACTERISTICAS */

.caracteristicas-section {
  max-width: 500px;
  margin: auto;
  margin-bottom: 5px;
  padding: 1rem;
  color: #000;
  font-family: sans-serif;
}

.caracteristicas-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.caracteristicas-titulo {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
  color: white ;
}

.caracteristicas-lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.caracteristica-item {
  background: #e6e6e6;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.caracteristica-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.caracteristica-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}



@media screen and (min-width: 600px) {
  .dashboard-contadores {
    flex-direction: row;
    justify-content: center;
  }

  .card-contador {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
    .info-content {
        flex-direction: column;
    }

    .info-image img {
        max-width: 250px;
    }

    .info-text h2 {
        font-size: 1.8rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }
    .social-icons {
        gap: 20px;
    }

    .social-icon {
        font-size: 2rem;
        padding: 10px;
    }

    .cta-button.secondary {
        font-size: 14px;
        padding: 10px 20px;
    }
    .hero-section {
        height: 90vh;
    }



    .hero-title {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 14px; 
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .info-text h2 {
        font-size: 1.5rem;
    }

    .info-text p {
        font-size: 0.8rem;
    }

    .info-image img {
        max-width: 200px;
    }
    .social-icons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-icon {
        font-size: 1.5rem;
        padding: 8px;
    }

    .cta-button.secondary {
        font-size: 12px;
        padding: 8px 16px;
    }
    .hero-section {
        height: 50vh;
        padding: 40px 0;
    }
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .cta-button {
        font-size: 12px;
        padding: 8px 16px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@media (min-width: 480px) {
    .card:nth-child(1) {
        transform: rotateY(0deg) translateZ(300px);
    }
    .card:nth-child(2) {
        transform: rotateY(120deg) translateZ(300px);
    }
    .card:nth-child(3) {
        transform: rotateY(240deg) translateZ(300px);
    }
}
@media (max-width: 480px) {

    .card {
        font-size: 0.7rem;
        width: 50%;
        height: 400px;
        padding: 10px;
    }
    .card:nth-child(1) {
        transform: rotateY(0deg) translateZ(200px);
    }
    .card:nth-child(2) {
        transform: rotateY(120deg) translateZ(200px);
    }
    .card:nth-child(3) {
        transform: rotateY(240deg) translateZ(200px);
    }
}

  @media screen and (min-width: 769px) {
    .nav-desktop {
      display: flex;
    }

    .menu-toggle,
    .nav-mobile {
      display: none;
    }


  }

@media (max-width: 768px) {
        .logo {
        width: 100;
    }
    .nav-mobile {
    top: 150px; 
  }
}


@media (max-width: 480px) { 
      .logo {
        width: 100px; 
    }
        .nav-mobile {
    top: 70px; 
  }
}
