@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body { font-family: 'Inter', sans-serif; }

.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* Classes Utilitárias para esconder/mostrar telas */
.hidden { display: none !important; }

/* Estilização dos Inputs */
.input-field {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-top: 0.25rem;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.btn-primary {
    background-color: #16a34a;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}
.btn-primary:hover { background-color: #15803d; }

/* Cards de Revitalização */
.rev-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: transform 0.2s;
}

.rev-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .rev-card { flex-direction: row; }
    .rev-img { width: 40%; height: auto; min-height: 250px; object-fit: cover; }
    .rev-content { width: 60%; padding: 2rem; }
}

@media (max-width: 767px) {
    .rev-img { width: 100%; height: 200px; object-fit: cover; }
    .rev-content { padding: 1.5rem; }
}