/*
 Theme Name:   Hello Elementor Child - Colegio Gonzaga
 Theme URI:    https://colegiogonzaga.edu.ve/
 Description:  Tema hijo para el Colegio Gonzaga Maracaibo, basado en Hello Elementor. Creado para corregir errores de edición en el tema padre y gestionar la migración de diseño personalizada.
 Author:       Antigravity / Colegio Gonzaga
 Author URI:   https://github.com/google-deepmind
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* Tus estilos personalizados comienzan aquí */
/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP (PREMIUM)
   ========================================================================== */
.wa-float-container {
	position: fixed;
	left: 28px;
	bottom: 28px;
	z-index: 999999;
	display: flex;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	transition: all 0.3s ease;
}

.wa-icon-wrapper {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 8px 30px rgba(18, 140, 126, 0.4), 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	animation: wa-pulse-glow 2.5s infinite;
}

.wa-icon-wrapper svg {
	width: 30px;
	height: 30px;
	fill: white;
	transition: transform 0.4s ease;
}

.wa-tooltip {
	background-color: rgba(255, 255, 255, 0.95);
	color: #0f172a;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 8px 16px 8px 24px;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(8px);
	margin-left: -12px; /* Overlap slightly with wrapper */
	order: 2; /* Put it to the right of the button */
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: all 0.3s ease;
	white-space: nowrap;
	pointer-events: none;
}

/* Hover Animations */
.wa-float-container:hover .wa-icon-wrapper {
	transform: scale(1.1) rotate(8deg);
	box-shadow: 0 12px 35px rgba(18, 140, 126, 0.6), 0 4px 15px rgba(0, 0, 0, 0.15);
}

.wa-float-container:hover .wa-icon-wrapper svg {
	transform: scale(1.1);
}

.wa-float-container:hover .wa-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Pulse animation for attention-grabbing */
@keyframes wa-pulse-glow {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 8px 30px rgba(18, 140, 126, 0.4);
	}
	70% {
		box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 8px 30px rgba(18, 140, 126, 0.4);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 30px rgba(18, 140, 126, 0.4);
	}
}

/* Mobile adaptation */
@media (max-width: 768px) {
	.wa-float-container {
		left: 20px;
		bottom: 20px;
	}
	.wa-icon-wrapper {
		width: 52px;
		height: 52px;
	}
	.wa-icon-wrapper svg {
		width: 26px;
		height: 26px;
	}
	.wa-tooltip {
		display: none; /* Hide tooltip on mobile */
	}
}