ff5/* Fondo y fuente general */
body {
    background-color: #f9e6ec; /* roz nude pastel*/
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center; /* Centra todo el texto */
}

/* Estilo del título */
h1 {
    margin-top: 50px;
    color: #333;
    font-size: 2.5em;
}

/* Estilo del párrafo */
p {
    font-size: 1.2em;
    color: #555;
}
/* Estilo para la imagen */
img {
    display: block;
    margin: 20px auto;      /* Centra la imagen */
    border-radius: 10px;    /* Bordes redondeados */
    max-width: 100%;        /* Se adapta en móviles */
    height: auto;           /* Mantiene proporción */
}/* ===== BOTÓN WHATSAPP FLOTANTE ===== */
.btn-whatsapp {
    position: fixed;      /* Siempre visible en pantalla */
    bottom: 20px;         /* Distancia desde abajo */
    right: 20px;          /* Distancia desde la derecha */
    width: 64px;
    height: 64px;
    z-index: 1000;        /* Encima de todo */
}

.btn-whatsapp img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-whatsapp img:hover {
    transform: scale(1.08);
    opacity: 0.95;
}
/* ===== Navegación superior ===== */
html { scroll-behavior: smooth; }

nav {
    position: sticky;      /* se queda arriba al hacer scroll */
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 999;
}

nav ul {
    margin: 0;
    padding: 10px 16px;
    list-style: none;      /* sin puntos */
    display: flex;         /* en línea */
    gap: 16px;             /* separación entre enlaces */
    justify-content: center;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
}

nav a:hover {
    background: rgba(0,0,0,0.06);
}

/* ===== Secciones ===== */
section {
    padding: 40px 16px;    /* aire alrededor de cada bloque */
}


/* === Menú bonito === */
html { scroll-behavior: smooth; }

nav {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  z-index: 999;
}

nav ul {
  margin: 0;
  padding: 10px 16px;
  list-style: none;
  display: flex;           /* en una fila */
  gap: 18px;
  justify-content: center;
  align-items: center;
}

nav li { margin: 0; }

nav a {
  color: #222;
  text-decoration: none;   /* sin subrayado */
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
}

nav a:hover {
  background: #ffebf4;     /* rosita suave al pasar */
}

/* Botones */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  transition: transform .1s ease, opacity .2s ease;
  margin-top: 12px;
}
.btn:hover { transform: translateY(-1px); opacity: .95; }
.btn.primary { 
  background: #ff4da6;   /* rosa */
  color: #fff;           /* texto blanco */
}

/* Botón de Reserva */
.btn-reserva {
    display: inline-block;
    background-color: #ff4b5c; /* Color de fondo */
    color: white; /* Color del texto */
    padding: 10px 20px;
    text-decoration: none; /* Quita el subrayado */
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-reserva:hover {
    background-color: #e84352; /* Color cuando pasas el ratón */
    transform: scale(1.05); 
	
	
}
/* Botón flotante de WhatsApp */
a img[alt="WhatsApp"] {
    width: 60px;          /* Tamaño del icono */
    height: 60px;
    position: fixed;      /* Fijo en pantalla */
    bottom: 20px;         /* Distancia desde abajo */
    right: 20px;          /* Distancia desde la derecha */
    z-index: 1000;        /* Que esté por encima de todo */
    border-radius: 50%;   /* Redondeado */
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* Sombra */
    cursor: pointer;
    transition: transform 0.2s ease;
}

a img[alt="WhatsApp"]:hover {
    transform: scale(1.1); /* Efecto al pasar el ratón */
}

.boton-whatsapp {
    position: fixed;
    bottom: 20px;   /* distancia desde abajo */
    right: 20px;    /* distancia desde la derecha */
    width: 50px;    /* tamaño del botón */
    height: 50px;
    z-index: 100;   /* para que quede por encima de otros elementos */
}

.boton-whatsapp img {
    width: 100%;
    height: auto;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-float img {
    width: 60%;
    margin-top: 20%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.boton-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boton-whatsapp img {
    width: 30px;
    height: 30px;
}

.boton-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Estilos para la sección de servicios */
#servicios {
    padding: 50px 20px;
    background-color: #fff0f6; /* Fondo suave rosado */
    border-radius: 10px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#servicios h2 {
    font-size: 2rem;
    color: #d63384; /* Rosa fuerte */
    text-align: center;
    margin-bottom: 20px;
}

#servicios p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

#servicios ul {
    list-style: none; /* Quitamos las viñetas normales */
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

#servicios ul li {
    font-size: 1.1rem;
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: #333;
}

#servicios ul li::before {
    content: "💅"; /* Icono bonito para cada servicio */
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 1.2rem;
    color: #ff69b4; /* Rosa */
}

/* Imagen sección Sobre mí */
#sobre-mi {
    text-align: center;
}
#sobre-mi p {
    font-size: 1rem;      /* tamaño del texto más elegante */
    line-height: 1.6;     /* espacio entre líneas */
    text-align: center;   /* centra el texto */
    margin: 20px auto;    /* espacio arriba y centrado */
    max-width: 700px;     /* hace que el texto no se vea muy largo */
}

