:root {
	--contraste-orange: #ff6b35;
	--contraste-orange-bg: #fb7115;
}

/*body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: #1a1a1a;
	color: white;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}*/

a {
    text-decoration: none;
}

/* Contenido principal para demo */
.main-content {
	flex: 1;
	padding: 50px 0;
	text-align: center;
}

/* Header naranja */
.footer-header {
	background: var(--contraste-orange-bg);
	padding: 15px 0;
}

.contact-link {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

.contact-link:hover {
	color: white;
	opacity: 0.8;
}

/* Footer principal */
.footer-main {
	background: #000;
	padding: 30px 0 30px;
}

.logo-container {
	width: 200px;
	height: 40px;
	margin-bottom: 20px;
}

.footer-section h5 {
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.footer-list {
	list-style: none;
	padding: 0;
}

.footer-list li {
	margin-bottom: 0;
	position: relative;
	padding-left: 15px;
}

.footer-list li::before {
	content: "•";
	color: var(--contraste-orange);
	position: absolute;
	left: 0;
	font-weight: bold;
}

.footer-list a {
	color: #ccc;
	text-decoration: none;
	font-size: 0.8rem;
	transition: color 0.3s ease;
	line-height: 1.4;
}

.footer-list a:hover {
	color: var(--contraste-orange);
}

/* Footer bottom */
.footer-bottom {
	border-top: 1px solid #333;
	padding: 20px 0;
}

.footer-nav a {
	color: #ccc;
	text-decoration: none;
	font-size: 0.8125rem;
	margin-right: 1rem;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: var(--contraste-orange);
}

.social-icon {
	width: 35px;
	height: 35px;
	background: #333;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	margin-right: 0.5rem;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: var(--contraste-orange);
	color: white;
	transform: translateY(-2px);
}

.phone-number {
	color: var(--contraste-orange);
	font-weight: bold;
	text-decoration: none;
}

.phone-number:hover {
	color: #f7931e;
}

.copyright {
	font-size: 0.6875rem;
	color: #666;
	margin-top: 1rem;
}

/* Botón expandir/contraer - Solo móvil */
.footer-expand-btn {
	display: none;
	background: #333;
	border: none;
	color: white;
	padding: 12px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin: 20px auto;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.footer-expand-btn:hover {
	/*background: var(--contraste-orange);*/
	transform: scale(1.1);
}

.footer-expand-btn i {
	font-size: 18px;
	transition: transform 0.3s ease;
    display: inline-block;
}

.footer-expand-btn.expanded i {
	transform: rotate(180deg) !important;
}

/* Contenido colapsible */
.footer-collapsible-content {
	overflow: hidden;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive para móviles */
@media (max-width: 767.98px) {
	.footer-main {
		padding: 30px 0 20px;
	}

	.logo-container {
		margin: 0 auto 10px;
	}

	.footer-expand-btn {
		display: block !important;
	}

	.footer-collapsible-content {
		max-height: 0 !important;
		opacity: 0 !important;
		margin-top: 0 !important;
		visibility: hidden;
	}

	.footer-collapsible-content.show {
		max-height: 3000px !important;
		opacity: 1 !important;
		margin-top: 20px !important;
		visibility: visible;
	}

	.footer-section {
		margin-bottom: 30px;
	}

	.footer-section h5 {
		font-size: 0.9rem;
	}

	.footer-list a {
		font-size: 0.85rem;
	}

	/* Asegurar que las columnas se apilen correctamente en móvil */
	.footer-collapsible-content .row > div {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 991.8px) {
	.footer-nav {
		justify-content: center !important;
	}
}

/* WhatsApp flotante */
.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25d366;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	font-size: 24px;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	z-index: 1000;
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	background: #128c7e;
	color: white;
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.whatsapp-float {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
    .whatsapp-btn {
		width: 50px;
		height: 50px;
	}

	.whatsapp-btn i {
		font-size: 20px;
	}
}

.text-orange {
    color: var(--contraste-orange);
}

.privacy-link {
    color: var(--contraste-orange);
}
.privacy-link:hover {
    color: #f7931e;
}