@charset "utf-8";

/* CSS LOGOPEDIA AGUILAS */
.presentacion-servicios {
	height: 150px;
	overflow: hidden;
}

.logo-logopedia {
	max-width: 200px;
	height: auto;
}

.logo-logopedia-pie {
	max-width: 120px;
	height: auto;
}

table#cookieestilo {
	border-collapse: collapse;
	width: 100%;
	font-size: 12px;
}

th,
td {

	padding: 8px;
}

tr:nth-child(even) {
	background-color: #f2f2f2
}

table#cookieestilo2 {
	border-collapse: collapse;
	width: 100%;
	font-size: 12px;
}

th,
td {

	padding: 8px;
}

tr:nth-child(even) {
	background-color: #f2f2f2
}

.margen-40 {
	margin-bottom: 40px;
}

.mb-2 {
	margin-bottom: 8px;
}

.cc-nb-okagree {
	background-color: #0D3771 !important;
	color: #fff !important;
}

.cc-nb-reject {
	background-color: #0D3771 !important;
	color: #fff !important;
}

.cc-cp-foot-save {
	background-color: #0D3771 !important;
	color: #fff !important;
}

.cc-pc-head-lang select:focus {
	box-shadow: 0 0 0 2px #0D3771 !important;
}

.cc-cp-foot-byline {
	color: #F2F2F2 !important;
}

.cc-cp-foot-byline a {
	color: #F2F2F2 !important;
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

.cc-pc-head-title-text {
	color: white !important;
}

/* Estilos del botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #20B954;
}

.whatsapp-float i {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

/* Animación de pulso opcional */
.whatsapp-float.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-float i {
        font-size: 22px;
    }
}

/* Tooltip opcional */
.whatsapp-float .tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float .tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #333;
    opacity: 0;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float .tooltip {
        display: none;
    }
}