#sobre-mi img {
    border: 3px solid #ff69b4;   /* borde rosa */
    border-radius: 15px;         /* esquinas redondeadas */
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8); /* brillo rosa */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px;                /* tamaño de imagen */
    display: block;              /* centra la imagen */
    margin: 0 auto;              /* centra la imagen horizontalmente */
}
/* Título sección Inicio */
#inicio h1 {
    text-align: center;
    margin-bottom: 20px;
}

.titulo-principal {
    text-align: center;
    font-size: 48px;
    color: #ff4da6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 50px;
}

.subtitulo {
    text-align: center;
    font-size: 20px;
    color: #444;
    font-style: italic;
    margin-bottom: 40px;
}

/* Centramos la sección Inicio */
#inicio {
    text-align: center;
}

#inicio p {
    text-align: center;
}

#inicio .btn {
    display: inline-block;
    margin: 20px auto;
}

/* ====== Servicios (cards) ====== */
#servicios {
  padding-top: 10px;
}

#servicios .intro-servicios {
  margin: 6px 0 18px;
  color: #666;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.servicio {
  background: #fff;
  border: 1px solid #ffd7e8;          /* rosa muy clarito */
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.servicio:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.servicio .icono {
  width: 64px; height: 64px;
  margin: 4px auto 10px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  background: #ffe6f2;                /* fondo rosita */
  box-shadow: inset 0 0 0 2px #ffc6de; /* aro */
}

.servicio h3 {
  margin: 8px 0 6px;
  font-size: 1.1rem;
}

.servicio p {
  color: #555;
  min-height: 44px;                    /* iguala alturas del texto */
}

.precio {
  display: inline-block;
  margin: 8px 0 12px;
  font-weight: 700;
  color: #ff69b4;                      /* rosa marca */
}

/* Botón secundario (combina con tu .btn primary) */
.btn.secondary {
  display: inline-block;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  border: 2px solid #ff69b4;
  color: #ff69b4;
  background: #fff;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.btn.secondary:hover {
  background: #ff69b4;
  color: #fff;
  transform: translateY(-2px);
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 105, 180, 0.1);
  padding: 20px;
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}


.card img {
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
}
/* Efecto hover con sombra y movimiento para tarjetas de servicios */
.servicio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.boton-reservar {
  display: inline-block;
  background-color: #ff69b4; /* roz aprins */
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.boton-reservar:hover {
  transform: scale(1.05);
  background-color: #d63384; /* roz mai închis */
}
@media (max-width: 768px) {
  body {
    padding: 10px;
    font-size: 16px;
  }

  .servicios {
    flex-direction: column;
    align-items: center;
  }

  .servicio {
    width: 90%;
    margin-bottom: 20px;
  }

  .servicio img {
    width: 100%;
    height: auto;
  }

  .boton-reservar {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}
.logo-container {
  text-align: center;
  margin-top: 20px;
}

.logo {
  max-width: 120px;
  height: auto;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 20px auto;
} box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
     
}
.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Magazin online --- */
#tienda {
  padding: 40px 20px;
  background-color: #fff5fb;
  text-align: center;
}

#tienda h2 {
  color: #e91e63;
  margin-bottom: 20px;
}

}
.producto {
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin: 30px auto;
  max-width: 500px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.producto img {
    width: 100%;
    max-width: 230px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;}
}
.producto img {
    transition: transform 0.3s ease;
}

.producto img:hover {
    transform: scale(1.05);
}

.producto h3 {
  color: #d63384;
  margin-bottom: 10px;
}

.producto p {
  font-size: 16px;
  margin-bottom: 15px;
}

