/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* --- inlined effects (previously in effects.css) --- */
/* Animações para elementos fade-in */
.fade-in-section {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.animate-in {
	opacity: 1;
	transform: translateY(0);
}

/* Efeitos hover suaves */
.feature-card {
	transition: all 0.3s ease-in-out;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Ajustes de cores e contrastes */
.bg-gray-soft {
	background-color: #f9fafb;
}

.hover-lift {
	transition: transform 0.2s ease;
}

.hover-lift:hover {
	transform: translateY(-2px);
}
/* --- end inlined effects --- */
