@import url("responsive.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@300;400&display=swap');
:root {
  --primary-color: #e91e63;
  --secondary-color: #9c27b0;
  --accent-color: #673ab7;
  --text-dark: #333;
  --text-medium: #666;
  --background-light: #f9f9f9;
  --background-white: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.1);
}

/* === ESTRUCTURA GENERAL === */
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #f8bbd9, #ce93d8);
  margin: 0;
  min-height: 100vh;
  color: var(--text-dark);
}

.container {
  width: 90%; 
  margin: 0 auto;
  padding: 40px 20px;
}


.seccion.active {
  display: block;
}

/* === PRESENTACIÓN PANEL INTERNO === */
.presentacion-estetica {
  background: linear-gradient(135deg, #f0d6e3, #f0b8c2);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
  color: #4b2a2a;
}

.presentacion-estetica h1 {
  color: var(--secondary-color);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.presentacion-estetica h2 {
  color: black;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}

.presentacion-estetica p {
  font-size: 1.1rem;
  color: black;
}

#especialistasInfo {
  margin-top: 25px;
}

/* === TARJETAS DE INFORMACIÓN / ESTADÍSTICAS === */
.info-card {
  background: var(--background-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h3 {
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/*===  Estadisticas ===*/

.card {
  background: var(--background-white);
  border-radius: 15px;
  box-shadow: 0 4px 10px var(--shadow-light);
  padding: 20px;
  max-width: 500px;
}

.card h2 {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 15px;
}


.turno-detail {
  background: var(--background-light);
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.turno-detail strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}



/* === LAYOUT DOS COLUMNAS === */
.layout-dos-columnas {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

/* Tamaños de las columnas */
.columna-izq {
  flex: 2;
}

.columna-der {
  flex: 1;
}

/* Responsivo */
@media (max-width: 900px) {
  .layout-dos-columnas {
    flex-direction: column;
  }

  .columna-der, .columna-izq {
    width: 100%;
  }
}


/*