.producto a {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.producto a:hover {
  background-color: #128C7E;
}

.producto a {
  display: inline-block;
  background-color: #25D366; /* Verde WhatsApp */
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.producto a:hover {
  background-color: #1ebd5a; /* Verde mai închis la hover */
}

.producto p:first-of-type {
  font-size: 0.95em;
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

}

/* ===== Productos Yoshi (Tienda Online) ===== */

.producto-yoshi {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.producto-yoshi img {
    width: 220px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.producto-yoshi h3 {
    color: #e91e63;
    font-size: 22px;
    margin-bottom: 10px;
}

.producto-yoshi p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

.producto-yoshi .btn-wp {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.producto-yoshi .btn-wp:hover {
    background-color: #128C7E;
}

html {
  scroll-behavior: smooth;
}
.btn-reservar {
    background-color: #ff1493;
	animation: pulse 1s ease infinite;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
	font-size: 16px;
    transition: 0.3s ease;
}

.btn-reservar:hover {
    background-color: #ff1493;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 20, 147, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 20, 147, 0);
  }
	
.aviso-pedidos {
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  background-color: #fff7fb;
  border-left: 4px solid #ff1493;
  color: #555;
}

.categoria-productos {
  margin: 40px auto 20px auto;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #e91e63;
}

/* --- CARD PRODUS --- */
.producto-yoshi {
    background: #ffffff;
    max-width: 350px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* Imagine produs */
.producto-yoshi img {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

/* Titlu produs */
.producto-yoshi h3 {
    color: #e91e63; /* roz elegant */
    font-size: 20px;
    margin-bottom: 10px;
}

/* Descriere produs */
.descripcion-producto {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

/* Lista caracteristici */
.caracteristicas-producto li {
    text-align: left;
    padding: 5px 0;
    font-size: 14px;
    color: #333;
}

/* Preț */
.precio-producto {
    font-size: 18px;
    font-weight: bold;
    color: #d81b60;
    margin-top: 10px;
}

/* Buton WhatsApp */
.btn-whatsapp-producto {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-whatsapp-producto:hover {
    background: #1ebe57;
}

/* Titlu categorie */
.categoria-productos {
    font-size: 26px;
    margin-top: 40px;
    text-align: center;
    color: #d81b60;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Avertisment comenzi */
.aviso-pedidos {
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 12px 18px;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    background-color: #fff4fb;
    border-left: 4px solid #ff1493;
    border-radius: 4px;
    color: #444;
}



/* ===== CURSURI ÎN 2 COLOANE ===== */

.grid-cursos {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr)); /* 2 coloane pe ecran mare */
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;  /* centru pe pagină */
}

/* Pe telefon: 1 coloană */
@media (max-width: 768px) {
    .grid-cursos {
        grid-template-columns: 1fr;
    }
}

.categoria-productos {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #d6336c; /* roz elegant */
    margin-top: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==== BOTÓN WHATSAPP PRODUCTOS ==== */
.btn-wsp {
    display: inline-block;
    padding: 12px 30px;
    background-color: #25D366; /* verde WhatsApp */
    color: #fff;
    border-radius: 30px !important; /* ROTUND */
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: btn-wsp-late 1.5s infinite ease-in-out;
}

.btn-wsp:hover {
    transform: translateY(-3px);
}

/* Animația butonului */
@keyframes btn-wsp-late {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== Menú responsive para móvil ===== */
@media (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column;
        background-color: #f7d4e8; /* roz pal – schimbăm dacă vrei alt roz */
        padding: 20px;
        border-radius: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav a {
        color: #333;  /* culoarea textului */
        font-size: 18px;
        font-weight: bold;
    }
}

/* Fondo del contenido principal (tarjeta blanca) */
main {
    background-color: #ffd6ec; /* roz pal foarte fin */
}

/* Botón WhatsApp flotante */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

.btn-whatsapp img {
  width: 60px;
  height: 60px;
  max-width: none;
  border-radius: 50%;
  animation: vibrar 1.2s infinite;
}

/* Vibración continua */
@keyframes vibrar {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(3deg); }
  20% { transform: rotate(-3deg); }
  30% { transform: rotate(3deg); }
  40% { transform: rotate(-3deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}



/
}


/* Botón WhatsApp flotante */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

.btn-whatsapp img {
  width: 60px;
  height: 60px;
  max-width: none;
  border-radius: 50%;
  animation: vibrar 1.2s infinite;
}

/* Vibración continua */
@keyframes vibrar {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(3deg); }
  20% { transform: rotate(-3deg); }
  30% { transform: rotate(3deg); }
  40% { transform: rotate(-3deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}



/* FIX DEFINITIV WhatsApp */
a.btn-whatsapp { 
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 60px !important;
  height: 60px !important;
  z-index: 99999 !important;
}

a.btn-whatsapp img{
  width: 60px !important;
  height: 60px !important;
  max-width: none !important;
  display: block !important;
  border-radius: 50% !important;
  animation: vibrar 1.2s infinite !important;
}

@keyframes vibrar{
  0%{transform:rotate(0deg)}
  10%{transform:rotate(3deg)}
  20%{transform:rotate(-3deg)}
  30%{transform:rotate(3deg)}
  40%{transform:rotate(-3deg)}
  50%{transform:rotate(0deg)}
  100%{transform:rotate(0deg)}
}



/* Efect hover imagine Sobre mí */
#sobre-mi img {
    border: 3px solid #ff4fa3;      /* rozul tău */
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(255, 79, 163, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Când treci cu mouse-ul */
#sobre-mi img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 20px rgba(255, 79, 163, 0.9),
        0 0 35px rgba(255, 79, 163, 0.6);
}
@media (max-width: 480px) {
  nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav ul li a {
    font-size: 14px;
    padding: 8px 10px;
  }
}


/* === CENTRARE CARD SERVICII SUS (Manicura rusa) === */
#servicios .card-servicios {
  text-align: center;
}

#servicios .card-servicios .btn-reservar {
  display: inline-block;
  margin: 15px auto 0;
}

/* === CENTRARE blocul de sus (Manicura rusa + buton) === */
#servicios .card-servicios{
  max-width: 700px;
  margin: 0 auto 25px auto;
  text-align: center;
}


.cursos-center {
  text-align: center;
}

.cursos-center .btn-reservar {
  display: inline-block;
  margin-top: 15px;
}





