/*
Theme Name: Homeaid Custom
Theme URI: https://missionbaymedia.com
Description: Brought to you by <a href="https://missionbaymedia.com">Mission Bay Media</a>.
Version: 1.0
Author: Mission Bay Media
Author URI: https://missionbaymedia.com

*/

/* WordPress Required Styles */
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.wp-caption {
	border: 1px solid #ddd;
	text-align: center;
	background-color: #f3f3f3;
	padding-top: 4px;
	margin: 10px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption-dd {
	font-size: 11px;
	line-height: 17px;
	padding: 0 4px 5px;
	margin: 0;
}

.sticky {
	background: #f7f7f7;
	padding: 0 10px 10px;
}
	
.sticky h2 {
	padding-top: 10px;
}

.card-link {
    transition: opacity 0.4s ease-in-out;
}

.card {
    transition: transform 0.3s ease-in-out;
}

/* Estilo para o botão de filtro durante o loading */
#apply-filters.loading {
    opacity: 0.7;
    cursor: wait;
}

/* Container dos cards */
.card-grid {
    min-height: 400px; /* Altura mínima para evitar "pulo" da página */
}

/* Registration Step Animation */
.registration-step {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.registration-step.active {
    opacity: 1;
    transform: translateY(0);
}

/* Final Step Specific Styles */
#finalStep {
    padding: 4rem 0;
}

#finalStep .success-animation {
    margin-bottom: 2rem;
}

#finalStep h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

#finalStep h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 4rem 0;
}

.next-step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.next-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-method {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-method:hover {
    color: var(--primary-color);
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-home:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}