/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdf6f6;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Header */
header {
    background-color: #5bb9eb;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
    flex-direction: column
    padding 1rem
}
  header .title img {
    max-height: 60px;
  }
  header .title {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  nav {
    flex-grow: 1;
  }
  nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
  }
  nav ul li {
    position: relative;
  }
  nav a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    display: block;
    transition: background 0.3s ease;
  }
  nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
  }
  .profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 1.5rem;
  }
/* Centrar todo en el header */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #00c2f2;
    padding: 1rem 0;
  }
  
  /* Centra el logo */
  header .title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
  }
  
  header .title img {
    max-height: 60px;
  }
  
  /* Menú de navegación */
  .navbar {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* Centra todo lo del perfil */
  .profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
  }
  
  .profile-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ff3399;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  
  /* Estilos adicionales (por si los necesitás) */
  .name {
    font-size: 1.8rem;
    font-weight: 800;
    color:#ff3399 ;
    margin-top: 1rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
    color: white;
  }
  
.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid #ea5898;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.profile-photo:hover {
    transform: scale(1.1);
}

.name {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    animation: fadeIn 2s;
}

.subtitle {
    font-size: 18px;
    color: #fdf6f6;
    margin-top: 10px;
    animation: slideUp 1.5s;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5bb9eb;
    padding: 10px 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fdf6f6;
    font-weight: 600;
    padding: 10px 15px;
    transition: background-color 0.3s, transform 0.3s;
}

.nav-links a:hover {
    background-color: #ea5898;
    border-radius: 5px;
    transform: scale(1.05);
}
.menu-toggle {
    display: none;
    cursor: pointer;
    background: #ea5898;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
  }
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fdf6f6;
    transition: all 0.3s ease-in-out;
}

/* Dropdown */
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ea5898;
    min-width: 220px;
    z-index: 999;
    top: 100%;
    left: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
  }
  .dropdown-content a:hover {
    background-color: #efed3f;
    color: #333;
  }
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu > .dropdown-content {
    top: 0;
    left: 100%;
    margin-left: 1px;
    border-radius: 0 10px 10px 0;
  }  
/* Para Solicitar Turno */
.solicitar-turno {
    text-align: center;
    padding: 20px 0;
    background-color: #efed3f;
    border-top: 3px solid #ea5898;
    margin-top: 40px;
}

.solicitar-turno h2 {
    font-size: 28px;
    color: #ea5898;
    margin-bottom: 15px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.button {
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #ea5898;
    padding: 12px 18px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.button:hover {
    transform: scale(1.1);
    background-color: #5bb9eb;
}

.instagram-button {
    background-color: #ea5898;
}

.whatsapp-button {
    background-color: #25d366;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Main Sections */
.section {
    margin: 40px 0;
}

.section h2 {
    font-size: 28px;
    color: #ea5898;
    margin-bottom: 15px;
}

.section p {
    font-size: 16px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #5bb9eb;
    color: #fdf6f6;
}

/* Media Queries */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
      }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #5bb9eb;
        margin-top: 1rem;
      }
      nav ul li {
        width: 100%;
      }
      .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
      }
      .dropdown-submenu > .dropdown-content {
        position: static;
        margin-left: 0;
      }
      nav ul.show {
        display: flex;
      }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #5bb9eb;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        padding: 15px;
        font-size: 18px;
    }
}
/* Modal estilo básico */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    margin: auto;
    padding: 20px;
    background-color: #fff;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.close {
    color: #aaa;
    font-size: 28px;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}
header {
  background-color: #00c2f2;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.title img {
  max-height: 60px;
}

.navbar {
  width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
  background-color: #ea5898;
  transform: scale(1.05);
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ea5898;
  width: 200px;
  top: 100%;
  left: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #efed3f;
  color: #333;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  cursor: pointer;
  background: #ea5898;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-top: 10px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fdf6f6;
  transition: all 0.3s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    background-color: #5bb9eb;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    padding-bottom: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown .dropbtn:focus + .dropdown-content,
  .dropdown .dropbtn:active + .dropdown-content {
    display: block;
  }
}
.name {
  font-size: 1.8rem;
  font-weight: 800;
  color:white ;
  margin-top: 1rem;
}
.subtitle {
  font-size: 1.8rem;
  font-weight: 800;
  color:white ;
  margin-top: 1rem;
}
/* GENERAL NAV */
.navbar {
  background-color: #00aadd;
  padding: 10px;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin: 0;
  display: none; /* oculto por defecto en móvil */
}

.nav-links.active {
  display: block;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  display: block;
  padding: 12px;
  color: white;
  text-decoration: none;
  background-color: #00aadd;
}

/* SUBMENU */
.dropdown-content {
  display: none;
  background-color: #dcdcdc;
  padding-left: 0;
  margin: 0;
}

.dropdown-content li a {
  color: black;
  background-color: #dcdcdc;
  padding: 12px;
}

/* Muestra submenú si clase activa */
.dropdown.open .dropdown-content {
  display: block;
}

/* HAMBURGER */
.menu-toggle {
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE: todo visible en desktop */
@media (min-width: 768px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
  }
  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
}
.footer {
  background-color: #5bb9eb;
  padding: 2rem 1rem;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  border-top: 4px solid #ea5898;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons a {
  color: white;
  font-size: 1.6rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.whatsapp:hover {
  color: #25d366;
}

.instagram:hover {
  color: #e1306c;
}

.facebook:hover {
  color: #1877f2;
}

@media (max-width: 768px) {
  .footer p {
    font-size: 0.9rem;
  }

  .social-icons a {
    font-size: 1.4rem;
  }
}
.footer {
  background-color: #5bb9eb;
  padding: 2rem 1rem;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  border-top: 4px solid #ea5898;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons a {
  color: white;
  font-size: 1.6rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.whatsapp:hover {
  color: #25d366;
}

.instagram:hover {
  color: #e1306c;
}

.facebook:hover {
  color: #1877f2;
}
.youtube:hover {
  color: #ff0000;
}

@media (max-width: 768px) {
  .footer p {
    font-size: 0.9rem;
  }

  .social-icons a {
    font-size: 1.4rem;
  }
}
