.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#1ab152;
    
    animation: shake 1s;

 
  animation-iteration-count: infinite;
}

.my-float{
	margin-top:16px;
}
.pulse {
    animation: pulse-animation 2s;
    
}

@keyframes pulse-animation {
  0% {
   box-shadow 0 0 0 0px #25d36657; rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

/* --- ESTILOS DE IDENTIDAD PCE (Extraídos de index.html) --- */

/* Tipografía Base */
body, h1, h2, h3, h4, h5, h6, p, a {
    font-family: "Truculenta", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Configuración del Hero (Imagen principal) */
.pce-hero {
    background-image: url('../images/hero-cooking.jpg'); /* Asegúrate que la ruta sea correcta */
    min-height: 100%;
    background-position: center;
    background-size: cover;
}

.pce-hero-text {
    color: white;
    padding-top: 100px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Títulos con color de marca */
.pce-orange-text {
    color: #ff6400 !important;
}

/* Clase para párrafos descriptivos (el estilo que definimos antes) */
.pce-body-text {
    line-height: 1.6;
    color: #616161;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
}

/* El nuevo botón de reserva optimizado */
.pce-btn-book {
    background-color: #ff6400 !important;
    color: white !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 100, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.pce-btn-book:hover {
    background-color: #e65a00 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 100, 0, 0.4);
}
/* --- Corrección de color para el Menú Superior --- */

/* Forzamos que los enlaces dentro de white-text-menu sean blancos */
.white-text-menu a, 
.w3-bar-item.w3-button.w3-text-white {
    color: #ffffff !important;
    text-decoration: none;
}

/* Color al pasar el mouse (Hover) para que el usuario sepa que es un link */
.white-text-menu a:hover {
    color: #ff6400 !important; /* Cambia a naranja al pasar el mouse, ¡se ve genial! */
    background-color: transparent !important;
}

/* Ajuste para el menú móvil */
#navDemo a {
    color: #ffffff !important;
}